Greasy Fork is available in English.
Makes youtube shorts pages usable.
// ==UserScript== // @name Shorts fixer // @namespace Violentmonkey Scripts // @match *://*youtube.com/shorts/* // @grant none // @version 1.0 // @author Braden // @license Public Domain // @description Makes youtube shorts pages usable. // ==/UserScript== const video_id = location.pathname.split("/")[2]; location.href = `https://youtube.com/watch?v=${video_id}`;