NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name reload // @namespace http://tampermonkey.net/ // @version 0.4 // @description 刷新账号页面 // @author 你们最爱的潘大大 // @match https://www.xiaoniu88.com/MyAccount/index?reload // @grant none // @license MIT // ==/UserScript== //自动购买有风险,投资需警慎 var reloadTime=240; setInterval(function(){ //判断500 if(document.getElementsByClassName('bg500').length>0){ location.reload(); }else{ console.log("通过500检测") } if(reloadTime%60==0){ console.log(reloadTime/60+"分钟后刷新页面") } reloadTime--; if(reloadTime==0){ location.reload(); } },1000)