您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Shows an accurate count of replies, retweets, and likes for the currently selected tweet.
当前为
/* ==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或关注我们的公众号极客氢云获取最新地址