-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
48 lines (40 loc) · 878 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
{
"manifest_version": 2,
"name": "TabZoom",
"version": "1.8.0",
"browser_specific_settings": {
"gecko": {
"id": "{21e7c6a3-cd3a-4671-bef3-0a4befecbb0c}",
"strict_min_version": "90.0"
}
},
"options_ui": {
"page": "options.html",
"browser_style": true
},
"description": "Reduce the tab footprint of non-current containers",
"icons": {
"48": "icons/zoom-48.png",
"96": "icons/zoom-96.png"
},
"permissions": [
"tabs",
"tabHide",
"contextualIdentities",
"storage",
"cookies"
],
"web_accessible_resources": ["placeholder.html", "placeholder.js"],
"browser_action": {
"default_icon": "icons/zoom-48.png"
},
"background": {
"scripts": ["background.js"]
},
"content_scripts": [
{
"matches": ["*://*.mozilla.org/*"],
"js": ["tabzoom.js", "options.js"]
}
]
}