chrome-extension-downloader
v0.0.1
Published
A few helpful functions to help you download and unzip chrome extensions with a few lines of code.
Downloads
6
Readme
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'))
})