-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.safari.json
More file actions
35 lines (35 loc) · 920 Bytes
/
Copy pathmanifest.safari.json
File metadata and controls
35 lines (35 loc) · 920 Bytes
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
{
"manifest_version": 3,
"name": "我的首页",
"version": "20.0",
"description": "自定义新标签页",
"action": {
"default_title": "保存当前网页",
"default_popup": "popup.html"
},
"chrome_url_overrides": {
"newtab": "newtab.html"
},
"background": {
"scripts": ["js/background.js"],
"type": "module",
"persistent": false
},
"permissions": ["storage", "unlimitedStorage", "scripting", "tabs", "activeTab"],
"host_permissions": ["<all_urls>"],
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["js/content-toast.js"]
}
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'; img-src 'self' data: https: http:; connect-src * https: http:;"
},
"icons": {
"16": "assets/icon-16.png",
"32": "assets/icon-32.png",
"48": "assets/icon-48.png",
"128": "assets/icon-128.png"
}
}