動画視聴ページの気が散る要素を隠す
動画ページのおすすめ欄を隠す by kozv
Details
Authorkozv
LicenseNo License
Categorynicovideo
Created
Updated
Size894 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
3つのUserStyleを併用してます
ニコニコの見過ぎを防ぐ
https://userstyles.world/style/14344/default-slug
視聴ページのコメントリストを消す
https://userstyles.world/style/19174/default-slug
動画ページのおすすめ欄を隠す
https://userstyles.world/style/18555/default-slug
Unhook テーマ
nicovideo.jp
ニコニコ
ニコニコ動画
Source code
/* ==UserStyle==
@name ニコニコ おすすめ欄を消す
@namespace nicovideo.jp
@version 1.1.0
@description おすすめ欄で気が散るので隠す。ニコニコ(eR) 新視聴ページ unhook distraction free
@author vlzs
==/UserStyle== */
@-moz-document url-prefix("https://www.nicovideo.jp/watch/") {
/* 動画視聴ページ */
/* おすすめ欄を非表示にする */
[id^="tabs::r"]{ display: none; }
/* 動画説明欄の下のニコニ広告された動画の欄を非表示にする */
.grid-area_\[bottom\] section:nth-of-type(2) { display: none; }
/* 動画説明欄の下のシリーズのアイコンを非表示にする */
img.w_thumbnail\.m.asp_16\:9.bdr_m.obj-f_contain.bg-c_layer\.surfaceHighEmBlack { display: none; }
/* シリーズタイトルの体裁を整える*/
a.fw_bold.lc_2.fs_l.as_flex-start { padding-bottom: 9px;}
}