YouTube Enhanced

YouTube Enhanced

Experience YouTube the way you want to. Greatly improves configuration options for YouTube.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "YouTube Enhanced",
  "description": "Experience YouTube the way you want to. Greatly improves configuration options for YouTube.",
  "version": "1.6.1",
  "permissions": [
    "contextMenus",
    "tabs",
    "nativeMessaging",
    "storage"
  ],
  "host_permissions": [
    "https://youtube.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*.youtube.com/*"
      ],
      "js": [
        "js/likes.js",
        "js/comments.js",
        "js/shorts.js",
        "js/misc.js"
      ],
      "css": [
        "css/youtube.css"
      ]
    }
  ],
  "background": {
    "service_worker": "js/background.js"
  },
  "action": {
    "default_title": "YouTube Enhanced",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "/images/icon-16.png",
    "48": "/images/icon-48.png",
    "128": "/images/icon-128.png"
  }
}