tofumatt / node-crx-parser

CRX parser

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

node-crx-parser

CRX parser.

Installation

npm install crx-parser --save

Usage

var parseCRX = require('crx-parser');

fs.readFile('/tmp/mfabfdnimhipcapcioneheloaehhoggk.crx', function (err, buff) {
    parseCRX(buff, function (err, data) {
        console.log(data.header.publicKey);
        ...
    });
});

For complete example see text/index.spec.js.

License

MIT License

About

CRX parser


Languages

Language:JavaScript 100.0%