2022年江西省全员培训半自动化脚本

挂机教程 2022-08-12

项目地址:http://html.study.teacheredu.cn/el/proj_21181/index.html
脚本功能:学习过程中不用弹窗确定

// ==UserScript==
// @name         江西edu
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       You
// @match        http://study.teacheredu.cn/proj/studentwork/study.htm?courseId=*
// @grant   unsafeWindow
// ==/UserScript==

(function() {
    'use strict';

    // Your code here...
    // 延时3秒后进入未学课程
    window.sleep = function(ms){
        return new Promise(resolve => setTimeout(resolve, ms || 1000))
    };
    // 延时3秒后进入未学课程
    (async () => {
        console.info("一分钟后载入脚本...");
        await sleep(60*1000);
        console.info("尝试载入...");
        unsafeWindow.alert=function(msg) {console.info(msg);};
        window.alert=function(msg){console.info(msg);};
        console.info("载入成功!");
    })();

})();

脚本下载:
tampermonkey_scripts.zip

知识共享署名声明
本文由 herokay 创作,采用 知识共享署名 3.0,可自由转载、引用,但需署名作者且注明文章出处。

还不快抢沙发

添加新评论