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
}
}