BigBlueButton buttons

Adds media-playback controls to BigBlueButton recordings.

O que é BigBlueButton buttons?

BigBlueButton buttons é uma extensão do Chrome desenvolvida por skotevski10, e sua principal característica é "Adds media-playback controls to BigBlueButton recordings.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão BigBlueButton buttons

Baixe arquivos de extensão BigBlueButton buttons no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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/                    

Informações Básicas da Extensão

Nome BigBlueButton buttons BigBlueButton buttons
ID dhchhdbeibepkacjikkolhimlemkkjam
URL Oficial https://chromewebstore.google.com/detail/bigbluebutton-buttons/dhchhdbeibepkacjikkolhimlemkkjam
Descrição Adds media-playback controls to BigBlueButton recordings.
Tamanho do Arquivo 43.2 KB
Contagem de Instalações 233
Versão Atual 1.3
Última Atualização 2020-11-28
Data de Publicação 2020-11-18
Classificação 5.00/5 Total de 4 Avaliações
Desenvolvedor skotevski10
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
    }
}