forked from seansfkelley/nas-download-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
39 lines (39 loc) · 1.04 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
{
"manifest_version": 2,
"name": "Synology Download Manager",
"version": "0.6.4",
"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": "Synology 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"
}
}