-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
28 lines (28 loc) · 812 Bytes
/
manifest.json
File metadata and controls
28 lines (28 loc) · 812 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
{
"name" : "xiaobanke-screen-recorder",
"author": "notedit",
"version" : "1.0",
"manifest_version" : 2,
"minimum_chrome_version": "34",
"description" : "Capture full-screen or specific application's screen",
"homepage_url": "https://github.com/notedit/screen-share-extension",
"background": {
"scripts": ["background-script.js"],
"persistent": false
},
"content_scripts": [ {
"js": [ "content-script.js" ],
"all_frames": true,
"run_at": "document_end",
"matches": ["https://xiaobanke.cc/*","https://xiaobanke.dot.cc/*","file:///*","http://*/*","http://*/*"]
}],
"icons" : {
"48" : "icon.png"
},
"permissions": [
"desktopCapture"
],
"web_accessible_resources": [
"icon.png"
]
}