-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathmanifest.json
71 lines (71 loc) · 1.54 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
{
"manifest_version": 2,
"author": "kesselborn",
"description": "A tabgroup'esque successor for Firefox Quantum (FirefoxBeta and FirefoxNightly only at the moment)",
"homepage_url": "https://github.com/kesselborn/conex",
"name": "Conex (preview)",
"version": "0.9.14",
"browser_action": {
"default_title": "Conex",
"browser_style": false,
"default_popup": "conex-browser-action.html",
"default_icon": {
"48": "icons/icon_48.png"
}
},
"applications": {
"gecko": {
"strict_min_version": "60.0a1",
"update_url": "https://raw.githubusercontent.com/kesselborn/conex/master/versions.json"
}
},
"commands": {
"_execute_browser_action": {
"suggested_key": {
"default": "MacCtrl+Space"
}
},
"new-container": {
"suggested_key": {
"default": "Alt+Shift+N"
}
}
},
"options_ui": {
"page": "conex-options-ui.html",
"browser_style": false,
"open_in_tab": true
},
"background": {
"scripts": [
"conex-helper.js",
"conex-components.js",
"conex-actions-common.js",
"conex-background.js"
]
},
"icons": {
"48": "icons/icon_48.png"
},
"web_accessible_resources": [
"container-selector.html"
],
"permissions": [
"<all_urls>",
"contextualIdentities",
"cookies",
"menus",
"storage",
"tabs",
"webNavigation",
"webRequest",
"webRequestBlocking"
],
"optional_permissions": [
"activeTab",
"bookmarks",
"history",
"notifications",
"tabHide"
]
}