zlacker

[return to "Someone at YouTube needs glasses"]
1. dccham+H9[view] [source] 2025-04-30 16:02:24
>>jayden+(OP)
I am BEGGING someone, anyone at Google/YouTube to let me permanently disable YouTube Shorts.

I HATE Short form video content and no matter how many times I select "show me less of this" I still get them front and center when I open the app or website.

◧◩
2. poloti+Xi[view] [source] 2025-04-30 16:38:09
>>dccham+H9
create a new folder, put two files there:

manifest.json

containing: { "manifest_version": 3, "name": "Hide YouTube Shorts", "version": "1.0", "description": "Hides YouTube Shorts", "content_scripts": [ { "matches": ["://www.youtube.com/"], "js": ["content.js"] } ] }

and a file named content.js

containing:

function hideShorts() { const shorts = document.querySelectorAll('ytd-rich-shelf-renderer[is-shorts]'); shorts.forEach(short => { short.style.display = 'none'; }); } hideShorts(); const observer = new MutationObserver(hideShorts); observer.observe(document.body, { childList: true, subtree: true });

add the contents of this folder as a chrome extension

[go to top]