Greasy Fork is available in English.
国家开放大学自动刷课脚本
// ==UserScript==
// @name 国开大学刷课脚本—快速、精准
// @namespace https://blog.lvvv.cc
// @version 1.0
// @description 国家开放大学自动刷课脚本
// @author Juran
// @match *://*.ouchn.cn/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
var i
var href = location.href
if(href.indexOf("sectionid=")!=-1){
//获取当前课件
var current = document.getElementsByClassName("act")[0].innerText
//是文本的话直接跳到下一个课件
if(current){
for(i = 0; i < document.getElementsByTagName("li").length; i++){
if(document.getElementsByTagName("li")[i].className == "act"){
document.getElementsByTagName("li")[i+1].click()
break;
}
}
}
}
})();