// ==UserScript== // @name 奇安信-奇安学堂-屏蔽切屏检测 // @match *://*/* // @run-at document-start // @grant none // @namespace http://tampermonkey.net/ // @version 1.0 // @description 绕过网站的切屏检测 // @author Houyuxi // @license MIT // @downloadURL none // ==/UserScript== ["visibilitychange", "blur", "focus", "focusin", "focusout"].forEach(event => { window.addEventListener(event, e => { e.stopImmediatePropagation(); e.stopPropagation(); e.preventDefault(); return false; }, true); }); document.hasFocus = () => true; Object.defineProperty(document, "hidden", { get() { return false; } });