VOXO Meet

A simple extension that allows you to screen share and schedule meetings

Co to jest VOXO Meet?

VOXO Meet to rozszerzenie Chrome opracowane przez https://voxo.co, a jego główną funkcją jest „A simple extension that allows you to screen share and schedule meetings”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia VOXO Meet

Pobierz pliki rozszerzeń VOXO Meet w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                                            

Podstawowe informacje o rozszerzeniu

Nazwa VOXO Meet VOXO Meet
ID enbobpnfcaohmdnjcpdjphkemkaemlil
Oficjalny URL https://chromewebstore.google.com/detail/voxo-meet/enbobpnfcaohmdnjcpdjphkemkaemlil
Opis A simple extension that allows you to screen share and schedule meetings
Rozmiar pliku 134 KB
Liczba instalacji 42
Aktualna Wersja 0.1.13
Ostatnia Aktualizacja 2018-10-14
Data Publikacji 2018-10-13
Deweloper https://voxo.co
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://www.voxo.co
Adres URL Strony Pomocy http://support.voxo.co
Obsługiwane Języki 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"
    }
}