zdpjs_webrtc
Version:
基于easyrtc二次开发的webrtc框架
30 lines (29 loc) • 771 B
JSON
{
"name": "EasyRTC Screen Capture",
"short_name": "EasyRTC SC",
"description": "EasyRTC screen capture Chrome extension",
"version": "0.1",
"manifest_version": 2,
"minimum_chrome_version": "34",
"homepage_url": "http://demo.easyrtc.com/",
"background": {
"scripts": ["background-script.js"],
"persistent": false
},
"content_scripts": [ {
"js": [ "content-script.js" ],
"matches": ["*://localhost:*/*", "https://demo.easyrtc.com/*"]
}],
"externally_connectable": {
"matches": ["*://localhost:*/*", "https://demo.easyrtc.com/*"]
},
"icons": {
"16": "Icon-16.png",
"64": "Icon-64.png"
},
"permissions": [
"unlimitedStorage",
"notifications",
"desktopCapture"
]
}