Created
June 7, 2023 15:24
-
-
Save gilsondev/38be3cdd400538e54f69cd66d74b011d to your computer and use it in GitHub Desktop.
Arc Boost to hide Youtube Shorts
This file contains 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
/* | |
* Remove shorts in subscriptions | |
* Source: https://arcboosts.com/boosts/48/no-youtube-shorts-in-subscriptions | |
*/ | |
.ytd-rich-grid-row:has([aria-label="Shorts"]):not(#items) {display: none !important} | |
/* Remove Menu item "Shorts" in sidebar */ | |
.ytd-guide-section-renderer [title="Shorts"] {display: none !important} | |
/* Remove section "Shorts" in Youtube homepage */ | |
#content [is-shorts=""] div:has(#rich-shelf-header) {display: none !important} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment