Youtube-shorts block Youtube-shorts block

Fun
Version: 1.4.0
Last Update: 2023-03-12

User Reviews


avatar J G
2022-05-08

An absolute requirement. Been waiting for something like this. Thank you so much.

avatar Clay Hitchcock
2022-05-07

chad developer. TYSM

avatar Muf
2022-05-07

Even though the shorts blocking feature is marked as "unstable", it works perfectly so far.

avatar Felix Wong
2022-05-07

useful and simple

avatar Matthieu Mi
2022-05-06

Thanks, I couldn't take anymore of that trash.
And manually replacing /shorts/ by /v/ just didn't cut it.

avatar YOTGAMING
2022-05-06

Works like a charm. I hate YouTube shorts with a burning passion, so to see it gone from my YouTube feed is like a dream come true. Thanks!

avatar First name Last name
2022-05-03

thank you, it was getting annoying copy/pasting the video ID every time i wanted to watch a short video normally

avatar R N
2022-05-02

thank you thank you thank you!!!
i hate yt shorts and this extension is a savior!!!!!
who even thought of yt shorts?!?

avatar János József Nagy
2022-05-02

I got bored of rewriting the URLs manually each time, the extension does the job fine!

avatar Mirac '
2022-05-01

tampermonkey version:

// ==UserScript==
// @name Youtube Shorts In Regular Player
// @namespace https://github.com/AltonV
// @version 0.1
// @description Changes links to youtube shorts to open in the regular player instead
// @author AltonV
// @match *://*.youtube.com/*
// @updateURL https://gist.githubusercontent.com/AltonV/a9ac62e5f42e0a895185643941ea289a/raw/45846b86ea5f8d290f6bd012d16f01ba81f56ea5/youtube-shorts-in-regular-player.js
// @downloadURL https://gist.githubusercontent.com/AltonV/a9ac62e5f42e0a895185643941ea289a/raw/45846b86ea5f8d290f6bd012d16f01ba81f56ea5/youtube-shorts-in-regular-player.js
// @icon data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAMAAACdt4HsAAAAe1BMVEVHcEymAACFhYXkAAC/AADyAADTAAD/////Ly//AwPhBgbxAAAmAAD5AADxAADJAADVBATaDw+BAADTAgL/LCzWAADhCAjfGhr/KCjnAAD0AADOAAD/AAD/////9/f/7+//e3v/UFD/vr7/qan/PT3/39//kJD/Kir/zc0Q/tNHAAAAHHRSTlMALQOZg+HKD8j9S+wQ88ttWX4fO6+0imqYqbniBuNvagAAAZNJREFUWIXtlt1ygjAQhTdEaBOSQEQBNVGrrfX9n7ABRlvR/EhueuGZYRgg52MTluwCvPTSv1LCEKpo00jZtovF4n0sc69ta9k0Ja0QYsnIPpdrkeZEKdUdv6erhmvSn3ieCoHpXztWT4uotLz4Wfq8v1cz+FE+0a/UEMNqsl/l/QJM9w8hFDEAHDcDpQSDRMQA0jnMp37DXhxFAggFxG0P9+N0fqQSKuuw7TmAUEBpB2h99CJqRxoYgD5/eADYAzBBfDoBK5h5AHq3dwGWfoDWX455BAH09mgdlAUBHPMIBWh9eLyYGdSBgN3p4SARGoElgNAp2L9DGOD0bR0UAjjY7V0e+FLZnYhegEkh4vwjMZQugCuJLwBqfYEv+l4SKuuWdvC+XnU7UkRl7FTG7soVsKjCkiOAdUwApjKBjIlgbYprFQOQXYMQs4qsA9Dp/npokiYT6kubVk5LpqvfSIo8pBZfRbjA7KZVZYgWM7zMsk3O+V2f2nsI4TzdZNkSzwpa3drHfXOSvN3J3HR32y+9FKEfw10c+oXU9S4AAAAASUVORK5CYII=
// @grant none
// ==/UserScript==


'use strict';

function replaceShortsUrl()
if (location.pathname.startsWith("/shorts/"))
window.location.replace(location.pathname.replace("/shorts/", "/watch?v="));



document.addEventListener('yt-navigate-start', replaceShortsUrl);

replaceShortsUrl();

Related Extensions