YouTube Shorts Suck

YouTube Shorts Suck

Adds a button to YouTube shorts that open the normal player instead of the shorts player.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "YouTube Shorts Suck",
  "version": "1.1",
  "description": "Adds a button to YouTube shorts that open the normal player instead of the shorts player.",
  "icons": {
    "48": "icons/NoShorts.svg",
    "96": "icons/NoShorts.svg"
  },
  "permissions": [
    "activeTab"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.youtube.com/*"
      ],
      "js": [
        "YTSS.js"
      ]
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{d2423ec5-6f29-47b1-a6e3-cb4f80a1fd37}"
    }
  }
}