Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/johnagan/crx-webpack-plugin
A webpack plugin to package chrome extensions (crx) post build
https://github.com/johnagan/crx-webpack-plugin
chrome-extension crx webpack-plugin
Last synced: 11 days ago
JSON representation
A webpack plugin to package chrome extensions (crx) post build
- Host: GitHub
- URL: https://github.com/johnagan/crx-webpack-plugin
- Owner: johnagan
- License: mit
- Created: 2015-04-06T00:31:26.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2022-07-14T20:21:17.000Z (over 2 years ago)
- Last Synced: 2024-10-14T00:50:05.969Z (30 days ago)
- Topics: chrome-extension, crx, webpack-plugin
- Language: JavaScript
- Size: 6.84 KB
- Stars: 25
- Watchers: 2
- Forks: 23
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Crx Builder for webpack
A webpack plugin to package chrome extensions (crx) post build## Usage
``` javascript
var Crx = require("crx-webpack-plugin");
module.exports = {
plugins: [
new Crx({
keyFile: 'key.pem',
contentPath: 'build',
outputPath: 'dist',
name: 'chrome-ext'
})
]
}
```## License
MIT (http://www.opensource.org/licenses/mit-license.php)