🥇2025国家智慧教育平台寒假研修刷课|去除暂停限制【影刃】
// ==UserScript==
// @name 🥇2025国家智慧教育平台寒假研修刷课|去除暂停限制【影刃】
// @namespace https://doc.yingren.xyz
// @icon https://doc.yingren.xyz/img/logo2.jpg
// @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)
}
})();