Color Changer for YouTube

Color Changer for YouTube

Customize the color scheme of youtube.com

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "scripts": [
      "script/jquery.min.js",
      "script/background.js",
      "script/analytics.js"
    ]
  },
  "browser_action": {
    "default_icon": "icons/128.png",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "js": [
        "script/jquery.min.js",
        "script/themes.js",
        "script/content.js"
      ],
      "matches": [
        "*://*.youtube.com/*"
      ],
      "run_at": "document_start"
    }
  ],
  "content_security_policy": "script-src 'self' https://www.google-analytics.com https://ssl.google-analytics.com https://apis.google.com 'unsafe-eval'; connect-src *; object-src 'self' ",
  "default_locale": "en",
  "description": "__MSG_APP_DESCRIPTION__",
  "icons": {
    "128": "icons/128.png"
  },
  "manifest_version": 2,
  "name": "__MSG_APP_NAME__",
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*",
    "webRequest",
    "webRequestBlocking",
    "storage"
  ],
  "short_name": "__MSG_APP_NAME__",
  "version": "1.5.4"
}