使用此拓展共享您的桌面窗口
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"name": "QNRTC Screen Capture",
"author": "disoul",
"version": "1.1.0",
"manifest_version": 2,
"minimum_chrome_version": "55",
"description": "使用此拓展共享您的桌面窗口",
"background": {
"scripts": [
"background-script.js"
],
"persistent": false
},
"content_scripts": [
{
"js": [
"content-script.js"
],
"all_frames": true,
"run_at": "document_end",
"matches": [
"<all_urls>"
]
}
],
"icons": {
"48": "icon.png"
},
"permissions": [
"desktopCapture"
],
"web_accessible_resources": [
"icon.png"
]
}