Skip to content

Instantly share code, notes, and snippets.

@j-o-sh
j-o-sh / yt-minimal-window.css
Created October 22, 2025 09:38
User style snippet to display a YT video in a minimalistic full-window stream
@-moz-document url-prefix("https://www.youtube.com/watch") {
@media (max-width: 850px) and (max-height: 600px) {
:not(:has(ytd-player), ytd-player, ytd-player *) {
visibility: hidden;
}
:has(ytd-player),
ytd-player {
height: 100vh;
width: 100vw;
@j-o-sh
j-o-sh / x.js
Created July 4, 2023 10:49
Remove YT shorts from subscriptions
// shorts be gone!
[...document.querySelectorAll('[aria-label="Shorts"]')]
.map(x => x.closest('.ytd-rich-item-renderer'))
.filter(x => !!x)
.forEach(x => x.remove())