BigBlueButton buttons
Adds media-playback controls to BigBlueButton recordings.
BigBlueButton buttons là gì?
BigBlueButton buttons là một tiện ích mở rộng Chrome được phát triển bởi skotevski10, và tính năng chính của nó là "Adds media-playback controls to BigBlueButton recordings.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng BigBlueButton buttons
Tải xuống các tệp mở rộng BigBlueButton buttons dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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/
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | BigBlueButton buttons |
ID | dhchhdbeibepkacjikkolhimlemkkjam |
URL Chính Thức | https://chromewebstore.google.com/detail/bigbluebutton-buttons/dhchhdbeibepkacjikkolhimlemkkjam |
Mô tả | Adds media-playback controls to BigBlueButton recordings. |
Kích Thước Tệp | 43.2 KB |
Số Lần Cài Đặt | 233 |
Phiên Bản Hiện Tại | 1.3 |
Cập Nhật Lần Cuối | 2020-11-28 |
Ngày Phát Hành | 2020-11-18 |
Đánh Giá | 5.00/5 Tổng số 4 Đánh Giá |
Nhà Phát Triển | skotevski10 |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |