miller

mac

Dieses Skript sollte nicht direkt installiert werden. Es handelt sich hier um eine Bibliothek für andere Skripte, welche über folgenden Befehl in den Metadaten eines Skriptes eingebunden wird // @require https://update.greasyfork.org/scripts/437476/1001491/miller.js

Du musst eine Erweiterung wie Tampermonkey, Greasemonkey oder Violentmonkey installieren, um dieses Skript zu installieren.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

Sie müssten eine Skript Manager Erweiterung installieren damit sie dieses Skript installieren können

(Ich habe schon ein Skript Manager, Lass mich es installieren!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

Autor
Miller Qiu
Version
0.0.1.20211223102026
Erstellt am
23.12.2021
Letzte Aktualisierung
23.12.2021
Größe
837 Bytes
Lizenz
n/a

(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);
})();