Auto-Quality for Youtube HD/4K/8K

Auto-Quality for Youtube HD/4K/8K

Extension that will allow you to permanently set Youtube playback quality to your desired resolution.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "browser_action": {
    "default_icon": "images/icon_128.png",
    "default_popup": "html/popup.html"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "css": [],
      "js": [
        "js/library_youtube.js"
      ],
      "matches": [
        "*://www.youtube.com/*"
      ],
      "run_at": "document_start"
    }
  ],
  "default_locale": "en",
  "description": "__MSG_appDesc__",
  "icons": {
    "16": "images/icon_16.png",
    "48": "images/icon_48.png",
    "128": "images/icon_128.png"
  },
  "manifest_version": 2,
  "name": "__MSG_appName__",
  "permissions": [
    "alarms",
    "contextMenus",
    "privacy",
    "storage",
    "tabs",
    "unlimitedStorage",
    "webNavigation",
    "webRequest",
    "webRequestBlocking",
    "http://*/*",
    "https://*/*",
    "notifications"
  ],
  "version": "4.3.03.46"
}