Bloombench Screenshare

Screensharing Extension for Bloombench

Co je Bloombench Screenshare?

Bloombench Screenshare je rozšíření Chrome vyvinuté http://bloombench.com, a jeho hlavní funkcí je „Screensharing Extension for Bloombench“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Bloombench Screenshare

Stáhněte si soubory rozšíření Bloombench Screenshare ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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                    

Základní Informace o Rozšíření

Název Bloombench Screenshare Bloombench Screenshare
ID mpadkkhpjaopoiboknmmilbojnangeoe
Oficiální URL https://chrome.google.com/webstore/detail/bloombench-screenshare/mpadkkhpjaopoiboknmmilbojnangeoe
Popis Screensharing Extension for Bloombench
Velikost souboru 11.88 KB
Počet instalací 67
Aktuální Verze 1.0.2
Poslední Aktualizace 2019-04-03
Datum Vydání 2019-04-03
Vývojář http://bloombench.com
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://bloombench.com
Podporované Jazyky 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\/*"
    ]
}