YouTube Shorts Video Redirector

Redirects YouTube "Shorts" URLs to the original video.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "name": "YouTube Shorts To Video Redirector",
  "description": "Redirects YouTube \"Shorts\" URLs to the original video",
  "author": "Dane Rainbird",
  "manifest_version": 2,
  "version": "1.1",
  "homepage_url": "https://github.com/Datenyan/YouTubeShortsToVideoExtension",
  "icons": {
    "48": "icons/48.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.youtube.com/*"
      ],
      "js": [
        "ytshortstovideo.js"
      ]
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{eb95c819-84ac-4a92-9e62-65da37ac5f9e}"
    }
  }
}