威海专技学习辅助,自动跳过答题窗口(适用于 山东大众云学教育平台)
// ==UserScript==
// @name 威海专技学习辅助
// @namespace http://tampermonkey.net/
// @version 0.1
// @description 威海专技学习辅助,自动跳过答题窗口(适用于 山东大众云学教育平台)
// @author WHJZW
// @match *://*.yxlearning.com/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
// Your code here...
clearInterval(myTimer);
function enterCourse() {
var a = document.getElementsByTagName("BUTTON");
for (var i = 0; i < a.length; i++) {
if(a[i].innerHTML=="跳过")
a[i].click();
}
}
var myTimer = setInterval(enterCourse, 3000);
})();