各所で動画に似せて表示される広告を非表示にします
YouTube 広告枠の非表示化 by hori68
Details
Authorhori68
LicenseCC-BY-4.0
CategoryYouTube
Created
Updated
Size1.4 kB
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
ホーム、検索結果、動画再生ページで動画のサムネに似せて表示される広告を非表示にします
Source code
/* ==UserStyle==
@name YouTube 広告枠の非表示化
@namespace userstyles.world/user/hori68
@version 1.0
@description 各所で動画に似せて表示される広告を非表示にします
@author hori68
@license CC-BY-4.0
@preprocessor stylus
@var select video "動画広告の映像" ["ON:表示", "OFF:非表示"]
==/UserStyle== */
@-moz-document domain("youtube.com") {
i = !important //
/* ホーム */
ytd-browse[page-subtype="home"]{
div#contents ytd-rich-item-renderer:has(div#content ytd-ad-slot-renderer){
display: none i;
}
div#contents div#content ytd-ad-slot-renderer{ /* Firefox 用 */
display: none i;
}
div#masthead-ad{ /* 最上部にデカデカと表示されるやつ */
display: none i;
}
}
/* 検索 */
ytd-search{
ytd-search-pyv-renderer{
display: none i;
}
ytd-ad-slot-renderer{
display: none i;
}
}
/* 動画再生ページ */
ytd-watch-flexy{
div#secondary div#related{
div#player-ads, ytd-promoted-sparkles-web-renderer{
display: none i;
}
}
if video == "OFF"{
div.html5-video-player.ad-showing .video-stream{
padding: 4000px i;
}
}
}
}