Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sryze/crx-dl
Chrome extension (CRX) downloader
https://github.com/sryze/crx-dl
crx extensions google-chrome
Last synced: 3 months ago
JSON representation
Chrome extension (CRX) downloader
- Host: GitHub
- URL: https://github.com/sryze/crx-dl
- Owner: sryze
- License: mit
- Created: 2021-06-11T17:52:38.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2024-01-25T15:08:58.000Z (11 months ago)
- Last Synced: 2024-09-30T17:02:45.677Z (3 months ago)
- Topics: crx, extensions, google-chrome
- Language: Python
- Homepage: https://sryze.github.io/crx-dl/
- Size: 17.6 KB
- Stars: 54
- Watchers: 3
- Forks: 16
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
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_urlpositional arguments:
id_or_url ID or full URL of the extension in Chrome Web Storeoptional 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](https://sryze.github.io/crx-dl/).