-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
57 lines (55 loc) · 1.03 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
{
"manifest_version": 2,
"version": "0.1a1",
"name": "__MSG_extensionName__",
"description": "__MSG_extensionDescription__",
"author": "Infocatcher",
"default_locale": "en",
"applications": {
"gecko": {
"id": "privateTabWE@infocatcher"
}
},
"background": {
"scripts": ["background.js"]
},
"permissions": [
"contextualIdentities",
"cookies",
"contextMenus",
"tabs",
"storage",
"notifications"
],
"options_ui": {
"page": "options.html",
"browser_style": true
},
"browser_action": {
"browser_style": true,
"default_title": "__MSG_openNewPrivateTab__",
"default_icon": {
"16": "privacy-16.png",
"24": "privacy-24.png",
"32": "privacy-32.png"
}
},
"commands": {
"_execute_browser_action": {
"suggested_key": {
"default": "Alt+Shift+P"
},
"description": "Open new private tab"
},
"toggleTabPrivate": {
"suggested_key": {
"default": "Alt+Shift+T"
},
"description": "Toggle private state of current tab"
}
},
"icons": {
"16": "privacy-16.png",
"48": "icon.png"
}
}