ニコニコ動画の「いいね数」と「再生数」を非表示にするスタイルです。ホバーで表示します。
ニコニコ動画 いいね数・再生数 非表示 by buhoho
Details
Authorbuhoho
LicenseNo License
Categorynicovideo.jp
Created
Updated
Size908 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name ニコニコ動画 いいね数・再生数 非表示
@version 20240913.1.0
@namespace userstyles.world/user/buhoho
@description ニコニコ動画の「いいね数」と「再生数」を非表示にするスタイルです。視覚的に不要な情報を隠したい方や、シンプルなレイアウトを好む方におすすめです。
@license MIT
@preprocessor default
==/UserStyle== */
@-moz-document domain("nicovideo.jp") {
div[class^="grid-area_"][class*="meta"] > div > div > h1+div > time+div > svg+span ,
button[data-element-name="like"] span:last-child {
color: black !important;
background-color: black;
}
div[class^="grid-area_"][class*="meta"] > div > div > h1+div > time+div > svg+span:hover ,
button[data-element-name="like"] span:last-child:hover {
color: inherit !important;
background-color: inherit;
}
}