-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
52 lines (52 loc) · 1009 Bytes
/
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": "__MSG_extensionName__",
"version": "1.0",
"description": "__MSG_extensionDescription__",
"default_locale": "en",
"icons": {
"48": "images/icon48.png",
"96": "images/icon96.png"
},
"browser_action": {
"default_icon": "images/icon48.png",
"default_title": "__MSG_browserActionTitle__",
"default_popup": "popup.html"
},
"permissions": [
"*://*/*",
"contextualIdentities",
"cookies",
"history",
"privacy",
"sessions",
"storage",
"webRequest",
"webRequestBlocking"
],
"background": {
"scripts": [
"settings.js",
"background.js"
]
},
"commands": {
"new-isolated-tab": {
"suggested_key": {
"default": "Ctrl+Alt+T"
},
"description": "__MSG_newIsolatedTabCommandDescription__"
},
"_execute_browser_action": {
"suggested_key": {
"default": "Ctrl+Alt+S"
}
}
},
"browser_specific_settings": {
"gecko": {
"id": "firefox-extension@snowhaze.com",
"strict_min_version": "68.0"
}
}
}