Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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)