Unify Screen Capture
This extension allows Unify WebRTC connections to use the screen as a video source.
什么是Unify Screen Capture?
Unify Screen Capture是由https://www.unify.com开发的Chrome扩展程序,该扩展的主要功能是“This extension allows Unify WebRTC connections to use the screen as a video source.”。
扩展截图
下载Unify Screen Capture扩展crx文件
下载Unify Screen Capture扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension allows Unify WebRTC connections to use the screen as a video source. 扩展基本信息
| 名称 | |
| ID | habmbajnacidcciecdkkablilolhkopd |
| 官方URL | https://chromewebstore.google.com/detail/unify-screen-capture/habmbajnacidcciecdkkablilolhkopd |
| 简介 | This extension allows Unify WebRTC connections to use the screen as a video source. |
| 文件大小 | 7.63 KB |
| 安装次数 | 43 |
| 当前版本 | 1.0.0 |
| 更新时间 | 2023-12-05 |
| 上架时间 | 2019-05-28 |
| 评分 | 5.00/5 共1次评分 |
| 开发者 | https://www.unify.com |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 隐私政策页面URL | https://unify.com/en/privacy-policy |
| 支持的语言 | de |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Unify Screen Capture",
"version": "1.0.0",
"description": "This extension allows Unify WebRTC connections to use the screen as a video source.",
"icons": {
"16": "screencapture_16.png",
"32": "screencapture_32.png",
"48": "screencapture_48.png",
"128": "screencapture_128.png"
},
"author": "Unify Communications and Collaboration GmbH & Co. KG",
"background": {
"persistent": false,
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"js": [
"content.js"
],
"all_frames": true,
"run_at": "document_end",
"matches": [
"*:\/\/*\/*"
]
}
],
"homepage_url": "https:\/\/www.unify.com",
"minimum_chrome_version": "34",
"permissions": [
"desktopCapture"
],
"web_accessible_resources": [
"screencapture_16.png",
"screencapture_32.png",
"screencapture_48.png",
"screencapture_128.png"
]
} | |