VOXO Meet
A simple extension that allows you to screen share and schedule meetings
Apa itu VOXO Meet?
VOXO Meet adalah ekstensi Chrome yang dikembangkan oleh https://voxo.co, dan fitur utamanya adalah "A simple extension that allows you to screen share and schedule meetings".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi VOXO Meet
Unduh file ekstensi VOXO Meet dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
Informasi Dasar Ekstensi
Nama | VOXO Meet |
ID | enbobpnfcaohmdnjcpdjphkemkaemlil |
URL Resmi | https://chromewebstore.google.com/detail/voxo-meet/enbobpnfcaohmdnjcpdjphkemkaemlil |
Deskripsi | A simple extension that allows you to screen share and schedule meetings |
Ukuran File | 134 KB |
Jumlah Instalasi | 42 |
Versi Saat Ini | 0.1.13 |
Terakhir Diperbarui | 2018-10-14 |
Tanggal Publikasi | 2018-10-13 |
Pengembang | https://voxo.co |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://www.voxo.co |
URL Halaman Bantuan | http://support.voxo.co |
Bahasa yang Didukung | 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" } } |