NoShortsPlease

NoShortsPlease

Block YouTube Shorts and Disable YouTube Shorts Recommendations

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "NoShortsPlease",
  "version": "1.2",
  "description": "Block YouTube Shorts and Disable YouTube Shorts Recommendations",
  "permissions": [
    "activeTab"
  ],
  "icons": {
    "128": "./icons/logo_128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.youtube.com/*"
      ],
      "run_at": "document_idle",
      "all_frames": true,
      "js": [
        "content.js"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}