New script - gzteacher.com

2021/10/27 下午2:59:30

// ==UserScript==
// @name        New script - gzteacher.com
// @namespace   Violentmonkey Scripts
// @match       http://study.gzteacher.com/study/study
// @grant       none
// @version     1.0
// @author      -
// @description 2021/10/27 下午2:59:30
// ==/UserScript==

function checkNext(){
  console.log("checkNext...");
  var aa = document.getElementsByClassName("ant-modal-content");
  if(aa && aa.length>0){
    if(aa[0].innerText.indexOf('已完成')>0){    
      // 下一个
      console.log("playNext...");
      document.getElementsByClassName("ant-btn")[2].click();
    }
  }
}

 
console.log("auto...");
setInterval(checkNext, 5000);

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址