17 lines
466 B
JavaScript
17 lines
466 B
JavaScript
|
|
// ==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);
|