A simple redirect scripts to change the terrible shorts interface to the one for 'normal' videos
当前为
// ==UserScript==
// @name Youtube Shorts Custom Page to Normal Video Page
// @namespace https://github.com/marcodallagatta/userscripts/raw/main/youtube-shorts-to-normal
// @version 2022.08.27.16.17
// @description A simple redirect scripts to change the terrible shorts interface to the one for 'normal' videos
// @author Marco Dalla Gatta
// @license MIT
// @match https://www.youtube.com/*
// @icon https://icons.duckduckgo.com/ip2/youtube.com.ico
// @grant none
// ==/UserScript==
(function() {
'use strict';
setInterval(function() {
if (window.location.toString().includes('/shorts/')) {
window.location = window.location.toString().replace('shorts/', '/watch?v=')
}
}, 2500);
})();