Bloombench Screenshare

Screensharing Extension for Bloombench

Cos'è Bloombench Screenshare?

Bloombench Screenshare è un'estensione di Chrome sviluppata da http://bloombench.com, e la sua funzione principale è "Screensharing Extension for Bloombench".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Bloombench Screenshare

Scarica i file di estensione Bloombench Screenshare in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Bloombench Screenshare Bloombench Screenshare
ID mpadkkhpjaopoiboknmmilbojnangeoe
URL Ufficiale https://chrome.google.com/webstore/detail/bloombench-screenshare/mpadkkhpjaopoiboknmmilbojnangeoe
Descrizione Screensharing Extension for Bloombench
Dimensione del File 11.88 KB
Conteggio Installazioni 67
Versione Corrente 1.0.2
Ultimo Aggiornamento 2019-04-03
Data di Pubblicazione 2019-04-03
Sviluppatore http://bloombench.com
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://bloombench.com
Lingue Supportate 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\/*"
    ]
}