Greasy Fork is available in English.

安徽继续教育在线刷课

Lazy lady's joke.

// ==UserScript==
// @name         安徽继续教育在线刷课
// @namespace    http://tampermonkey.net/
// @version      2024-03-04
// @description  Lazy lady's joke.
// @author       Cathryn
// @match        https://main.ahjxjy.cn/study/html/content/studying/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=ahjxjy.cn
// @grant        none
// @license      MIT
// ==/UserScript==

setInterval (function(){
    if(document.getElementsByClassName('jw-progress jw-reset')[0].style.width > '99%') {
        setTimeout(function(){
            document.getElementsByClassName('btn btn-green')[0].click();
        },10000);
    }
},3000);

var button = document.getElementsByClassName('btn btn-green');
    setInterval(function(){
        button[0].click();
    },
    1500);