Bloombench Screenshare

Screensharing Extension for Bloombench

What is Bloombench Screenshare?

Bloombench Screenshare is a Chrome extension developed by http://bloombench.com, and its main feature is "Screensharing Extension for Bloombench".

Extension Screenshots

screenshot

Download Bloombench Screenshare Extension CRX File

Download Bloombench Screenshare extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Bloombench Screenshare Bloombench Screenshare
ID mpadkkhpjaopoiboknmmilbojnangeoe
Official URL https://chrome.google.com/webstore/detail/bloombench-screenshare/mpadkkhpjaopoiboknmmilbojnangeoe
Description Screensharing Extension for Bloombench
File Size 11.88 KB
Installation Count 67
Current Version 1.0.2
Last Updated 2019-04-03
Publish Date 2019-04-03
Developer http://bloombench.com
Email [email protected]
Payment Type free
Extension Website https://bloombench.com
Supported Languages 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\/*"
    ]
}