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 |
| Eメール | [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"
]
} | |