您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Automatically reloads the watchlist/unread posts
当前为
// ==UserScript== // @name Bitcointalk.org Autoreload // @name:de Bitcointalk.org Autoreload // @namespace https://gf.qytechs.cn/en/scripts/19125-bitcointalk-org-autoreload/ // @version 0.63.3 // @iconURL // @description Automatically reloads the watchlist/unread posts // @description:de Automatischer reload der post seiten bei bitcointalk // @author LsHallo // @match https://bitcointalk.org/index.php?action=watchlist // @match https://bitcointalk.org/index.php?action=unreadreplies // ==/UserScript== load(); function load() { time = ~~(Math.random()*75953+105896); console.log("Idle time: " + ~~(time/1000) + " seconds (" + ((time/1000).toFixed(0)/60).toFixed(2)+" minutes)"); setTimeout('location.reload()',time); d = new Date(); if(d.getHours() < 10) Hours = "0"+d.getHours(); else Hours = d.getHours(); if(d.getMinutes() < 10) Minutes = "0"+d.getMinutes(); else Minutes = d.getMinutes(); if(d.getSeconds() < 10) Seconds = "0"+d.getSeconds(); else Seconds = d.getSeconds(); console.log("Last reload: " + Hours + ":" + Minutes + ":" + Seconds); var x = document.getElementsByClassName("windowbg").length; if(x > 0) { document.title = (x/3) + " Unread Posts"; } }
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址