-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathmanifest.json
73 lines (65 loc) · 1.68 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
{
"manifest_version": 2,
"name": "Host Grabber ++",
"description": "__MSG_extensionDescription__",
"version": "0.13",
"author": "Rhadamanthe",
"homepage_url": "https://rhadamanthe.github.io/host-grabber-pp",
"default_locale": "en",
"icons": {
"48": "icons/logo_x48.png"
},
"applications": {
"gecko": {
"id": "{1a70f086-e7b8-43da-8171-e3e5c532ad4f}",
"strict_min_version": "58.0"
}
},
"options_ui": {
"page": "src/html/options.html",
"browser_style": true,
"open_in_tab": true
},
"background": {
"scripts": [
"src/scripts/npm/browser-polyfill.min.0.3.1.js",
"src/scripts/background/library.utilities.js",
"src/scripts/background/library.strategies.js",
"src/scripts/background/library.processors.js",
"src/scripts/background/library.queue.js",
"src/scripts/mixed/commons.js",
"src/scripts/mixed/library.commons.js",
"src/scripts/mixed/library.dictionary.js",
"src/scripts/background/dl-manager.js",
"src/scripts/background/background.hg.js",
"src/scripts/background/background.debug.hg.js"
]
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": [
"src/scripts/npm/browser-polyfill.min.0.3.1.js",
"src/scripts/content/content.hg.js"
]
}],
"commands": {
"dl": {
"suggested_key": { "default": "Ctrl+Shift+Down" },
"description": "Download media files from the current page"
}
},
"sidebar_action": {
"default_title": "Debug - IHG ++",
"default_panel": "src/html/debug.html",
"default_icon": "icons/logo_x48.png"
},
"permissions": [
"contextMenus",
"tabs",
"storage",
"downloads",
"downloads.open",
"<all_urls>"
]
}