自动播放|自动切换|自动答题|代刷vx:shuake345
// ==UserScript==
// @name 莞教通-自动换课-远程培训
// @namespace 代刷vx:shuake345
// @version 0.1.2
// @description 自动播放|自动切换|自动答题|代刷vx:shuake345
// @author You
// @match *://*.dgjy.net/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
// Your code here...
function bf(){
if(document.querySelector("#panelWindow_confirm").style[0]!=="display"){
document.querySelector("#panelWindow_confirm > div > p.t-center.pb-10.pt-20 > a.abtn-blue.submit").click()
}
if(document.querySelector("video")!==null){
document.querySelector("video").play()
}
}
setInterval(bf,5454)
})();