BigBlueButton buttons
Adds media-playback controls to BigBlueButton recordings.
什麼是BigBlueButton buttons?
BigBlueButton buttons是由skotevski10開發的Chrome擴展程式,該擴展的主要功能是“Adds media-playback controls to BigBlueButton recordings.”。
擴展截圖
下載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 |
ID | dhchhdbeibepkacjikkolhimlemkkjam |
官方網址 | 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 |
電子郵箱 | [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" } } |