Counts the visible comments because clearly often comments are shadow banned. No real purpose but it's kinda interesting to see, i guess.
Youtube visible comment counter by pluff
Details
Authorpluff
LicenseNo License
Categoryyoutube.com
Created
Updated
Size900 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 Youtube visible comment counter
@version 1.0.0
@namespace github.com/openstyles/stylus
@description Counts the visible comments because clearly often comments are shadow banned. No real purpose but it's kinda interesting to see, i guess.
@author toppits - pluff
@license MIT
@var range fsa "font size" [0.7, 0.3, 3, 0.1, "em"]
@advanced color f_color "Font Color" #fafffe
@advanced color b_color "backgroundColor" #000101
==/UserStyle== */
@-moz-document domain("youtube.com")
{
#contents
{
counter-reset: section;
}
#contents #header-author.ytd-comment-renderer #author-text::before
{
counter-increment: section;
content: counters(section, " . ") " .";
padding: 1px 8px;
margin-right: .2em;
font-size: /*[[fsa]]*/;
color: /*[[f_color]]*/;
background: /*[[b_color]]*/;
}
}