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 |
| 官方網址 | 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"
]
} | |