Youtube Shorts Remover

Youtube Shorts Remover

Hide all the Shorts in the subscriptions and other page. Remove also the tab from the sidebar

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Youtube Shorts Remover",
  "description": "Hide all the Shorts in the subscriptions and other page. Remove also the tab from the sidebar",
  "version": "1.0",
  "icons": {
    "64": "icon.png",
    "128": "icon_big.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.youtube.com/*"
      ],
      "js": [
        "main.js"
      ]
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{ab79fe07-725a-416d-b75c-e419af9f5f04}"
    }
  }
}