Bloombench Screenshare

Screensharing Extension for Bloombench

Co to jest Bloombench Screenshare?

Bloombench Screenshare to rozszerzenie Chrome opracowane przez http://bloombench.com, a jego główną funkcją jest „Screensharing Extension for Bloombench”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Bloombench Screenshare

Pobierz pliki rozszerzeń Bloombench Screenshare 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

                        The Bloombench screen sharing extension allows all the users of the bloombench's virtual classroom to share different aspects of their desktop/screen with the other users. 

Bloombench.com is an online learning portal which allows students and professors to connect in real time thereby enhancing their learning experience.

The extension supports the following use cases:
1. Select which window to share from your computer
2. Participants can click on the full screen icon to see the shared screen more clearly                    

Podstawowe informacje o rozszerzeniu

Nazwa Bloombench Screenshare Bloombench Screenshare
ID mpadkkhpjaopoiboknmmilbojnangeoe
Oficjalny URL https://chrome.google.com/webstore/detail/bloombench-screenshare/mpadkkhpjaopoiboknmmilbojnangeoe
Opis Screensharing Extension for Bloombench
Rozmiar pliku 11.88 KB
Liczba instalacji 67
Aktualna Wersja 1.0.2
Ostatnia Aktualizacja 2019-04-03
Data Publikacji 2019-04-03
Deweloper http://bloombench.com
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://bloombench.com
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Bloombench Screenshare",
    "description": "Screensharing Extension for Bloombench",
    "version": "1.0.2",
    "manifest_version": 2,
    "icons": {
        "128": "icon.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.bloombench.com\/*",
                "https:\/\/localhost\/*"
            ],
            "js": [
                "content-script.js"
            ]
        }
    ],
    "permissions": [
        "desktopCapture",
        "https:\/\/*.bloombench.com\/*",
        "https:\/\/localhost\/*"
    ]
}