archive-org-link-grabber/manifest.json

56 lines
1.3 KiB
JSON

{
"manifest_version": 2,
"name": "Archive.org Link Grabber",
"version": "0.3.2",
"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"
}
},
"icons": {
"48": "icons/icon-48.png",
"96": "icons/icon-96.png",
"128": "icons/icon-128.png"
},
"browser_action": {
"default_title": "Archive.org Link Grabber",
"default_popup": "src/popup/index.html",
"default_icon": {
"16": "icons/icon-16.png",
"32": "icons/icon-32.png"
}
},
"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"
]
}
]
}