-
Notifications
You must be signed in to change notification settings - Fork 26
/
manifest.json
72 lines (64 loc) · 1.42 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
{
"manifest_version": 2,
"name": "__MSG_extensionName__",
"description": "__MSG_extensionDescription__",
"version": "3.7.3",
"default_locale": "en",
"applications": {
"gecko": {
"id": "{72d92df5-2aa0-4b06-b807-aa21767545cd}"
}
},
"developer": {
"name": "Ng Guoyou",
"url": "https://github.com/gyng/save-in"
},
"homepage_url": "https://github.com/gyng/save-in",
"background": {
"scripts": [
"src/vendor/browser-polyfill.js",
"src/vendor/content-disposition.js",
"src/chrome-detector.js",
"src/constants.js",
"src/history.js",
"src/notification.js",
"src/path.js",
"src/download.js",
"src/router.js",
"src/shortcut.js",
"src/messaging.js",
"src/headers.js",
"src/variable.js",
"src/menu.js",
"src/option.js",
"src/index.js"
]
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["src/content/content.js"]
}
],
"permissions": [
"<all_urls>",
"activeTab",
"tabs",
"contextMenus",
"downloads",
"notifications",
"storage",
"webRequest",
"webRequestBlocking"
],
"options_ui": {
"browser_style": true,
"chrome_style": true,
"page": "src/options/options.html"
},
"icons": {
"48": "icons/ic_archive_black_48px.png",
"96": "icons/ic_archive_black_96px.png",
"128": "icons/ic_archive_black_128px.png"
}
}