ConnectUs Screen Capture
This extension allows ConnectUs WebRTC connections to use the screen as a video source.
什么是ConnectUs Screen Capture?
ConnectUs Screen Capture是由Unknown开发的Chrome扩展程序,该扩展的主要功能是“This extension allows ConnectUs WebRTC connections to use the screen as a video source.”。
扩展截图
下载ConnectUs Screen Capture扩展crx文件
下载ConnectUs Screen Capture扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension allows WebRTC connections to use the screen as a video source. 扩展基本信息
| 名称 | |
| ID | bjgaeafjccihokdokhidiphjimncmkcj |
| 官方URL | https://chromewebstore.google.com/detail/connectus-screen-capture/bjgaeafjccihokdokhidiphjimncmkcj |
| 简介 | This extension allows ConnectUs WebRTC connections to use the screen as a video source. |
| 文件大小 | 375 KB |
| 安装次数 | 18 |
| 当前版本 | 3.0.0 |
| 更新时间 | 2017-06-23 |
| 上架时间 | 2017-06-23 |
| 开发者 | Unknown |
| 付费类型 | free |
| 支持的语言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "ConnectUs Screen Capture",
"version": "3.0.0",
"description": "This extension allows ConnectUs WebRTC connections to use the screen as a video source.",
"icons": {
"16": "ic-16.png",
"32": "ic-32.png",
"48": "ic-48.png",
"128": "ic-128.png"
},
"author": "ConnectUs",
"background": {
"persistent": false,
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"js": [
"content.js"
],
"all_frames": true,
"run_at": "document_end",
"matches": [
"*:\/\/*\/*"
]
}
],
"homepage_url": "http:\/\/connectuscom.com\/",
"minimum_chrome_version": "34",
"permissions": [
"desktopCapture"
],
"web_accessible_resources": [
"ic-16.png",
"ic-32.png",
"ic-48.png",
"ic-128.png"
]
} | |