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

◧◩◪
3. insin+on[view] [source] 2025-04-30 16:55:48
>>poloti+Xi
Here's a more comprehensive BYO Shorts-hiding extension which uses CSS instead of running JavaScript every time an element is added or removed anywhere in the DOM, and also supports the mobile version (CSS selectors are extracted from the https://soitis.dev/control-panel-for-youtube Hide Shorts feature)

https://gist.github.com/insin/ef93c7d87b1f97f1c9411e6128d520...

[go to top]