Redirect YouTube Shorts to YouTube

Redirect YouTube Shorts to YouTube

Redirects YouTube Shorts to YouTube by changing url from "https://www.youtube.com/shorts/<video-id>" to "https://www.youtube.com/watch?v=<video-id>".

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Redirect YouTube Shorts to YouTube",
  "version": "1.0",
  "description": "Redirect YouTube Shorts to YouTube",
  "icons": {
    "48": "icons/arrow.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://www.youtube.com/shorts/*"
      ],
      "js": [
        "redirect.js"
      ]
    }
  ]
}