Red Subscribe Button Fixer

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

Что такое Red Subscribe Button Fixer?

Red Subscribe Button Fixer - это расширение Chrome, разработанное Tony Webster, и его основная функция - "The new YouTube subscribe button is bright flaming red. How annoying, right? This extension fixes that.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Red Subscribe Button Fixer

Скачайте файлы расширений Red Subscribe Button Fixer в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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                    

Основная информация о расширении

Название Red Subscribe Button Fixer Red Subscribe Button Fixer
ID imfcjgelinkpbhdppbbpeejbaiblbeeo
Официальный URL https://chrome.google.com/webstore/detail/red-subscribe-button-fixe/imfcjgelinkpbhdppbbpeejbaiblbeeo
Описание The new YouTube subscribe button is bright flaming red. How annoying, right? This extension fixes that.
Размер файла 215 KB
Количество установок 96
Текущая Версия 1.2
Последнее Обновление 2013-07-09
Дата публикации 2013-07-09
Рейтинг 4.22/5 Всего 9 оценок
Разработчик Tony Webster
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки 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"
            ]
        }
    ]
}