Initial commit: NZB → SABnzbd Chrome extensie
This commit is contained in:
commit
0034676f52
11 changed files with 535 additions and 0 deletions
32
manifest.json
Normal file
32
manifest.json
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
{
|
||||
"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"
|
||||
}
|
||||
}
|
||||
Loading…
Reference in a new issue