Red Subscribe Button Fixer

Red Subscribe Button Fixer

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

Merlin
Additional files are visible only to premium users

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"
      ]
    }
  ]
}