Udemy Permanent Progress Bar

Chrome extension that displays a permanent progress bar underneath the video player

O que é Udemy Permanent Progress Bar?

Udemy Permanent Progress Bar é uma extensão do Chrome desenvolvida por DInteractive, e sua principal característica é "Chrome extension that displays a permanent progress bar underneath the video player".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Udemy Permanent Progress Bar

Baixe arquivos de extensão Udemy Permanent Progress Bar 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 extension adds a tiny unobtrusive permanent progress bar underneath the Udemy course video player. 

If you want to be aware of the remaining time of the current lesson without needing to interact with the video or covering the video contents, this extension adds a tiny progress bar outside of the video area which does not partially hide course contents and is displayed permanently without you needing to constantly hover over the video.                    

Informações Básicas da Extensão

Nome Udemy Permanent Progress Bar Udemy Permanent Progress Bar
ID gjjeocdbniffbljmfagppoeclllgmoee
URL Oficial https://chromewebstore.google.com/detail/udemy-permanent-progress/gjjeocdbniffbljmfagppoeclllgmoee
Descrição Chrome extension that displays a permanent progress bar underneath the video player
Tamanho do Arquivo 15.45 KB
Contagem de Instalações 25
Versão Atual 1.0.1
Última Atualização 2023-02-22
Data de Publicação 2023-02-22
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor DInteractive
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Udemy Permanent Progress Bar",
    "version": "1.0.1",
    "description": "Chrome extension that displays a permanent progress bar underneath the video player",
    "author": "Diego de Blas Mateo",
    "action": {
        "default_icon": "udemy-permanent-progress-bar-icon-16x16.png"
    },
    "icons": {
        "16": "udemy-permanent-progress-bar-icon-16x16.png",
        "48": "udemy-permanent-progress-bar-icon-48x48.png",
        "128": "udemy-permanent-progress-bar-icon-128x128.png"
    },
    "content_scripts": [
        {
            "js": [
                "app.js"
            ],
            "matches": [
                "https:\/\/www.udemy.com\/course\/*\/learn\/*"
            ]
        }
    ]
}