Restore the list view for the YouTube Subscriptions page faithful to the original layout, inline metadata, video descriptions, and a grid/list toggle placed exactly where it used to be.
- List-style Subscriptions layout
- Grid / List toggle on the Subscriptions page
- Lazy-loaded video descriptions
- Dark and light mode compatible
- No external dependencies
All settings are configurable via the CFG object at the top of the script.
defaultView: "grid" // or "list"If you dont like the centering you can change the maxWidth of the list in the config:
list: {
maxWidth: "90%",
}descFetch: {
enabled: true,
maxTotalFetchesPerNav: 60,
maxConcurrent: 1,
sentenceCount: 2,
maxChars: 260,
},- DOM patching via
MutationObserver - Lazy loading with
IntersectionObserver - Request throttling and caching
- Automatic cleanup when leaving the Subscriptions page
This script only runs on:
https://www.youtube.com/feed/subscriptions
Other YouTube pages remain untouched.
- Install Tampermonkey or Violentmonkey
- Install the script from Greasy Fork
- Open the YouTube Subscriptions page
- Use the toggle to switch between Grid and List
MIT