forked from RichGuk/deluge-in-chrome
-
Notifications
You must be signed in to change notification settings - Fork 7
/
manifest.json
54 lines (54 loc) · 1.07 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
{
"name": "Remote Deluge",
"description": "Provides a quick overview of torrent status for Deluge.",
"version": "1.2.4",
"icons": {
"128": "images/icons/128.png",
"64": "images/icons/64.png",
"32": "images/icons/32.png",
"16": "images/icons/16.png"
},
"web_accessible_resources": [
"images/icons/16.png",
"images/icons/16_green.png"
],
"default_locale": "en",
"background": {
"scripts": [
"js/libs/jquery-3.0.0.min.js",
"js/global_options.js",
"js/debug_log.js",
"js/deluge.js",
"js/background.js"
],
"persistent": true
},
"options_page": "options.html",
"browser_action": {
"default_icon": "images/icons/deluge.png",
"default_title": "__MSG_browser_title_disabled__",
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*"
],
"js": [
"js/libs/jquery-3.0.0.min.js",
"js/global_options.js",
"js/debug_log.js",
"js/add_torrent.js"
]
}
],
"permissions": [
"tabs",
"contextMenus",
"storage",
"http://*/*",
"https://*/*"
],
"manifest_version": 2
}