forked from hpsu/nzbget-chrome
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
119 lines (119 loc) · 3.16 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"author": "hpsu",
"background": {
"page": "background.html",
"persistent": true
},
"browser_action": {
"default_icon": {
"38": "img/icon38.png",
"48": "img/icon48.png",
"128": "img/icon128.png"
},
"default_popup": "popup.html"
},
"content_scripts": [
{
"css": [
"sites/common.css"
],
"js": [
"sites/common.js",
"sites/feedly.js"
],
"matches": [
"*://*.feedly.com/*"
]
},
{
"css": [
"sites/common.css"
],
"js": [
"sites/common.js",
"sites/nzbclub.js"
],
"matches": [
"*://*.nzbclub.com/*"
]
},
{
"css": [
"sites/common.css"
],
"js": [
"sites/common.js",
"sites/nzbindex.js"
],
"matches": [
"*://*.nzbindex.nl/*",
"*://*.nzbindex.com/*"
]
},
{
"css": [
"sites/common.css"
],
"js": [
"sites/common.js",
"sites/binsearch.js"
],
"matches": [
"*://*.binsearch.info/*",
"*://*.binsearch.net/*"
]
},
{
"css": [
"sites/common.css"
],
"js": [
"sites/common.js",
"sites/dognzb.js"
],
"matches": [
"*://*.dognzb.cr/*"
]
},
{
"css": [
"sites/common.css",
"sites/newzleech.css"
],
"js": [
"sites/common.js",
"sites/newzleech.js"
],
"matches": [
"*://*.newzleech.com/*"
]
}
],
"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"
},
"Key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAkQAVQpqnlQtgCyjqsFb/t4CGhMj1sumGEjkXMDXgdavfo1FxczPwt/JgOFTLyNU2e6USu/vweVQjr+DHmNFfuu2x13zpJ39fipQrIujJDOcfk4Y7bAeSqH0l7nayp5K/LvPRgOM9Za7OWSon6wNrUA6TaDjLQoswqkE2ia+fYLSmoVenx1uEVr7b47/mhVSg0bHgkb5pMdWMao1dbNHjvHf4a/oTQMbewEHNh3FwDipR5Ip1YfZqmogpab2+nHHEK0Uu8WcQj4BGglrRB3ld5tmN+xk3XqQ3ocT/dW2Uh8hJim4rEPY3x2F5Kz4j0VewewTmf/gcejDYG454OyMa4wIDAQAB",
"manifest_version": 2,
"name": "nzbget-chrome",
"options_page": "options.html",
"permissions": [
"*://*/",
"contextMenus",
"tabs",
"notifications",
"storage"
],
"version": "1.5",
"web_accessible_resources": [
"img/icon16.png",
"img/nzbget-arrow.svg"
],
"-ms-preload": {
"backgroundScript": "backgroundScriptsAPIBridge.js",
"contentScript": "contentScriptsAPIBridge.js"
}
}