Twitter - Bring the Reply Counter Back

Shows an accurate count of replies, retweets, and likes for the currently selected tweet.

目前为 2020-07-20 提交的版本。查看 最新版本

/* ==UserStyle==
@name         Twitter - Bring the Reply Counter Back
@description  Shows an accurate count of replies, retweets, and likes for the currently selected tweet.
@namespace    lednerg
@version      20.7.20
@author       lednerg
@license      unlicense
@preprocessor stylus

@var	select	fontColor	"Your Twitter color scheme (to match the font color)" {
	"Default*": "default",
	"Dim": "dim",
	"Lights out": "lightsOut"
}
@var	checkbox	customCheckbox	"Use custom font color instead"	0
@var	color	customColor	"Custom font color"	#ba9145
==/UserStyle== */

@-moz-document domain("twitter.com") {

/* IGNORE THE SYNTAX ERRORS YOU MAY BE SEEING ON THE LEFT THERE */

	if not customCheckbox {
		if fontColor == "default" {
			.css-1dbjc4n.r-1oszu61.r-1kfrmmb.r-1efd50x.r-5kkj8d.r-18u37iz.r-ahm1il.r-a2tzq0::after {
				color: #657786 !important;
			}
		}
		if fontColor == "dim" {
			.css-1dbjc4n.r-1oszu61.r-1kfrmmb.r-1efd50x.r-5kkj8d.r-18u37iz.r-ahm1il.r-a2tzq0::after {
				color: #8899a6 !important;
			}
		}
		if fontColor == "lightsOut" {
			.css-1dbjc4n.r-1oszu61.r-1kfrmmb.r-1efd50x.r-5kkj8d.r-18u37iz.r-ahm1il.r-a2tzq0::after {
				color: #6e767d !important;
			}
		}
	}

	if customCheckbox {
		.css-1dbjc4n.r-1oszu61.r-1kfrmmb.r-1efd50x.r-5kkj8d.r-18u37iz.r-ahm1il.r-a2tzq0::after {
			color: customColor !important;
		}
	}

	.css-1dbjc4n.r-1oszu61.r-1kfrmmb.r-1efd50x.r-5kkj8d.r-18u37iz.r-ahm1il.r-a2tzq0::after {
		font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", sans-serif !important;
		position: absolute !important;
		top: -54% !important;
		right: 0% !important;
		-ms-transform: translateY(-50%) !important;
		transform: translateY(-50%) !important;
		content: " (" attr(aria-label) ")";
	}

}

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址