This plugin generates a Chrome Manifest file.
This repository is not currently published to npm, so add to your project using KeiserCorp/webpack-plugin-webmanifest.
var ChromeManifestPlugin = require('chrome-manifest-plugin')
module.exports = {
entry: {...},
output: {...},
module: {...},
plugins: [
new ChromeManifestPlugin({
filename: "manifest",
filetype: "json",
variableName: "manifest"
})
]
};Licensed under the MIT license.