HideYoutubeControls

Hide youtube controls when you are on a youtube page

O que é HideYoutubeControls?

HideYoutubeControls é uma extensão do Chrome desenvolvida por Ruchunteur, e sua principal característica é "Hide youtube controls when you are on a youtube page".

Baixar o arquivo CRX da Extensão HideYoutubeControls

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

                        Hide/show the controls of a video on youtube. (Usefull if you pause the video and the control is above the very thing you wanted to see. Such as subtitles)                    

Informações Básicas da Extensão

Nome HideYoutubeControls HideYoutubeControls
ID iflpjkbpegjcibknhepnfhbigholnolp
URL Oficial https://chromewebstore.google.com/detail/hideyoutubecontrols/iflpjkbpegjcibknhepnfhbigholnolp
Descrição Hide youtube controls when you are on a youtube page
Tamanho do Arquivo 6.32 KB
Contagem de Instalações 21
Versão Atual 1.0
Última Atualização 2017-03-25
Data de Publicação 2017-03-25
Classificação 4.33/5 Total de 3 Avaliações
Desenvolvedor Ruchunteur
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "HideYoutubeControls",
    "version": "1.0",
    "manifest_version": 2,
    "description": "Hide youtube controls when you are on a youtube page",
    "browser_action": {
        "default_icon": "icone.png"
    },
    "background": {
        "persistent": false,
        "scripts": [
            "popup.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}