GitXplorerGitXplorer
s

crx-dl

public
54 stars
16 forks
0 issues

Commits

List of commits on branch master.
Unverified
e429d298d314248b71d222081443a5df0f810513

Fix missing -o in example command

ssryze committed 2 years ago
Unverified
01a8efe24720e7d66c85597a391e819d81e10582

Improve description and add link to web version in README

ssryze committed 2 years ago
Unverified
84e48b0d0ce39adfe8fa03b19ec3f499b3a519a0

Add .editorconfig

ssryze committed 2 years ago
Verified
acb21ef0e735c9c4e11388ac70f139e8ed1bed5e

Update usage section in README

ssryze committed 2 years ago
Verified
9e4c2a2d057b33f148e0fe6b4c9c2ae2a796a456

Update usage section in README

ssryze committed 2 years ago
Verified
b5acd81a2d8a7e21d7303d4b73331d1b81dbd795

Update usage in README

ssryze committed 2 years ago

README

The README file for this repository.

crx-dl

This is just a simple script to automate the downloading of Google Chrome extensions (.CRX files) from the Chrome Web Store.

Usage

crx-dl.py [-h] [-q] [-o OUTPUT_FILE] id_or_url

positional arguments:
  id_or_url             ID or full URL of the extension in Chrome Web Store

optional arguments:
  -h, --help            show this help message and exit
  -q, --quiet           suppress all messages
  -o OUTPUT_FILE, --output-file OUTPUT_FILE
                        where to save the .CRX file

For example:

python crx-dl.py \
    https://chrome.google.com/webstore/detail/google-translate/aapbdbdomjkkjkaonfhkkikfgjllcleb \
    -o translate.crx

The above command will download the Google Translate extension to a file named translate.crx in the current working directory.

To extract the contents of the CRX file, you can use unzip on Unix-like systems:

unzip translate.crx -d translate

or just open it as a ZIP file in your favorite archive manager program.

Via Browser

There is also a web version of this script available here.