Screen Sharing
Capture full-screen or specific application's screen.
Screen Sharingคืออะไร?
Screen Sharing เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://engducate.com และคุณลักษณะหลักของมันคือ "Capture full-screen or specific application's screen."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Screen Sharing
ดาวน์โหลดไฟล์ส่วนขยาย Screen Sharing ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
To enable screen sharing on the following websites: - https://webrtc.ziotes.com/ - https://localhost:8443/ - https://engducate.com/ - https://ko.engducate.com/
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Screen Sharing |
ID | aafipaghlllcbognnpmdplmpielpaepp |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/screen-sharing/aafipaghlllcbognnpmdplmpielpaepp |
คำอธิบาย | Capture full-screen or specific application's screen. |
ขนาดไฟล์ | 5.52 KB |
จำนวนการติดตั้ง | 124 |
เวอร์ชันปัจจุบัน | 1.4 |
อัปเดตครั้งล่าสุด | 2018-11-28 |
วันที่เผยแพร่ | 2018-11-27 |
คะแนน | 5.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | https://engducate.com |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://engducate.com/ |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Screen Sharing", "author": "Emmanuel Joseph Perion", "version": "1.4", "manifest_version": 2, "minimum_chrome_version": "34", "description": "Capture full-screen or specific application's screen.", "homepage_url": "https:\/\/webrtc.ziotes.com\/", "background": { "scripts": [ "background-script.js" ], "persistent": false }, "content_scripts": [ { "js": [ "content-script.js" ], "all_frames": true, "run_at": "document_end", "matches": [ "https:\/\/webrtc.ziotes.com\/*", "https:\/\/localhost\/*", "https:\/\/engducate.com\/*", "https:\/\/ko.engducate.com\/*" ] } ], "icons": { "48": "icon.png" }, "permissions": [ "desktopCapture" ], "web_accessible_resources": [ "icon.png" ] } |