YouTube Enhancer 💻

YouTube Enhancer 💻

🚀 Enhance your YouTube experience with this powerful browser extension. Features include customizable volume control, automatic quality settings, playback speed adjustments, volume boost, and more. Build from scratch with easy steps.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "author": "VampireChicken12",
  "background": {
    "page": "src/pages/background/index.html"
  },
  "browser_action": {
    "default_icon": "/icons/icon_48.png",
    "default_popup": "src/pages/popup/index.html"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{c49b13b1-5dee-4345-925e-0c793377e3fa}"
    }
  },
  "content_scripts": [
    {
      "css": [
        "contentStyle.css"
      ],
      "js": [
        "src/pages/content/index.js"
      ],
      "matches": [
        "https://www.youtube.com/*"
      ],
      "run_at": "document_start"
    }
  ],
  "description": "YouTube Enhancer is a simple extension that adds some useful features to YouTube.",
  "icons": {
    "16": "/icons/icon_16.png",
    "19": "/icons/icon_19.png",
    "38": "/icons/icon_38.png",
    "48": "/icons/icon_48.png",
    "128": "/icons/icon_128.png"
  },
  "manifest_version": 2,
  "name": "YouTube Enhancer",
  "options_ui": {
    "page": "src/pages/options/index.html"
  },
  "permissions": [
    "activeTab",
    "webRequest",
    "storage",
    "tabs",
    "scripting",
    "https://www.youtube.com/*"
  ],
  "version": "1.24.2",
  "web_accessible_resources": [
    "contentStyle.css",
    "/icons/icon_128.png",
    "/icons/icon_48.png",
    "/icons/icon_16.png",
    "src/pages/content/index.js",
    "src/pages/embedded/index.js",
    "/locales/ca-ES.json",
    "/locales/cs-CZ.json",
    "/locales/de-DE.json",
    "/locales/en-GB.json",
    "/locales/en-US.json",
    "/locales/es-ES.json",
    "/locales/fa-IR.json",
    "/locales/fr-FR.json",
    "/locales/he-IL.json",
    "/locales/hi-IN.json",
    "/locales/it-IT.json",
    "/locales/ja-JP.json",
    "/locales/pl-PL.json",
    "/locales/pt-BR.json",
    "/locales/ru-RU.json",
    "/locales/sv-SE.json",
    "/locales/tr-TR.json",
    "/locales/zh-CN.json",
    "/locales/zh-TW.json"
  ]
}