-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
48 lines (48 loc) · 1.23 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
{
"background": {
"service_worker": "js/easyswitch.js"
},
"default_locale": "en",
"content_security_policy": {
"extension_pages": "script-src 'self' ; object-src 'self'; img-src https://*.gstatic.com https://*.gstatic.cn;"
},
"author": "書",
"description": "__MSG_description__",
"icons": {
"16": "asset/logo/icon_16x16.png",
"32": "asset/logo/icon_32x32.png",
"64": "asset/logo/icon_64x64.png",
"128": "asset/logo/icon_128x128.png",
"256": "asset/logo/icon_256x256.png"
},
"manifest_version": 3,
"name": "__MSG_extName__",
"options_ui": {
"open_in_tab": true,
"page": "options.html"
},
"action": {
"default_icon": {
"16": "asset/logo/icon_16x16.png",
"32": "asset/logo/icon_32x32.png",
"64": "asset/logo/icon_64x64.png",
"128": "asset/logo/icon_128x128.png",
"256": "asset/logo/icon_256x256.png"
},
"default_title": "__MSG_defaultTitle__"
},
"permissions": [
"activeTab",
"alarms",
"favicon",
"scripting",
"storage",
"tabs"
],
"host_permissions": [
"http://*/*",
"https://*/*"
],
"short_name": "__MSG_extName__",
"version": "3.0.4"
}