Warning: fopen(/www/sites/greasyfork.cloud/index/store/temp/bcf494099ad40433c440eb9ec02f4628.html): failed to open stream: No space left on device in /www/sites/greasyfork.cloud/index/scriptsControl.php on line 127
师学通 - 源代码

Greasy Fork

师学通

自动完成学习检测

// ==UserScript==
// @name         师学通
// @namespace    http://cn202141047.stu.teacher.com.cn
// @version      0.2
// @description  自动完成学习检测
// @author       星星课
// @match        http://cn202141047.stu.teacher.com.cn/course/intoSelectCourseUrlVideo*
// @match        http://cn202141047.stu.teacher.com.cn/course/intoSelectCourseVideo*
// @icon         https://obohe.com/i/2021/08/18/10kn92x.ico
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    setInterval(function(){
        if ($( "div:contains('验证信息')" ).length>1){
            console.log("检测到学习验证");
            $("#code").attr("value",$("#codespan").text());
            $( "a:contains('提交')")[0].click();
        }},3e3)
})();