Red Subscribe Button Fixer

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

What is Red Subscribe Button Fixer?

Red Subscribe Button Fixer is a Chrome extension developed by Tony Webster, and its main feature is "The new YouTube subscribe button is bright flaming red. How annoying, right? This extension fixes that.".

Extension Screenshots

screenshot

Download Red Subscribe Button Fixer Extension CRX File

Download Red Subscribe Button Fixer extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Red Subscribe Button Fixer Red Subscribe Button Fixer
ID imfcjgelinkpbhdppbbpeejbaiblbeeo
Official URL https://chrome.google.com/webstore/detail/red-subscribe-button-fixe/imfcjgelinkpbhdppbbpeejbaiblbeeo
Description The new YouTube subscribe button is bright flaming red. How annoying, right? This extension fixes that.
File Size 215 KB
Installation Count 96
Current Version 1.2
Last Updated 2013-07-09
Publish Date 2013-07-09
Rating 4.22/5 Total 9 Ratings
Developer Tony Webster
Email [email protected]
Payment Type free
Supported Languages 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"
            ]
        }
    ]
}