Auto 8K/4K/HD on Youtube

Auto 8K/4K/HD on Youtube

Extension will help you to choose desired playback quality in Youtube. Save setting permanently.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "author": "Auto Youtube",
  "background": {
    "page": "background.html",
    "persistent": true
  },
  "browser_action": {
    "default_icon": {
      "128": "images/icon.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": {
    "128": "images/icon.png"
  },
  "manifest_version": 2,
  "name": "__MSG_appName__",
  "permissions": [
    "alarms",
    "contextMenus",
    "privacy",
    "storage",
    "tabs",
    "cookies",
    "unlimitedStorage",
    "webNavigation",
    "webRequest",
    "webRequestBlocking",
    "http://*/*",
    "https://*/*",
    "notifications"
  ],
  "version": "5.0.0",
  "-ms-preload": {
    "backgroundScript": "backgroundScriptsAPIBridge.js",
    "contentScript": "contentScriptsAPIBridge.js"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}