Screen Share

Screen Share allows you to share your device screen or a particular application with remote audiences during live sessions.

Co to jest Screen Share?

Screen Share to rozszerzenie Chrome opracowane przez authorGEN, a jego główną funkcją jest „Screen Share allows you to share your device screen or a particular application with remote audiences during live sessions.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Screen Share

Pobierz pliki rozszerzeń Screen Share 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

                        Share the screen of your browser window using Screen Share when teaching, training or collaborating online via webRTC Virtual Classroom.  Add this extension to your Chrome browser just once and share the contents of your screen or a particular application with your audience seamlessly.                    

Podstawowe informacje o rozszerzeniu

Nazwa Screen Share Screen Share
ID kihbmdbdahlekggklbfbgmnkifcmfcip
Oficjalny URL https://chrome.google.com/webstore/detail/screen-share/kihbmdbdahlekggklbfbgmnkifcmfcip
Opis Screen Share allows you to share your device screen or a particular application with remote audiences during live sessions.
Rozmiar pliku 13.21 KB
Liczba instalacji 58,170
Aktualna Wersja 0.0.0.8
Ostatnia Aktualizacja 2017-11-07
Data Publikacji 2017-11-07
Ocena 2.47/5 Łącznie 43 Oceny
Deweloper authorGEN
E-mail [email protected]
Typ Płatności free
Adres URL Strony Polityki Prywatności http://www.authorgen.com/Privacy.aspx
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Screen Share",
    "author": "WizIQ",
    "version": "0.0.0.8",
    "manifest_version": 2,
    "minimum_chrome_version": "34",
    "description": "Screen Share allows you to share your device screen or a particular application with remote audiences during live sessions.",
    "background": {
        "scripts": [
            "background-script.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "js": [
                "content-script.js"
            ],
            "all_frames": true,
            "matches": [
                "https:\/\/*\/*"
            ]
        }
    ],
    "icons": {
        "16": "logo16.png",
        "48": "logo48.png",
        "128": "logo128.png"
    },
    "permissions": [
        "desktopCapture"
    ],
    "web_accessible_resources": [
        "icon.png"
    ]
}