Bloombench Screenshare

Screensharing Extension for Bloombench

¿Qué es Bloombench Screenshare?

Bloombench Screenshare es una extensión de Chrome desarrollada por http://bloombench.com, y su función principal es "Screensharing Extension for Bloombench".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Bloombench Screenshare

Descarga archivos de extensión Bloombench Screenshare en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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                    

Información Básica de la Extensión

Nombre Bloombench Screenshare Bloombench Screenshare
ID mpadkkhpjaopoiboknmmilbojnangeoe
URL Oficial https://chrome.google.com/webstore/detail/bloombench-screenshare/mpadkkhpjaopoiboknmmilbojnangeoe
Descripción Screensharing Extension for Bloombench
Tamaño del Archivo 11.88 KB
Cantidad de Instalaciones 67
Versión Actual 1.0.2
Última Actualización 2019-04-03
Fecha de Publicación 2019-04-03
Desarrollador http://bloombench.com
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://bloombench.com
Idiomas Soportados 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\/*"
    ]
}