extdl
Version:
A command-line tool for downloading browser extensions. Supports Chrome, Firefox, Edge, Opera, and Thunderbird extensions.
39 lines (27 loc) • 806 B
Markdown
# extdl
A command-line tool for downloading browser extensions. Supports Chrome, Firefox, Edge, Opera, and Thunderbird extensions.
## Installation
For command-line usage, install globally:
```bash
npm install -g extdl
```
or run directly with `npx`:
```bash
npx extdl <url>
```
## Usage
```
Usage: extdl <url> [--zip] [--output dir] [--name file]
Options:
-z, --zip convert to zip
-o, --output output directory
-n, --name custom filename (without extension)
-h, --help show this help
```
### Examples
```bash
# Download and convert to ZIP
extdl "https://chromewebstore.google.com/detail/amp-validator/nmoffdblmcmgeicmolmhobpoocbbmknc" --zip
# Specify output directory
extdl "https://addons.mozilla.org/en-US/firefox/addon/firefox-translations/" --output ./downloads
```