BigBlueButton buttons

Adds media-playback controls to BigBlueButton recordings.

BigBlueButton buttonsとは何ですか?

BigBlueButton buttonsはskotevski10によって開発されたChromeの拡張機能で、その主な機能は「Adds media-playback controls to BigBlueButton recordings.」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

BigBlueButton buttons拡張機能のCRXファイルをダウンロード

BigBlueButton buttons拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        This browser extension allows FINKI students to watch recorded lectures at their own pace. The extension adds media controls to a BigBlueButton recording. It also adds a dark mode theme. 
Future features are planned but no time estimation is available at the moment.

Adjust the speed and seek offset in the extension popup like in the images.

New features will be coming soon. For the code you can visit:
https://github.com/Kotesitory/bbb_buttons_extensions

Make sure the extension is pinned to the browser task bar in order to be able to configure it.
On how to pin an extension to the toolbar, check this:
https://www.maketecheasier.com/pin-extensions-to-chrome-toolbar/                    

拡張機能の基本情報

名前 BigBlueButton buttons BigBlueButton buttons
ID dhchhdbeibepkacjikkolhimlemkkjam
公式URL https://chromewebstore.google.com/detail/bigbluebutton-buttons/dhchhdbeibepkacjikkolhimlemkkjam
説明 Adds media-playback controls to BigBlueButton recordings.
ファイルサイズ 43.2 KB
インストール数 233
現在のバージョン 1.3
最終更新日 2020-11-28
公開日 2020-11-18
評価 5.00/5 合計 4 レビュー
開発者 skotevski10
Eメール [email protected]
支払い方法 free
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "BigBlueButton buttons",
    "version": "1.3",
    "description": "Adds media-playback controls to BigBlueButton recordings.",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/bbb-lb.finki.ukim.mk\/*"
            ],
            "js": [
                "bbb_buttons.js"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "popup\/popup.html",
        "default_title": "Options"
    },
    "permissions": [
        "storage"
    ],
    "icons": {
        "16": "assets\/icon_16.png",
        "48": "assets\/icon_48.png",
        "96": "assets\/icon_96.png",
        "128": "assets\/icon_128.png"
    }
}