您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
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.25 // @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'; function redir() { if (window.location.toString().includes('/shorts/')) { window.location = window.location.toString().replace('shorts/', '/watch?v=') } } setInterval(function() { redir(); }, 2500); redir(); })();