NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name backBuy // @namespace // @version 0.5 // @description 返回购买 // @author 你们最爱的潘大大 // @match https://www.xiaoniu88.com/product/trade/new/buy?* // @grant none // @license MIT // ==/UserScript== //自动购买有风险,投资需警慎 var clock=setInterval(function(){ //判断是否404 if(document.querySelector('h1').innerText=='404 Not Found') window.history.go(-1); //检查页面是否刷完 var failtext=$('.trade-info .fail').text(); console.log(failtext); if($('.trade-info .success').length>0){ window.close(); }else if(failtext.indexOf('售罄')>0){ window.close(); }else if(failtext.indexOf('剩余金额')>0||failtext.indexOf('处理失败')>0||failtext=="处理失败"||failtext.indexOf('可用')>0||failtext.indexOf('您购买的产品暂时不能交易')>0){ console.log("开始回退"); window.history.go(-1); } },500);