-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
58 lines (58 loc) · 1.29 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
{
"manifest_version": 3,
"name": "Site Switcher",
"description": "Easily switch across live, stage & local site",
"version": "3.0.1",
"developer": {
"name": "Markus Popp",
"url": "https://github.com/mpopp75/site-switcher"
},
"permissions": [
"storage",
"tabs"
],
"host_permissions": [
"<all_urls>"
],
"background": {
"scripts": [
"main.js"
]
},
"action": {
"default_icon": {
"16": "icons/site-switcher-dark-16.png",
"32": "icons/site-switcher-dark-32.png",
"64": "icons/site-switcher-dark-64.png"
},
"default_title": "Site Switcher",
"default_popup": "popup/info-panel.html",
"theme_icons": [
{
"light": "icons/site-switcher-16.png",
"dark": "icons/site-switcher-dark-16.png",
"size": 16
},
{
"light": "icons/site-switcher-32.png",
"dark": "icons/site-switcher-dark-32.png",
"size": 32
},
{
"light": "icons/site-switcher-64.png",
"dark": "icons/site-switcher-dark-64.png",
"size": 64
}
]
},
"options_ui": {
"page": "options/options.html",
"browser_style": true
},
"browser_specific_settings": {
"gecko": {
"id": "@site-switcher-public",
"strict_min_version": "111.0"
}
}
}