Scaffold WebExtension: manifest, content collector, background aria2 RPC, popup UI, filters, and scripts

This commit is contained in:
Jordan Wages 2025-08-21 23:47:57 -05:00
commit 8eeb1d3b20
10 changed files with 427 additions and 0 deletions

14
package.json Normal file
View file

@ -0,0 +1,14 @@
{
"name": "archive-org-link-grabber",
"version": "0.1.0",
"private": true,
"description": "Firefox WebExtension to filter archive.org /download links and copy/send to aria2.",
"scripts": {
"dev": "web-ext run --start-url https://archive.org --source-dir .",
"build": "web-ext build -o -a dist",
"lint": "echo 'Add ESLint config to enable' && exit 0",
"format": "echo 'Add Prettier config to enable' && exit 0",
"test": "echo 'No tests yet' && exit 0"
}
}