nzb-sabnzbd-extension/manifest.json
2026-06-13 09:14:37 +02:00

32 lines
650 B
JSON

{
"manifest_version": 3,
"name": "NZB → SABnzbd",
"version": "1.0.0",
"description": "Stuur NZB-links automatisch naar SABnzbd via de API.",
"permissions": [
"activeTab",
"storage",
"notifications"
],
"host_permissions": [
"<all_urls>"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["content.js"]
}
],
"action": {
"default_popup": "popup.html",
"default_title": "NZB → SABnzbd instellingen"
},
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
}
}