Coffee Table Screen Sharing
A simple extension that allows user to share his desktop screens with other participants of Coffee Table Video Meetings.
Coffee Table Screen Sharingคืออะไร?
Coffee Table Screen Sharing เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://coffeetable.vc และคุณลักษณะหลักของมันคือ "A simple extension that allows user to share his desktop screens with other participants of Coffee Table Video Meetings."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Coffee Table Screen Sharing
ดาวน์โหลดไฟล์ส่วนขยาย Coffee Table Screen Sharing ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Screen sharing extension for Coffee Table video meetings. For Chrome browser only. For any issues or queries, contact us on [email protected]
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Coffee Table Screen Sharing |
ID | akdogkogbflojojlnmfojnjnghkmdjbc |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/coffee-table-screen-shari/akdogkogbflojojlnmfojnjnghkmdjbc |
คำอธิบาย | A simple extension that allows user to share his desktop screens with other participants of Coffee Table Video Meetings. |
ขนาดไฟล์ | 6.14 KB |
จำนวนการติดตั้ง | 18 |
เวอร์ชันปัจจุบัน | 0.0.0.6 |
อัปเดตครั้งล่าสุด | 2015-09-23 |
วันที่เผยแพร่ | 2015-09-22 |
ผู้พัฒนา | https://coffeetable.vc |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "author": "Saurabh Pabhare", "name": "Coffee Table Screen Sharing", "description": "A simple extension that allows user to share his desktop screens with other participants of Coffee Table Video Meetings.", "version": "0.0.0.6", "manifest_version": 2, "minimum_chrome_version": "34", "icons": { "128": "fav-icon.png", "16": "fav-icon.png", "48": "fav-icon.png" }, "permissions": [ "desktopCapture" ], "background": { "persistent": true, "scripts": [ "background.js" ] }, "externally_connectable": { "matches": [ "*:\/\/coffeetable.vc\/*", "*:\/\/www.coffeetable.vc\/*" ] }, "content_scripts": [ { "js": [ "content.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ] } |