您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Shows the number of reviews remaining for today
当前为
// ==UserScript== // @name remaining reviews for today // @version 1.0 // @description Shows the number of reviews remaining for today // @author nicael // @include *://*.stackexchange.com/review/* // @include *://*stackoverflow.com/review/* // @include *://*serverfault.com/review/* // @include *://*superuser.com/review/* // @include *://*askubuntu.com/review/* // @include *://*stackapps.com/review/* // @grant none // @namespace https://gf.qytechs.cn/users/9713 // ==/UserScript== setInterval(function(){if ($("stu").length === 0) { $("#badge-progress-count").prepend("<tmp style='display:none'></tmp><stu>...</stu> left today | "); } var sz = 0;$("tmp").load(location.href.replace(location.href.split("/")[5], "") + "/stats .review-stats-count:first", function () { sz = parseInt($("tmp > a").text().replace(/,/, "")); sz = sz > 1000 ? 40 : 20; $("tmp").remove(); $("stu").load(location.href.replace(location.href.split("/")[5], "") + "/stats .review-stats-count-current-user:first", function() { $("stu > td").removeClass("review-stats-count-current-user"); $("stu > td").css({ "display": "inline" }); $("stu").text((sz - parseInt($("stu").text())).toString()); }); });},1000);
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址