-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
42 lines (42 loc) · 877 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
{
"manifest_version": 2,
"name": "Tab Count in Window Title",
"version": "5.7",
"default_locale": "en",
"applications": {
"gecko": {
"strict_min_version": "60.0",
"id": "{c28e42b2-28b5-45f0-bdc8-6989ae7e6a7e}"
}
},
"options_ui": {
"page": "options/options.html"
},
"permissions": [
"storage"
],
"optional_permissions": [
"tabs",
"sessions"
],
"background": {
"page": "background/background.html"
},
"browser_action": {
"default_icon": {
"16": "icons/popup-16-light.png"
},
"default_popup": "popup/popup.html",
"theme_icons": [
{
"light": "icons/popup-16-dark.png",
"dark": "icons/popup-16-light.png",
"size": 16
}
],
"browser_style": false
},
"commands": {
"_execute_browser_action": {}
}
}