BigBlueButton buttons
Adds media-playback controls to BigBlueButton recordings.
Qu'est-ce que BigBlueButton buttons ?
BigBlueButton buttons est une extension Chrome développée par skotevski10, et sa fonction principale est "Adds media-playback controls to BigBlueButton recordings.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension BigBlueButton buttons
Téléchargez les fichiers d'extension BigBlueButton buttons au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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/
Informations de Base sur l'Extension
Nom | BigBlueButton buttons |
ID | dhchhdbeibepkacjikkolhimlemkkjam |
URL Officiel | https://chromewebstore.google.com/detail/bigbluebutton-buttons/dhchhdbeibepkacjikkolhimlemkkjam |
Description | Adds media-playback controls to BigBlueButton recordings. |
Taille du Fichier | 43.2 KB |
Nombre d'Installations | 233 |
Version Actuelle | 1.3 |
Dernière Mise à Jour | 2020-11-28 |
Date de Publication | 2020-11-18 |
Évaluation | 5.00/5 Total 4 Évaluations |
Développeur | skotevski10 |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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" } } |