BigBlueButton buttons
Adds media-playback controls to BigBlueButton recordings.
BigBlueButton buttons क्या है?
BigBlueButton buttons skotevski10 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds media-playback controls to BigBlueButton recordings."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में BigBlueButton buttons एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 |
आधिकारिक 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 |
ईमेल | [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" } } |