視聴ページのコメントリストを消します
視聴ページのコメントリストを消す by kozv
Details
Authorkozv
LicenseNo License
Categoryuserstyle
Created
Updated
Size1.5 kB
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 https://github.com/vlzs
@version 1.1.0
@description A new userstyle
@author Me
==/UserStyle== */
@-moz-document url-prefix("https://www.nicovideo.jp/watch/") {
/* ニコニコ動画の視聴ページのコメントリストを消す */
[data-scope="tabs"] {
display: none;
}
/* コメントリストを非表示にする*/
.grid-area_\[sidebar\] {
display: none;
}
/* 動画の画面を横いっぱいに広げる(Theater Modeにする)*/
body section {
--watch-player-width-by-browser: calc(100vw - var(--watch-layout-gap-width) * 3 - var(--scrollbar-width)) !important;
}
/* body section {
--watch-player-possible-width: calc(min(var(--watch-player-width-by-browser), var(--watch-player-height-by-browser) * )) !important;
}
*/
/*up to nextのタブタイトルを消す */
.PlayerPanelContainer-tabItem.current {
display: none;
}
/*up to next の動画たちを消す*/
.VideoListPanelContainer {
display: none;
}
}
@-moz-document url-prefix("https://dic.nicovideo.jp/") {
/* ニコニコ大百科のコメント欄を消す */
DIV[class="__uz__widget"],
.ad-bannar-maincolumn-top,
.st-bbs-contents,
.st-bbs_adContents,
.st-bbs,
.a-banner_space-bottom,
/* #right-column, */
#nicoad_article_pc,
#recommended_contents,
div:has(>h2.st-box_heading.st-box_heading-news)
{display: none;}
/* body {
filter: grayscale(100);
} */
}