您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
⚒ Advanced Acellus Mod/Custom Pack ⚒
当前为
// ==UserScript== // @name Wizardebop Unpause Video // @author Type Stuff // @description ⚒ Advanced Acellus Mod/Custom Pack ⚒ // @version 11.15 // @match https://admin192a.acellus.com/student/* // @match https://admin192c.acellus.com/student/* // @license // @run-at document-start // @grant none // @namespace https://gf.qytechs.cn/users/1394549 // @icon https://img.freepik.com/free-vector/halloween-witch-hat-isolated-illustration_18591-83719.jpg // ==/UserScript== (function() { 'use strict'; // Override the document.hidden and document.visibilityState properties so they always indicate visibility. Object.defineProperty(document, 'hidden', { get: function() { return false; }, configurable: false }); Object.defineProperty(document, 'visibilityState', { get: function() { return 'visible'; }, configurable: false }); // Prevent any visibilitychange events from triggering their default behavior. document.addEventListener('visibilitychange', function(e) { e.stopImmediatePropagation(); }, true); // Optional: Override the addEventListener function to block new visibilitychange listeners const originalAddEventListener = document.addEventListener; document.addEventListener = function(type, listener, options) { if (type === 'visibilitychange') { // Block adding new listeners for visibility changes. console.log('Blocked visibilitychange listener:', listener); return; } return originalAddEventListener.call(document, type, listener, options); }; })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址