Red Subscribe Button Fixer

The new YouTube subscribe button is bright flaming red. How annoying, right? This extension fixes that.

O que é Red Subscribe Button Fixer?

Red Subscribe Button Fixer é uma extensão do Chrome desenvolvida por Tony Webster, e sua principal característica é "The new YouTube subscribe button is bright flaming red. How annoying, right? This extension fixes that.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Red Subscribe Button Fixer

Baixe arquivos de extensão Red Subscribe Button Fixer 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

                        YouTube recently replaced the 'Subscribe' button on video pages with an obnoxious bright red button. That's annoying. This extension's sole purpose is to swap it out with a less-annoying light grey version.

This extension only adds limited CSS properties to target the subscribe button. It does not access your YouTube data or data on other sites, and no data is transmitted to third parties.

Open source: https://github.com/webster/youtube-red-subscribe-button                    

Informações Básicas da Extensão

Nome Red Subscribe Button Fixer Red Subscribe Button Fixer
ID imfcjgelinkpbhdppbbpeejbaiblbeeo
URL Oficial https://chrome.google.com/webstore/detail/red-subscribe-button-fixe/imfcjgelinkpbhdppbbpeejbaiblbeeo
Descrição The new YouTube subscribe button is bright flaming red. How annoying, right? This extension fixes that.
Tamanho do Arquivo 215 KB
Contagem de Instalações 96
Versão Atual 1.2
Última Atualização 2013-07-09
Data de Publicação 2013-07-09
Classificação 4.22/5 Total de 9 Avaliações
Desenvolvedor Tony Webster
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": "Red Subscribe Button Fixer",
    "description": "The new YouTube subscribe button is bright flaming red. How annoying, right? This extension fixes that.",
    "version": "1.2",
    "permissions": [
        "https:\/\/www.youtube.com\/",
        "http:\/\/www.youtube.com\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*",
                "http:\/\/www.youtube.com\/*"
            ],
            "css": [
                "noredbutton.css"
            ]
        }
    ]
}