河南建造师安管人员继续教育-刷课-自动播放

自动提交和播放下一节

Auteur
henanjianzhu
Installations quotidiennes
0
Installations (total)
583
Notes
1 0 0
Version
0.3
Créé
26/09/2019
Mis à jour
30/09/2019
Licence
N/A
S'applique à

// ==UserScript==
// @name 河南二级建造师继续教育-刷课-自动播放
// @namespace https://www.tuziang.com/combat/2247.html
// @version 0.3
// @description 自动提交和播放下一节
// @author tuziang
// @match *://henanslr.ok99ok99.com/*
// @grant none
// ==/UserScript==

(function () {
'use strict';
setInterval(function () {
var right = document.getElementById("rightiframe").contentWindow.document
var left = document.getElementById("leftiframe").contentWindow.document
if(right.getElementById("SaveStudyRecord").disabled !== true){
right.getElementById("SaveStudyRecord").click()
var lists = left.getElementsByClassName("nofinished")
lists[0].getElementsByTagName("a")[0].click()
}
},2000)
})();