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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Unknown และคุณลักษณะหลักของมันคือ "This extension allows WebStream WebRTC connections to use the screen as a video source."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย WebStream WebRTC Screen Capture
ดาวน์โหลดไฟล์ส่วนขยาย 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"
]
} | |