Greasy Fork is available in English.

Youtube Shorts Custom Page to Normal Video Page

A simple redirect scripts to change the terrible shorts interface to the one for 'normal' videos

Ekde 2022/08/27. Vidu La ĝisdata versio.

// ==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.17
// @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';

    setInterval(function() {
      if (window.location.toString().includes('/shorts/')) {
        window.location = window.location.toString().replace('shorts/', '/watch?v=')
      }
    }, 2500);

})();