Video Bar

Customizable progress bar for Youtube videos and other web sites

O que é Video Bar?

Video Bar é uma extensão do Chrome desenvolvida por alikims, e sua principal característica é "Customizable progress bar for Youtube videos and other web sites".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Video Bar

Baixe arquivos de extensão Video 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

                        Adds a progress bar to YouTube videos and videos on other web sites. 

This helps, in a non-intrusive way, to keep track of the video progress while all the controls are hidden.

The progress bar position, size, colors, timer font and mouse-over behavior can be customized in the options. The page has a live preview of the bar with "Save settings" and "Restore default" buttons.

All settings are kept in the local browser's storage. 

Left mouse click on the extension's icon turns it on/off for each browser's tab.                    

Informações Básicas da Extensão

Nome Video Bar Video Bar
ID nediigdbkfmemfcleolaonlpbigjhjhi
URL Oficial https://chromewebstore.google.com/detail/video-bar/nediigdbkfmemfcleolaonlpbigjhjhi
Descrição Customizable progress bar for Youtube videos and other web sites
Tamanho do Arquivo 17.83 KB
Contagem de Instalações 99
Versão Atual 0.0.7
Última Atualização 2021-09-20
Data de Publicação 2021-09-16
Classificação 4.67/5 Total de 6 Avaliações
Desenvolvedor alikims
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Video Bar",
    "version": "0.0.7",
    "description": "Customizable progress bar for Youtube videos and other web sites",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": {
            "16": "ico\/16.png",
            "48": "ico\/48.png",
            "128": "ico\/128.png"
        }
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "bar_on.js"
            ],
            "run_at": "document_start"
        }
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "icons": {
        "16": "ico\/16.png",
        "48": "ico\/48.png",
        "128": "ico\/128.png"
    }
}