VOXO Meet
A simple extension that allows you to screen share and schedule meetings
VOXO Meet là gì?
VOXO Meet là một tiện ích mở rộng Chrome được phát triển bởi https://voxo.co, và tính năng chính của nó là "A simple extension that allows you to screen share and schedule meetings".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng VOXO Meet
Tải xuống các tệp mở rộng VOXO Meet dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | VOXO Meet |
ID | enbobpnfcaohmdnjcpdjphkemkaemlil |
URL Chính Thức | https://chromewebstore.google.com/detail/voxo-meet/enbobpnfcaohmdnjcpdjphkemkaemlil |
Mô tả | A simple extension that allows you to screen share and schedule meetings |
Kích Thước Tệp | 134 KB |
Số Lần Cài Đặt | 42 |
Phiên Bản Hiện Tại | 0.1.13 |
Cập Nhật Lần Cuối | 2018-10-14 |
Ngày Phát Hành | 2018-10-13 |
Nhà Phát Triển | https://voxo.co |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://www.voxo.co |
URL Trang Trợ Giúp | http://support.voxo.co |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |