Add list layout option for Subscriptions page#3707
Merged
ImprovedTube merged 1 commit intocode-charity:masterfrom Mar 16, 2026
Merged
Add list layout option for Subscriptions page#3707ImprovedTube merged 1 commit intocode-charity:masterfrom
ImprovedTube merged 1 commit intocode-charity:masterfrom
Conversation
Member
|
thank you! @Harshil7875 Related: ImprovedTube: Thumbnails per row : 1 |
|
Sounds awesome is the firefox extension also updated already? you only made mention of the chrome one. |
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Add list layout option for Subscriptions page
This PR adds an optional list layout for the YouTube Subscriptions feed.
Feature
When enabled, the subscriptions page switches from the default grid layout to a vertical list layout where:
Implementation
The implementation follows the existing ImprovedTube architecture using a settings toggle that activates CSS rules.
Changes:
general.js– adds thesubscriptions_list_layouttogglemessages.json– adds translation for "List layout on Subscriptions page"styles.css– converts the subscriptions grid into a single-column list layoutKey CSS behavior:
/feed/subscriptionsytd-rich-grid-rowusingdisplay: contentsTesting
chrome://extensions→ Load unpackedhttps://www.youtube.com/feed/subscriptionsThe feed should switch from grid tiles to a horizontal list layout.
Notes
There is currently one unrelated failing test (
test-large-playlist-fix.js) that referenceswindow.locationin the Node test environment. This appears to be a pre-existing issue and is unrelated to this change.Closes #3706