Greasy Fork

Greasy Fork is available in English.

教师研修网smartedu.cn自动点击确定

2025暑期教师研修自动答题点击确定

当前为 2025-02-05 提交的版本,查看 最新版本

// ==UserScript==
// @name         教师研修网smartedu.cn自动点击确定
// @namespace    http://tampermonkey.net/
// @version      2025-02-04
// @description  2025暑期教师研修自动答题点击确定
// @author       Hiro_Wang
// @match        *.smartedu.cn/p/course/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=smartedu.cn
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    setInterval(function() {
        if ($('.layui-layer-btn0').length > 0) {
            $('.layui-layer-btn0').click();
            console.log('发现并点击确定按钮');
        }
    }, 3000);
})();