YouTube Disable Shorts

Converts YouTube Shorts URL to normal URL

// ==UserScript==
// @name         YouTube Disable Shorts
// @namespace    https://www.youtube.com/
// @version      0.1
// @description  Converts YouTube Shorts URL to normal URL
// @author       You
// @match        https://www.youtube.com/shorts/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    window.location.href = window.location.href.replace('shorts/', 'watch?v=');
})();