archive-org-link-grabber/manifest.json

35 lines
821 B
JSON

{
"manifest_version": 3,
"name": "Archive.org Link Grabber",
"version": "0.1.0",
"description": "Filter and export archive.org /download links; copy or send to aria2 RPC.",
"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"
],
"host_permissions": [
"https://archive.org/*",
"http://localhost:6800/*",
"https://localhost:6800/*"
],
"background": {
"service_worker": "src/background/index.js",
"type": "module"
},
"content_scripts": [
{
"matches": ["https://archive.org/download/*"],
"js": ["src/content/collect.js"]
}
]
}