0.0.1 • Published 6 years ago

chrome-extension-downloader v0.0.1

Weekly downloads
3
License
MIT
Repository
github
Last release
6 years ago

Chrome Extension Downloader

A few helpful functions to help you download and unzip chrome extensions with a few lines of code.

Installation

npm install chrome-extension-downloader

Usage

const {readFile} = require('chrome-extension-downloader')

readFile({
    filename: 'manifest.json',
    extension_id: 'gighmmpiobklfepjocnamgkkbiglidom'
}).then(buff => {
    console.log(buff.toString('utf8'))
})