Screensharing
Chrome extension for screen sharing
Screensharingคืออะไร?
Screensharing เป็นส่วนขยายของ Chrome ที่พัฒนาโดย vishnu.n และคุณลักษณะหลักของมันคือ "Chrome extension for screen sharing"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Screensharing
ดาวน์โหลดไฟล์ส่วนขยาย Screensharing ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Screensharing |
ID | aiepheblmpibmhkpldfcpcmfhjoemhmm |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/screensharing/aiepheblmpibmhkpldfcpcmfhjoemhmm |
คำอธิบาย | Chrome extension for screen sharing |
ขนาดไฟล์ | 55.15 KB |
จำนวนการติดตั้ง | 9,620 |
เวอร์ชันปัจจุบัน | 2.9 |
อัปเดตครั้งล่าสุด | 2018-10-25 |
วันที่เผยแพร่ | 2018-10-25 |
ผู้พัฒนา | vishnu.n |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Screensharing", "description": "Chrome extension for screen sharing ", "version": "2.9", "manifest_version": 2, "minimum_chrome_version": "34", "icons": { "16": "logo16.png", "48": "logo48.png", "128": "logo128.png" }, "permissions": [ "tabCapture", "desktopCapture", "storage", "activeTab" ], "background": { "scripts": [ "background.js", "background.common.js", "background.tabCapture.js", "background.badgeText.js", "background.getUserMedia.js", "background.messaging.js", "background.desktopCapture.js", "RecordRTC\/MediaStreamRecorder.js", "RecordRTC\/MultiStreamRecorder.js", "RecordRTC\/StereoAudioRecorder.js", "RecordRTC\/DiskStorage.js" ] }, "content_scripts": [ { "js": [ "content.js", "background.contentScript.js" ], "matches": [ "*:\/\/*.ofabee.com\/*", "*:\/\/*.tokbird.com\/*" ], "all_frames": true, "run_at": "document_start" } ], "web_accessible_resources": [ "icon.png" ], "browser_action": { "default_icon": "icon.png" }, "externally_connectable": { "matches": [ "*:\/\/*.ofabee.com\/*", "*:\/\/*.tokbird.com\/*" ] } } |