Switchvox Screen Sharing for Switchboard
Enables screen-sharing for chrome in the switchboard
Switchvox Screen Sharing for Switchboardคืออะไร?
Switchvox Screen Sharing for Switchboard เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Digium, Inc. และคุณลักษณะหลักของมันคือ "Enables screen-sharing for chrome in the switchboard"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Switchvox Screen Sharing for Switchboard
ดาวน์โหลดไฟล์ส่วนขยาย Switchvox Screen Sharing for Switchboard ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This extension is for Switchvox users, and makes it possible to share your desktop computer screen in the Switchboard.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Switchvox Screen Sharing for Switchboard |
ID | odnmjffmhmkbebhofkmeeejdbcofiejc |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/switchvox-screen-sharing/odnmjffmhmkbebhofkmeeejdbcofiejc |
คำอธิบาย | Enables screen-sharing for chrome in the switchboard |
ขนาดไฟล์ | 4.03 KB |
จำนวนการติดตั้ง | 884 |
เวอร์ชันปัจจุบัน | 0.0.2 |
อัปเดตครั้งล่าสุด | 2018-10-24 |
วันที่เผยแพร่ | 2018-10-24 |
คะแนน | 1.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | Digium, Inc. |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Switchvox Screen Sharing for Switchboard", "description": "Enables screen-sharing for chrome in the switchboard", "version": "0.0.2", "content_security_policy": "script-src 'self'; object-src 'self'", "permissions": [ "desktopCapture", "https:\/\/*\/*", "http:\/\/*\/*" ], "background": { "scripts": [ "background.js" ], "persistent": true }, "content_scripts": [ { "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "js": [ "content.js" ] } ] } |