Earlier quoted context omitted.
I wrote a userscript that turns the links into a /v/ link. The whole "shorts" concept is sort of stupid. I mean the videos are fine, let people make whatever sort of video they want. the front page promotion is unwanted. But the thing I actively despise is the scrolling auto play interface. However youtube will play the video with a sane interface when the /short/ link is modified into /v/ Or I should say, I nearly w…
My tampermonkey script (credit to the original author, I forget where I got it from): // ==UserScript== // @name Youtube shorts redirect // @namespace http://tampermonkey.net/ // @version 0.3 // @description Youtube shorts > watch redirect // @author // @match *://*.youtube.com/* // @icon https://www.google.com/s2/favicons?domain=youtube.com // @grant none // @run-at document-start // @license GNU GPLv2 // ==/UserScr…
// ==UserScript==
// @name eat my shorts
// @namespace http://tampermonkey.net/
// @version 0.1
// @description change links to youtube shorts to reguler site
// @author jrs
// @match https://www.youtube.com/*
// @icon none
// @grant none
// ==/UserScript==
(function() {
'use strict';
function eat_shorts() {
const root = document;
const shorts_re = /^\/shorts\/(.*)/;
const ae = root.getElementsByTagName("a");
for (var i = 0; i