Youtube SHORTS Disabler

Simply hides all Shorts from Youtube

2022-08-30 일자. 최신 버전을 확인하세요.

질문, 리뷰하거나, 이 스크립트를 신고하세요.
/* ==UserStyle==
@name           Youtube SHORTS Disabler
@namespace      https://greasyfork.org/en/users/153478-greasyshiny
@version        1.0
@description    Simply hides all Shorts from Youtube
@author         GreasyShiny

==/UserStyle== */
 
@-moz-document domain("youtube.com") {

/* SHORTS DISABLER. Possible via the :has selector, available in Chrome, starting with version 105. */

ytd-grid-video-renderer.ytd-grid-renderer:has(ytd-thumbnail-overlay-time-status-renderer[overlay-style=SHORTS]) {
    display:none !important
}
}