47 lines
1.1 KiB
JSON
47 lines
1.1 KiB
JSON
{
|
|
"manifest_version": 2,
|
|
"name": "Archive.org Link Grabber",
|
|
"version": "0.2.0",
|
|
"description": "Filter and export archive.org /download links; copy or send to aria2 RPC.",
|
|
"applications": {
|
|
"gecko": {
|
|
"id": "archive-org-link-grabber@jordanwages.com",
|
|
"update_url": "https://add-ons.jordanwages.com/archive-org-link-grabber/updates.json"
|
|
}
|
|
},
|
|
"browser_action": {
|
|
"default_title": "Archive.org Link Grabber",
|
|
"default_popup": "src/popup/index.html"
|
|
},
|
|
"options_ui": {
|
|
"page": "src/options/index.html",
|
|
"open_in_tab": true
|
|
},
|
|
"permissions": [
|
|
"storage",
|
|
"clipboardWrite",
|
|
"activeTab",
|
|
"contextMenus",
|
|
"https://archive.org/*",
|
|
"http://localhost:6800/*",
|
|
"https://localhost:6800/*",
|
|
"http://*/*",
|
|
"https://*/*"
|
|
],
|
|
"background": {
|
|
"scripts": [
|
|
"src/lib/aria2-bg.js",
|
|
"src/background/index.js"
|
|
]
|
|
},
|
|
"content_scripts": [
|
|
{
|
|
"matches": [
|
|
"https://archive.org/download/*"
|
|
],
|
|
"js": [
|
|
"src/content/collect.js"
|
|
]
|
|
}
|
|
]
|
|
}
|