miller

mac

Ten skrypt nie powinien być instalowany bezpośrednio. Jest to biblioteka dla innych skyptów do włączenia dyrektywą meta // @require https://update.greasyfork.org/scripts/437476/1001491/miller.js

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

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

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

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

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

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.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

Autor
Miller Qiu
Wersja
0.0.1.20211223102026
Utworzono
23-12-2021
Zaktualizowano
23-12-2021
Rozmiar
837 bajtów
Licencja
Brak licencji

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