No YouTube Shorts

No YouTube Shorts

Forces YouTube to show Shorts as regular videos and can remove Short shelves.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "__MSG_extensionName__",
  "version": "2.7",
  "default_locale": "en",
  "description": "__MSG_extensionDescription__",
  "icons": {
    "48": "icons/48.png",
    "96": "icons/96.png"
  },
  "permissions": [
    "storage"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{4590d8b8-3569-46e3-a571-cabfbaeab2c1}",
      "strict_min_version": "121.0"
    }
  },
  "options_ui": {
    "page": "options.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.youtube.com/*"
      ],
      "js": [
        "no_shorts.js"
      ]
    }
  ]
}