JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • 0
  • Score
    100M100P100Q11745F
  • License MIT

A webpack plugin to generate icons of different sizes

Package Exports

  • generate-icon-webpack-plugin
  • generate-icon-webpack-plugin/dist/index.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (generate-icon-webpack-plugin) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

generate-icon-webpack-plugin

A webpack plugin to generate icons of different sizes

Images in the icons field and action.default_icon field in chrome extensions Manifest V3 can be generated using this plugin

Usage

add the plugin:

npm install generate-icon-webpack-plugin --save-dev
// or
pnpm add generate-icon-webpack-plugin -D
// or
yarn add generate-icon-webpack-plugin -D

configure the plugin:

new CrxPackWebpackPlugin({
  logo: path.resolve(__dirname, "./icon.png"),
  dir: "icons",
  size: [128, 64, 48, 32, 16], // 128, It can be an array or a number
  format: "png",
  grayscale: false,
  imgName: "icon",
  log: true
})

Configuration Settings

Option Required Type Default About
logo yes string none images that need to be converted
dir no string "icons" the directory for the output picture
size no number[]/number [16, 32, 48, 64, 128] image size, if it is a number, only one image is generated, if it is an array, it is multiple images
format no string "png" the format of the output picture
grayscale no boolean false whether to generate a gray image
imgName no string "icon" name of the picture
log no boolean false print picture information

Acknowledgement

Inspired by plasmo's ability to generate images.