-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
executable file
·44 lines (44 loc) · 945 Bytes
/
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
{
"name": "browser_plugin_template",
"author": "[email protected]",
"description": "description",
"version": "0.0.1",
"icons": {
"16": "./assets/favicon.png",
"48": "./assets/favicon.png",
"128": "./assets/favicon.png"
},
"manifest_version": 3,
"permissions": [
"tabs",
"storage",
"declarativeContent",
"activeTab",
"scripting",
"downloads",
"downloads.shelf",
"downloads.open"
],
"host_permissions": [
"https://www.google.com/",
"http://www.google.com/",
"https://www.zhihu.com/",
"http://www.zhihu.com/"
],
"action": {
"default_popup": "dest/popup.html",
"default_icon": "assets/favicon.png"
},
"web_accessible_resources": [
{
"resources": [
"manifest.json"
],
"matches": [
"https://www.google.com/*",
"https://www.zhihu.com/*"
]
}
],
"update_url": "https://xx/plugin-update-info.xml"
}