Redirect Shorts

Redirect Shorts

Redirects youtube shorts to the normal player

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Redirect Shorts",
  "version": "1.0",
  "manifest_version": 3,
  "description": "Redirects youtube shorts to the normal player",
  "icons": {
    "16": "16.png",
    "48": "48.png",
    "128": "128.png",
    "256": "256.png"
  },
  "host_permissions": [
    "*://www.youtube.com/shorts/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://www.youtube.com/*"
      ],
      "js": [
        "yt.js"
      ],
      "run_at": "document_start"
    }
  ]
}