Greasy Fork is available in English.
自动完成学习检测
// ==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)
})();