Automatic 4K/HD for Youtube

Automatic 4K/HD for Youtube

Extension that will allow you to select desired playback quality on Youtube. Save setting forever.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "persistent": true,
    "scripts": [
      "background.js",
      "analytics.js",
      "notifications.js"
    ]
  },
  "browser_action": {
    "default_icon": "images/i6.png",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "css": [],
      "js": [
        "yt.js"
      ],
      "matches": [
        "*://www.youtube.com/*"
      ],
      "run_at": "document_start"
    }
  ],
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com https://www.google-analytics.com https://apis.google.com https://ajax.googleapis.com blob:;style-src 'self' 'unsafe-inline' 'unsafe-eval';connect-src *;object-src 'self'",
  "default_locale": "en",
  "description": "__MSG_appDesc__",
  "icons": {
    "128": "images/default.png"
  },
  "manifest_version": 2,
  "name": "__MSG_appName__",
  "permissions": [
    "alarms",
    "storage",
    "tabs",
    "unlimitedStorage",
    "http://*/*",
    "https://*/*",
    "notifications",
    "<all_urls>"
  ],
  "version": "2.0.0.20"
}