YouTube Shorts Redirect

Force YouTube to Redirect to Normal Video instead of Shorts

// ==UserScript==
// @name         YouTube Shorts Redirect
// @description  Force YouTube to Redirect to Normal Video instead of Shorts
// @author       636597
// @version      0.0.1
// @match        https://*.youtube.com/shorts/*
// @run-at       document-start
// @namespace https://gf.qytechs.cn/users/22755
// ==/UserScript==

// Example :
// Replace : https://www.youtube.com/shorts/on_c_Aujobc
// With : https://www.youtube.com/watch?v=on_c_Aujobc

let shorts_url = window.location.href;
let normal_url = shorts_url.replace( "shorts/" , "watch?v=" );
window.location.replace( normal_url );

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址