-
Notifications
You must be signed in to change notification settings - Fork 16
/
manifest.json
61 lines (52 loc) · 1.07 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
{
"manifest_version": 2,
"name": "__MSG_extensionName__",
"version": "8.0.0",
"description": "__MSG_extensionDescription__",
"applications": {
"gecko": {
"id": "{4853d046-c5a3-436b-bc36-220fd935ee1d}",
"strict_min_version": "60.0"
}
},
"icons": {
"24": "icons/undoclosetab.svg",
"32": "icons/undoclosetab.svg",
"50": "icons/undoclosetab.svg"
},
"background": {
"scripts": [
"utils/iconupdater.js",
"utils/storage.js",
"tabhandling.js",
"background.js"
]
},
"browser_action": {
"browser_style": true,
"default_icon": "icons/undoclosetab.svg",
"default_area": "navbar",
"theme_icons": [{
"dark": "icons/undoclosetab.svg",
"light": "icons/undoclosetab-light.svg",
"size": 19
}]
},
"options_ui": {
"page": "options.html",
"browser_style": true,
"open_in_tab": false
},
"commands": {
"_execute_browser_action": {
}
},
"permissions": [
"menus",
"tabs",
"sessions",
"storage",
"theme"
],
"default_locale": "en"
}