项目地址: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("载入成功!");
})();
})();
还不快抢沙发