VOXO Meet
A simple extension that allows you to screen share and schedule meetings
VOXO Meetคืออะไร?
VOXO Meet เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://voxo.co และคุณลักษณะหลักของมันคือ "A simple extension that allows you to screen share and schedule meetings"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย VOXO Meet
ดาวน์โหลดไฟล์ส่วนขยาย VOXO Meet ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | VOXO Meet |
ID | enbobpnfcaohmdnjcpdjphkemkaemlil |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/voxo-meet/enbobpnfcaohmdnjcpdjphkemkaemlil |
คำอธิบาย | A simple extension that allows you to screen share and schedule meetings |
ขนาดไฟล์ | 134 KB |
จำนวนการติดตั้ง | 42 |
เวอร์ชันปัจจุบัน | 0.1.13 |
อัปเดตครั้งล่าสุด | 2018-10-14 |
วันที่เผยแพร่ | 2018-10-13 |
ผู้พัฒนา | https://voxo.co |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://www.voxo.co |
URL หน้าช่วยเหลือ | http://support.voxo.co |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "VOXO Meet", "description": "A simple extension that allows you to screen share and schedule meetings", "version": "0.1.13", "minimum_chrome_version": "34", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "background": { "scripts": [ "background.js" ], "persistent": true }, "permissions": [ "desktopCapture", "https:\/\/calendar.google.com\/*" ], "externally_connectable": { "matches": [ "*:\/\/meet.voxo.co\/*", "*:\/\/voxo.co\/*" ] }, "content_scripts": [ { "matches": [ "https:\/\/calendar.google.com\/calendar\/*", "https:\/\/outlook.live.com\/owa\/*" ], "js": [ "jquery.js", "RandomUtil.js", "RoomnameGenerator.js", "meet-calendar.js" ], "css": [ "\/css\/all.css" ], "all_frames": false, "run_at": "document_end" } ], "web_accessible_resources": [ "icon48.png", "meet-logo-white-48x48.png", "meet-logo-blue.svg", "meet-logo-grey.svg" ], "browser_action": { "default_title": "Create VOXO Meetings", "default_popup": "popup.html" } } |