Files
stuff/yt-no-shorts.js

17 lines
466 B
JavaScript
Raw Normal View History

2026-04-17 11:39:29 +02:00
// ==UserScript==
// @name Remove YT Shorts
// @version 1.0.0
// @description Removes YT Shorts
// @author phga
// @match *://*.youtube.com/*
// @exclude *://*.youtube.com/subscribe_embed?*
// ==/UserScript==
const removeShorts = () => {
const shorts = [...document.querySelectorAll('[is-shorts],.ytd-reel-shelf-renderer')];
if (shorts.length > 0) {
shorts.forEach(e => e.remove());
}
}
setInterval(removeShorts, 2000);