Confrere Screensharing

Enables screen sharing in Confrere

Co to jest Confrere Screensharing?

Confrere Screensharing to rozszerzenie Chrome opracowane przez https://confrere.com, a jego główną funkcją jest „Enables screen sharing in Confrere”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Confrere Screensharing

Pobierz pliki rozszerzeń Confrere Screensharing 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 enables screensharing for Confrere-based products. The extension may be installed to *.confrere.com.                    

Podstawowe informacje o rozszerzeniu

Nazwa Confrere Screensharing Confrere Screensharing
ID okifmkhblklokdfkgaejkpmleiajepml
Oficjalny URL https://chromewebstore.google.com/detail/confrere-screensharing/okifmkhblklokdfkgaejkpmleiajepml
Opis Enables screen sharing in Confrere
Rozmiar pliku 47 KB
Liczba instalacji 95
Aktualna Wersja 1.1.1
Ostatnia Aktualizacja 2019-01-11
Data Publikacji 2019-01-11
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper https://confrere.com
Typ Płatności free
Strona Rozszerzenia https://confrere.com
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Confrere Screensharing",
    "description": "Enables screen sharing in Confrere",
    "version": "1.1.1",
    "manifest_version": 2,
    "minimum_chrome_version": "34",
    "icons": {
        "16": "icon-16x16.png",
        "32": "icon-32x32.png",
        "128": "icon-128x128.png",
        "192": "icon-192x192.png",
        "512": "icon-512x512.png"
    },
    "permissions": [
        "desktopCapture",
        "https:\/\/*.confrere.com\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                "https:\/\/*.confrere.com\/*",
                "http:\/\/localhost:3000\/*"
            ]
        }
    ],
    "externally_connectable": {
        "matches": [
            "https:\/\/*.confrere.com\/*",
            "http:\/\/localhost:3000\/*"
        ]
    }
}