Really Hide YouTube Shorts

Really Hide YouTube Shorts

A very simple plugin to hide all YouTube Shorts. Created by Zero.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Really Hide YouTube Shorts",
  "manifest_version": 3,
  "version": "1.0.3",
  "description": "A very simple plugin to hide all YouTube Shorts. Created by Zero.",
  "permissions": [
    "storage",
    "scripting"
  ],
  "content_scripts": [
    {
      "js": [
        "assets/content.js"
      ],
      "matches": [
        "https://www.youtube.com/*"
      ]
    }
  ],
  "host_permissions": [
    "https://www.youtube.com/*"
  ],
  "action": {
    "default_title": "Really Hide YouTube Shorts",
    "default_popup": "popup.html"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "assets/hide.css"
      ],
      "matches": [
        "https://www.youtube.com/*"
      ]
    }
  ],
  "icons": {
    "16": "icons/icon16.png",
    "32": "icons/icon48.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  }
}