Youtube - redirect from shorts to video

Redirect automatically from youtube-shorts video to normal youtube video

// ==UserScript==
// @name         Youtube - redirect from shorts to video
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Redirect automatically from youtube-shorts video to normal youtube video
// @author       You
// @match        https://www.youtube.com/shorts/*
// @icon         data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant        none
// @license MIT
// ==/UserScript==

(function() {
    'use strict';
    const matches = location.href.match(/shorts\/(.*?)$/);
    if (matches[1]) {
        location.href = 'https://www.youtube.com/watch?v='+matches[1];
    }
})();