1. download-crx
Download crx from Chrome WebStore
download-crx
Package: download-crx
Created by: acvetkov
Last modified: Wed, 15 Jun 2022 22:57:46 GMT
Version: 1.1.0
License: ISC
Downloads: 926
Repository: https://github.com/acvetkov/download-crx

Install

npm install download-crx
yarn add download-crx

download crx

tool for downloading crx files from Chrome Webstore

how to

install

 npm install download-crx

Usage as npm-module

 import * as downloadCRX from 'download-crx';

downloadCRX.download('https://chrome.google.com/webstore/detail/{item-id}')
    .then(filePath => log(`crx is located in ${filePath}`));
    
downloadCRX.download('https://chrome.google.com/webstore/detail/{item-id}', __dirname, 'extension-custom-name')
    .then(filePath => log(`crx is located in ${filePath}`));    
    
downloadCRX.downloadById('{item-id}')
    .then(filePath => log(`crx is located in ${filePath}`));    

Usage as cli tool

 download-crx --url https://chrome.google.com/webstore/detail/{item-id} --name my-extension

RELATED POST

Enhancing Vue.js Development: Harnessing the Potential of Vue-Loader

Enhancing Vue.js Development: Harnessing the Potential of Vue-Loader

Simplify Data Validation in Vue.js: A Step-by-Step Guide to Using Regex

Simplify Data Validation in Vue.js: A Step-by-Step Guide to Using Regex

Troubleshooting Made Easy: Common Issues and Solutions with vue-loader Without vue-cli

Troubleshooting Made Easy: Common Issues and Solutions with vue-loader Without vue-cli

Optimizing Webpack 4 with Vue CLI 3: Disabling the Cache-Loader

Optimizing Webpack 4 with Vue CLI 3: Disabling the Cache-Loader

Step-by-Step Guide: How to Add a Function to Your Vuex Plugin

Step-by-Step Guide: How to Add a Function to Your Vuex Plugin