BigBlueButton buttons
Adds media-playback controls to BigBlueButton recordings.
Was ist BigBlueButton buttons?
BigBlueButton buttons ist eine Chrome-Erweiterung, die von skotevski10 entwickelt wurde, und ihr Hauptmerkmal ist "Adds media-playback controls to BigBlueButton recordings.".
Erweiterungsscreenshots
BigBlueButton buttons-Erweiterungs-CRX-Datei herunterladen
Laden Sie BigBlueButton buttons-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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/
Grundlegende Informationen zur Erweiterung
Name | BigBlueButton buttons |
ID | dhchhdbeibepkacjikkolhimlemkkjam |
Offizielle URL | https://chromewebstore.google.com/detail/bigbluebutton-buttons/dhchhdbeibepkacjikkolhimlemkkjam |
Beschreibung | Adds media-playback controls to BigBlueButton recordings. |
Dateigröße | 43.2 KB |
Installationsanzahl | 233 |
Aktuelle Version | 1.3 |
Letztes Update | 2020-11-28 |
Veröffentlichungsdatum | 2020-11-18 |
Bewertung | 5.00/5 Insgesamt 4 Bewertungen |
Entwickler | skotevski10 |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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" } } |