-
-
Notifications
You must be signed in to change notification settings - Fork 257
/
manifest.v2.json
66 lines (66 loc) · 1.7 KB
/
manifest.v2.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
{
"action": null,
"background": {
"persistent": true,
"scripts": [
"background/define.js",
"background/store.js",
"background/utils.js",
"background/browser.js",
"background/normalize_urls.js",
"background/parse_urls.js",
"background/settings.js",
"background/ports.js",
"background/exclusions.js",
"background/ui_css.js",
"background/i18n.js",
"background/key_mappings.js",
"background/run_commands.js",
"background/run_keys.js",
"background/tools.js",
"background/clipboard.js",
"background/eval_urls.js",
"background/filter_tabs.js",
"background/open_urls.js",
"background/frame_commands.js",
"background/tab_commands.js",
"background/all_commands.js",
"background/request_handlers.js",
"background/main.js"
]
},
"browser_action": {
"default_icon": {
"19": "icons/enabled_19.png",
"38": "icons/enabled_38.png"
},
"default_popup": "pages/action.html",
"default_title": "__MSG_name__\n\n__MSG_noActiveState__"
},
"content_security_policy": "script-src 'self'; style-src 'self' 'unsafe-inline'; object-src 'none'",
"host_permissions": null,
"manifest_version": 2,
"optional_host_permissions": null,
"optional_permissions[]": [
"chrome://*/*",
"chrome://new-tab-page/*"
],
"options_page": "pages/options.html",
"options_ui": {
"page": "pages/options.html",
"chrome_style": false,
"open_in_tab": true
},
"permissions[]": [
"<all_urls>",
"-favicon",
"-offscreen",
"-scripting",
"-tabGroups"
],
"web_accessible_resources": [
"content/*",
"front/vomnibar*",
"lib/*"
]
}