Remove SHORTS from hashtag search.
Youtube remove SHORTS from hashtag search by umi
Details
Authorumi
LicenseCC Zero
Categoryyoutube.com
Created
Updated
Size891 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Remove SHORTS from hashtag search.
for : https://www.youtube.com/hashtag/xxxx
Source code
/* ==UserStyle==
@name Remove SHORTS from hashtag search
@namespace github.com/openstyles/stylus
@version 1.0.0
@description `Remove SHORTS from hashtag search`
@author umi
==/UserStyle== */
@-moz-document regexp("^https://www.youtube.com/hashtag/[^/]+$") {
/* ここにコードを挿入... */
ytd-rich-item-renderer {
float: left;
width: 360px;
}
ytd-rich-item-renderer:has( ytd-thumbnail-overlay-time-status-renderer[overlay-style="SHORTS"]){
display: none;
}
ytd-rich-grid-row {
width: auto;
display: inline-block;
}
#contents.ytd-rich-grid-row {
display: inline-block;
float: left;
width: auto;
}
ytd-rich-grid-row #contents.ytd-rich-grid-row {
width: auto;
display: inline;
margin: 0;
}
}