// ==UserScript==
// @name 江西干部学院自动刷课脚本
// @namespace 江西干部学院自动刷课脚本
// @match https://www.jxgbwlxy.gov.cn/student/course_my*.do*
// @match https://www.jxgbwlxy.gov.cn:8443/course/*/index.htm
// @grant none
// @version 2.1
// @AuThor You
// @license MIT
// @description 把页面挂在“我的必修课”或“我的选修课”即可,可自动完成相应页面的课程学习
// @downloadURL https://update.greasyfork.org/scripts/517798/%E6%B1%9F%E8%A5%BF%E5%B9%B2%E9%83%A8%E5%AD%A6%E9%99%A2%E8%87%AA%E5%8A%A8%E5%88%B7%E8%AF%BE%E8%84%9A%E6%9C%AC.user.js
// @updateURL https://update.greasyfork.org/scripts/517798/%E6%B1%9F%E8%A5%BF%E5%B9%B2%E9%83%A8%E5%AD%A6%E9%99%A2%E8%87%AA%E5%8A%A8%E5%88%B7%E8%AF%BE%E8%84%9A%E6%9C%AC.meta.js
// ==/UserScript==
(function () {
if (window.location.href.indexOf("https://www.jxgbwlxy.gov.cn/student/course_my") !== -1) {
setInterval(() => {
location.reload();
}, 5 *60* 1000);
setInterval(() => {
document.querySelector('div.rt.btn_group > input[type=button]').click()
}, 2 * 60* 1000);
} else if (window.location.href.indexOf("https://www.jxgbwlxy.gov.cn:8443/course/") !== -1) {
setInterval(() => {
if (document.querySelector('div.continue').style.display !== 'none') {
const video = document.getElementById("course_player");
video.muted = true;
video.playbackRate = 2;
document.querySelector('div.user_choise').click();
}
const video = document.getElementById("course_player");
video.muted = true;
video.playbackRate = 2;
document.getElementById("course_player").play();
}, 5000);
}
})();