Hide Youtube Progress Bar

Easily hide Youtube’s progress bar and all other information that shows the total duration of the video

O que é Hide Youtube Progress Bar?

Hide Youtube Progress Bar é uma extensão do Chrome desenvolvida por Unknown, e sua principal característica é "Easily hide Youtube’s progress bar and all other information that shows the total duration of the video".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Hide Youtube Progress Bar

Baixe arquivos de extensão Hide Youtube 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 is it to avoid spoilers given by the total time of the video and the related videos. Can easily be turned on and off!
Icon created by DesignBolts                    

Informações Básicas da Extensão

Nome Hide Youtube Progress Bar Hide Youtube Progress Bar
ID peojoklnhinheognhigeliholccihoec
URL Oficial https://chromewebstore.google.com/detail/hide-youtube-progress-bar/peojoklnhinheognhigeliholccihoec
Descrição Easily hide Youtube’s progress bar and all other information that shows the total duration of the video
Tamanho do Arquivo 14.88 KB
Contagem de Instalações 2,657
Versão Atual 1.0
Última Atualização 2016-03-03
Data de Publicação 2016-03-03
Classificação 4.07/5 Total de 29 Avaliações
Desenvolvedor Unknown
Tipo de Pagamento free
Site da Extensão https://github.com/NicolaiThorup/Chrome-Hide-Youtube-Progress-Bar
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Hide Youtube Progress Bar",
    "description": "Easily hide Youtube\u2019s progress bar and all other information that shows the total duration of the video",
    "version": "1.0",
    "icons": {
        "16": "icon16.png",
        "24": "icon24.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "64": "icon64.png"
    },
    "background": {
        "persistent": true,
        "scripts": [
            "bg.js"
        ]
    },
    "page_action": {
        "default_icon": {
            "16": "icon16.png",
            "24": "icon24.png",
            "32": "icon32.png",
            "48": "icon48.png",
            "64": "icon64.png"
        },
        "default_title": "Hide or show Youtube's progress bar ",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.youtube.com\/*",
                "https:\/\/*.youtube.com\/*"
            ],
            "js": [
                "app.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "storage"
    ]
}