Youtube Colors

Youtube Colors

Selects a random color for YouTube from a list every time the browser starts. It makes YouTube more colorful by changing colors on many things to the randomly selected color.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "description": "Selects a random color for YouTube",
  "manifest_version": 2,
  "name": "YouTube Colors",
  "version": "1.3resigned1",
  "icons": {
    "48": "icons/color.png"
  },
  "permissions": [
    "activeTab"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*.youtube.com/*"
      ],
      "js": [
        "colorTube.js"
      ],
      "css": [
        "color.css"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{02a6316b-0a06-42f4-a395-a6e0c293ac46}"
    }
  }
}