Clean YouTube - Remove Shorts, Comments, Related Videos

Clean YouTube - Remove Shorts, Comments, Related Videos

Remove YouTube shorts, related videos, trending, comments, feed, homepage recommendations and other distractions.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Clean YouTube - Remove Shorts, Comments, Related Videos",
  "description": "Remove YouTube shorts, related videos, trending, comments, feed, homepage recommendations and other distractions.",
  "version": "0.4.2",
  "manifest_version": 3,
  "icons": {
    "16": "16.png",
    "32": "32.png",
    "48": "48.png",
    "96": "96.png",
    "128": "128.png"
  },
  "action": {
    "default_popup": "popup.html",
    "default_title": "YouTube Blocker"
  },
  "offline_enabled": true,
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "*://*.youtube.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.youtube.com/*"
      ],
      "js": [
        "clear-youtube.cs.js"
      ],
      "run_at": "document_end"
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}