web-accessible-resources-webpack-plugin
This plugin adds filenames in your webpack to the web_accessible_resources
clause in your manifest.json
.
You don't need to maintain a list of images manually anymore.
This is handy when writing chrome extensions, especially when paired with the manifest package loader.
Install
yarn add -D web-accessible-resources-webpack-plugin
Usage
// webpack.config.js const WebAccessibleResourcesPlugin = moduleexports = ... plugins: /\.$/
Now images required by your source files will be mentioned in web_accessible_resources.
For more flexibility, you can specify a function instead of the regular expression:
'a.jpg' 'b.jpg'
Output
Example output in your manifest.json
:
... "web_accessible_resources": "header.png" "landscape.jpg" "icon.png"
Contributing
Please file an issue on GitHub.
License
MIT, be free.