-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathmanifest.json
More file actions
48 lines (48 loc) · 1.26 KB
/
Copy pathmanifest.json
File metadata and controls
48 lines (48 loc) · 1.26 KB
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": 3,
"name": "MultiLangSwitcher",
"version": "2.2.0",
"minimum_chrome_version": "120.0",
"description": "__MSG_extension_description__",
"default_locale": "zh",
"homepage_url": "https://github.com/ChuwuYo/MultiLangSwitcher",
"author": "ChuwuYo",
"incognito": "spanning",
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "images/icon16.png",
"32": "images/icon32.png",
"48": "images/icon48.png",
"64": "images/icon64.png",
"128": "images/icon128.png",
"256": "images/icon256.png",
"512": "images/icon512.png"
}
},
"background": {
"service_worker": "background.js",
"type": "module"
},
"permissions": ["storage", "declarativeNetRequest", "declarativeNetRequestFeedback", "tabs", "contextMenus"],
"host_permissions": ["<all_urls>"],
"icons": {
"16": "images/icon16.png",
"32": "images/icon32.png",
"48": "images/icon48.png",
"64": "images/icon64.png",
"128": "images/icon128.png",
"256": "images/icon256.png",
"512": "images/icon512.png"
},
"web_accessible_resources": [
{
"resources": ["images/*", "domain-rules.json", "fonts/*"],
"matches": ["<all_urls>"],
"use_dynamic_url": true
}
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
}
}