Greasy Fork is available in English.

miller

mac

이 스크립트는 직접 설치해서 쓰는 게 아닙니다. 다른 스크립트가 메타 명령 // @require https://update.greasyfork.org/scripts/437476/1001491/miller.js(으)로 포함하여 쓰는 라이브러리입니다.

질문, 리뷰하거나, 이 스크립트를 신고하세요.
개발자
Miller Qiu
버전
0.0.1.20211223102026
생성
2021-12-23
갱신
2021-12-23
라이선스
없음

(function() {
'use strict';
//console.log('ceshi')
// Your code here...
function jxbf(){
if(document.getElementsByClassName('btn-ok btn').length){
document.getElementsByClassName('btn-ok btn')[0].click()
console.log('点击成功')
};
if(document.getElementsByClassName('btn')[0].innerText=="继续学习"){
window.close()
}
};
setInterval(jxbf, 15000);
//点开未完成-10分钟一次
function wwc(){
let x = document.getElementsByClassName('ms-train-state')
for(var i = 0;i < x.length;i++ ){
if(x[i].innerText=="未完成"){
console.log(i)
document.getElementsByClassName('m-bottom mb title-row pointer title-font')[i].click()
location.reload();
break;}
};
};
setInterval(wwc, 600000);
})();