VOXO Meet
A simple extension that allows you to screen share and schedule meetings
Cos'è VOXO Meet?
VOXO Meet è un'estensione di Chrome sviluppata da https://voxo.co, e la sua funzione principale è "A simple extension that allows you to screen share and schedule meetings".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione VOXO Meet
Scarica i file di estensione VOXO Meet in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Informazioni di Base sull'Estensione
| Nome | |
| ID | enbobpnfcaohmdnjcpdjphkemkaemlil |
| URL Ufficiale | https://chromewebstore.google.com/detail/voxo-meet/enbobpnfcaohmdnjcpdjphkemkaemlil |
| Descrizione | A simple extension that allows you to screen share and schedule meetings |
| Dimensione del File | 134 KB |
| Conteggio Installazioni | 42 |
| Versione Corrente | 0.1.13 |
| Ultimo Aggiornamento | 2018-10-14 |
| Data di Pubblicazione | 2018-10-13 |
| Sviluppatore | https://voxo.co |
| [email protected] | |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://www.voxo.co |
| URL della Pagina di Aiuto | http://support.voxo.co |
| Lingue Supportate | 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"
}
} | |