// ==UserScript== // @name 直播挂机 // @namespace http://tampermonkey.net/ // @version 0.1 // @description try to take over the world! // @author 费德勒的名单 // @match https://live.acfun.cn/live/13317467 // @grant none // @downloadURL none // ==/UserScript== setInterval(function(){ var status=document.getElementsByClassName("tip"); if(status[0].innerText=="当前没有直播"){ window.location.reload(); pause(); } },600000); function pause(){ setTimeout(function() { document.getElementsByClassName("btn-span")[0].click(); },3000); };