返回首頁 

Greasy Fork is available in English.

Disable YouTube Shorts

Disables YouTube Shorts player on the website by redirecting to the standard player.


安装此脚本?
// ==UserScript==// @name     Disable YouTube Shorts// @description Disables YouTube Shorts player on the website by redirecting to the standard player.// @version  1.0// @grant    none// @match *://www.youtube.com/shorts/*// @run-at document-start// @namespace https://greasyfork.org/users/237565// ==/UserScript==window.location.href = window.location.href.replace("shorts/", "watch?v=")