-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
37 lines (37 loc) · 905 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
{
"name": "屏幕录制",
"manifest_version": 3,
"version": "1.0.0",
"description": "屏幕录制",
"icons": {
"16": "img/icon.png",
"48": "img/icon.png",
"128": "img/icon.png"
},
// "action": {
// "default_title": "屏幕录制",
// "default_icon": {
// "16": "img/icon.png"
// },
// "default_popup": "popup.html"
// },
"background": {
"service_worker": "background.js"
},
"content_scripts": [
// {
// "matches": ["http://*/*","https://*/*"],
// "js": ["inject.js"],
// "run_at": "document_end"//document_start
// }
],
"host_permissions": ["http://*/*", "https://*/*"],
"permissions": [
"contextMenus",
"tabs",
"notifications",
"webRequest",
"storage",
"scripting"
]
}