🥇2025国家智慧教育平台寒假研修刷课|去除暂停限制【影刃】

国家智慧教育平台-教师培训刷课

// ==UserScript==
// @name         🥇2025国家智慧教育平台寒假研修刷课|去除暂停限制【影刃】
// @namespace    https://doc.yingren.xyz
// @version      0.1
// @description  国家智慧教育平台-教师培训刷课
// @author       影刃
// @match        https://basic.smartedu.cn/*
// @icon         https://basic.smartedu.cn/favicon.ico
// @grant        none
// @license      GPL 3
// ==/UserScript==

(function() {
    'use strict';
    let oldadd=EventTarget.prototype.addEventListener
    EventTarget.prototype.addEventListener=function (...args){
        if(window.onblur!==null){
            window.onblur=null;
        }
        if(args.length!==0&&args[0]==='visibilitychange'){
            return;
        }
        return oldadd.call(this,...args)
    }
})();