-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathmanifest.json
55 lines (55 loc) · 1.51 KB
/
manifest.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"background": {
"scripts": [ "js/nzbget.js", "js/utilities.js" ]
},
"description": "Interact with and send NZB-files to NZBGet",
"icons": {
"16": "img/icon16.png"
,"19": "img/icon19.png"
,"38": "img/icon38.png"
,"48": "img/icon48.png"
},
"manifest_version": 2,
"web_accessible_resources": [
"img/icon16.png"
,"img/nzbget-arrow.svg"
],
"name": "nzbget-chrome",
"options_ui": {
"page": "options.html",
"chrome_style": false
},
"permissions": [ "*://*/", "contextMenus", "tabs", "notifications", "storage" ],
"version": "1.6",
"browser_action": {
"default_icon": "img/icon38.png",
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [ "*://*.feedly.com/*" ]
,"js": [ "sites/common.js", "sites/feedly.js" ]
,"css": [ "sites/common.css" ]
},{
"matches": [ "*://*.nzbclub.com/*" ]
,"js": [ "sites/common.js", "sites/nzbclub.js" ]
,"css": [ "sites/common.css" ]
},{
"matches": [ "*://*.nzbindex.nl/*", "*://*.nzbindex.com/*" ]
,"js": [ "sites/common.js", "sites/nzbindex.js" ]
,"css": [ "sites/common.css" ]
},{
"matches": [ "*://*.binsearch.info/*", "*://*.binsearch.net/*" ]
,"js": [ "sites/common.js", "sites/binsearch.js" ]
,"css": [ "sites/common.css" ]
},{
"matches": [ "*://*.dognzb.cr/*" ]
,"js": [ "sites/common.js", "sites/dognzb.js" ]
,"css": [ "sites/common.css" ]
},{
"matches": [ "*://*.newzleech.com/*" ]
,"js": [ "sites/common.js", "sites/newzleech.js" ]
,"css": [ "sites/common.css", "sites/newzleech.css" ]
}
]
}