Last active
February 12, 2026 17:41
-
-
Save DominoPivot/e04a42b59f81688d33b631549774e2ae to your computer and use it in GitHub Desktop.
Bookmarklet to display Youtube subscriptions in a list instead of a grid
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| javascript:void function(){ | |
| const s=new CSSStyleSheet; | |
| s.replaceSync(` | |
| .ytd-rich-grid-renderer { --ytd-rich-grid-items-per-row: 1; align-items: start; } | |
| ytd-rich-item-renderer { margin-inline: .5em !important; } | |
| ytd-rich-section-renderer:has(.shortsLockupViewModelHost) { display:none; } | |
| ytd-reel-shelf-renderer { display: none; } | |
| .yt-lockup-view-model { flex-direction: row; } | |
| .yt-lockup-view-model__content-image { flex-direction: column; width: 16em; margin-right: 1em; } | |
| `); | |
| document.adoptedStyleSheets.push(s) | |
| }(); |
Author
Author
Update: Shorts are now also hidden from the recommendations besides a video. End the addiction.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Update:
Note that this was only tested in English on a 1080p screen with larger fonts. This code snippet is provided with zero warranties, use it at your own peril.