VOXO Meet
A simple extension that allows you to screen share and schedule meetings
Hvad er VOXO Meet?
VOXO Meet er en Chrome-udvidelse udviklet af https://voxo.co, og dens hovedfunktion er "A simple extension that allows you to screen share and schedule meetings".
Udvidelsesskærmbilleder
Download VOXO Meet-udvidelses-CRX-fil
Download VOXO Meet-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | enbobpnfcaohmdnjcpdjphkemkaemlil |
| Officiel URL | https://chromewebstore.google.com/detail/voxo-meet/enbobpnfcaohmdnjcpdjphkemkaemlil |
| Beskrivelse | A simple extension that allows you to screen share and schedule meetings |
| Filstørrelse | 134 KB |
| Antal Installationer | 42 |
| Nuværende Version | 0.1.13 |
| Senest Opdateret | 2018-10-14 |
| Udgivelsesdato | 2018-10-13 |
| Udvikler | https://voxo.co |
| [email protected] | |
| Betalingsmetode | free |
| Udvidelseswebsted | https://www.voxo.co |
| Hjælpeside-URL | http://support.voxo.co |
| Understøttede Sprog | 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"
}
} | |