WebStream WebRTC Screen Capture
This extension allows WebStream WebRTC connections to use the screen as a video source.
WebStream WebRTC Screen Captureとは何ですか?
WebStream WebRTC Screen CaptureはUnknownによって開発されたChromeの拡張機能で、その主な機能は「This extension allows WebStream WebRTC connections to use the screen as a video source.」です。
拡張機能のスクリーンショット
WebStream WebRTC Screen Capture拡張機能のCRXファイルをダウンロード
WebStream WebRTC Screen Capture拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
拡張機能の基本情報
| 名前 | |
| ID | aiiaoeidafjmbmncceigjjbhoopljehf |
| 公式URL | https://chromewebstore.google.com/detail/webstream-webrtc-screen-c/aiiaoeidafjmbmncceigjjbhoopljehf |
| 説明 | This extension allows WebStream WebRTC connections to use the screen as a video source. |
| ファイルサイズ | 395 KB |
| インストール数 | 23 |
| 現在のバージョン | 1.0.1 |
| 最終更新日 | 2018-11-12 |
| 公開日 | 2018-11-11 |
| 評価 | 5.00/5 合計 1 レビュー |
| 開発者 | Unknown |
| 支払い方法 | free |
| 対応言語 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "WebStream WebRTC Screen Capture",
"version": "1.0.1",
"description": "This extension allows WebStream WebRTC connections to use the screen as a video source.",
"icons": {
"16": "WebStream-16.png",
"32": "WebStream-32.png",
"48": "WebStream-48.png",
"128": "WebStream-128.png"
},
"author": "WebStream",
"background": {
"persistent": false,
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"js": [
"content.js"
],
"all_frames": true,
"run_at": "document_end",
"matches": [
"*:\/\/*\/*"
]
}
],
"homepage_url": "https:\/\/teleconnect.care\/",
"minimum_chrome_version": "34",
"permissions": [
"desktopCapture"
],
"web_accessible_resources": [
"WebStream-16.png",
"WebStream-32.png",
"WebStream-48.png",
"WebStream-128.png"
]
} | |