A webpack plugin to package chrome extensions (crx) post build
var Crx = require("crx-webpack-plugin");
module.exports = {
plugins: [
new Crx({
keyFile: 'key.pem',
contentPath: 'build',
outputPath: 'dist',
name: 'chrome-ext',
generateUpdateFile: false // Optional: disables generation of updates.xml
})
]
}