Switchvox Screen Sharing for Switchboard

Enables screen-sharing for chrome in the switchboard

Co to jest Switchvox Screen Sharing for Switchboard?

Switchvox Screen Sharing for Switchboard to rozszerzenie Chrome opracowane przez Digium, Inc., a jego główną funkcją jest „Enables screen-sharing for chrome in the switchboard”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Switchvox Screen Sharing for Switchboard

Pobierz pliki rozszerzeń Switchvox Screen Sharing for Switchboard 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

                        This extension is for Switchvox users, and makes it possible to share your desktop computer screen in the Switchboard.                    

Podstawowe informacje o rozszerzeniu

Nazwa Switchvox Screen Sharing for Switchboard Switchvox Screen Sharing for Switchboard
ID odnmjffmhmkbebhofkmeeejdbcofiejc
Oficjalny URL https://chromewebstore.google.com/detail/switchvox-screen-sharing/odnmjffmhmkbebhofkmeeejdbcofiejc
Opis Enables screen-sharing for chrome in the switchboard
Rozmiar pliku 4.03 KB
Liczba instalacji 884
Aktualna Wersja 0.0.2
Ostatnia Aktualizacja 2018-10-24
Data Publikacji 2018-10-24
Ocena 1.00/5 Łącznie 1 Oceny
Deweloper Digium, Inc.
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Switchvox Screen Sharing for Switchboard",
    "description": "Enables screen-sharing for chrome in the switchboard",
    "version": "0.0.2",
    "content_security_policy": "script-src 'self'; object-src 'self'",
    "permissions": [
        "desktopCapture",
        "https:\/\/*\/*",
        "http:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}