Bloombench Screenshare

Screensharing Extension for Bloombench

什麼是Bloombench Screenshare?

Bloombench Screenshare是由http://bloombench.com開發的Chrome擴展程式,該擴展的主要功能是“Screensharing Extension for Bloombench”。

擴展截圖

screenshot

下載Bloombench Screenshare擴展crx文件

下載Bloombench Screenshare擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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                    

擴展基本資訊

名稱 Bloombench Screenshare Bloombench Screenshare
ID mpadkkhpjaopoiboknmmilbojnangeoe
官方網址 https://chrome.google.com/webstore/detail/bloombench-screenshare/mpadkkhpjaopoiboknmmilbojnangeoe
簡介 Screensharing Extension for Bloombench
檔案大小 11.88 KB
安裝次數 67
目前版本 1.0.2
更新時間 2019-04-03
上架時間 2019-04-03
開發者 http://bloombench.com
電子郵箱 [email protected]
付費類型 free
擴展官網 https://bloombench.com
支援的語言 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\/*"
    ]
}