Red Subscribe Button Fixer

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

Co to jest Red Subscribe Button Fixer?

Red Subscribe Button Fixer to rozszerzenie Chrome opracowane przez Tony Webster, a jego główną funkcją jest „The new YouTube subscribe button is bright flaming red. How annoying, right? This extension fixes that.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Red Subscribe Button Fixer

Pobierz pliki rozszerzeń Red Subscribe Button Fixer w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Red Subscribe Button Fixer Red Subscribe Button Fixer
ID imfcjgelinkpbhdppbbpeejbaiblbeeo
Oficjalny URL https://chrome.google.com/webstore/detail/red-subscribe-button-fixe/imfcjgelinkpbhdppbbpeejbaiblbeeo
Opis The new YouTube subscribe button is bright flaming red. How annoying, right? This extension fixes that.
Rozmiar pliku 215 KB
Liczba instalacji 96
Aktualna Wersja 1.2
Ostatnia Aktualizacja 2013-07-09
Data Publikacji 2013-07-09
Ocena 4.22/5 Łącznie 9 Oceny
Deweloper Tony Webster
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
            ]
        }
    ]
}