モバイルサイト用です。ショートが極力目に入らないようにします。
YouTube(M) ショート断ち by hori68
Details
Authorhori68
LicenseCC-BY-4.0
CategoryYouTube
Created
Updated
Size1.9 kB
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
ショートで時間を浪費して困ってる人がたまにこういうことを願うので作ってみました。でも、設定解除すれば見れてしまうのに、意味があるんでしょうか?
Source code
/* ==UserStyle==
@name YouTube(M) ショート断ち
@namespace userstyles.world/user/hori68
@version 1.3
@description モバイルサイト用です。ショートが極力目に入らないようにします。
@author hori68
@license CC-BY-4.0
@preprocessor stylus
==/UserStyle== */
@-moz-document domain("m.youtube.com") {
i = !important //
/* 下段ショートボタン */
ytm-pivot-bar-item-renderer:has(div.pivot-shorts){
display:none i;
}
/* ホーム ショートフィード */
ytm-browse ytm-rich-section-renderer:has(a[href^="/shorts/"]){
display:none i;
}
/* 検索 ショートフィード */
ytm-search ytm-reel-shelf-renderer:has(a[href^="/shorts/"]){
display:none i;
}
/* 検索 単独ショート */
ytm-search ytm-video-with-context-renderer:has(ytm-media-item.big-shorts-singleton){
display:none i
}
/* チャンネルページ ショートタブ */
ytm-browse div[is-channel="true"] yt-tab-shape[tab-title="ショート"]{
display:none i;
}
ytm-browse div[is-channel="true"] yt-tab-shape[tab-title="Shorts"]{
display:none i;
}
/* チャンネルページ ショートセクション */
ytm-browse div[is-channel="true"]~div ytm-item-section-renderer:has(a[href^="/shorts/"]){
display:none i;
}
/* 登録チャンネルページ */
ytm-browse ytm-channel-list-sub-menu-renderer~lazy-list ytm-item-section-renderer:has(a[href^="/shorts/"]){
display:none i;
}
/* プレーヤー */
div#player-shorts-container shorts-video{
display:none i
}
/* 再生リスト */
ytm-browse ytm-playlist-header-renderer-v2~ytm-single-column-browse-results-renderer ytm-rich-grid-renderer.is-shorts{
display:none i;
}
}