-
Notifications
You must be signed in to change notification settings - Fork 46
/
manifest.json
52 lines (52 loc) · 1.12 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
{
"manifest_version": 2,
"name": "NAS Download Manager (for Synology)",
"version": "0.12.2",
"description": "__MSG_Add_and_manage_Download_Station_tasks_on_your_Synology_DiskStation__",
"default_locale": "en",
"background": {
"scripts": [
"dist/background/index.js"
]
},
"permissions": [
"contextMenus",
"storage",
"notifications",
"http://*/*",
"https://*/*"
],
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*"
],
"js": [
"dist/content/index.js"
]
}
],
"browser_action": {
"browser_style": true,
"default_title": "NAS Download Manager",
"default_popup": "html/popup.html",
"default_icon": {
"16": "icons/icon-16.png",
"32": "icons/icon-32.png",
"64": "icons/icon-64.png",
"128": "icons/icon-128.png",
"256": "icons/icon-256.png"
}
},
"options_ui": {
"page": "html/settings.html"
},
"icons": {
"16": "icons/icon-16.png",
"32": "icons/icon-32.png",
"64": "icons/icon-64.png",
"128": "icons/icon-128.png",
"256": "icons/icon-256.png"
}
}