四川农业大学自动点击暂停弹窗
// ==UserScript==
// @name 四川农业大学自动点击暂停弹窗
// @namespace https://bbs.tampermonkey.net.cn/
// @version 0.1.0
// @description 四川农业大学自动点击暂停弹窗
// @author superuser
// @match http://www.cnzx.info/Student/Interface/ChaKanKeJian.aspx
// ==/UserScript==
let time=setInterval(()=>{
if(document.querySelector("#message_close")!==null){
document.querySelector("#message_close").click();
}
},5000 //每隔5秒检测一次弹窗
)