🏠 Home 

跳过弹窗提示

跳过每隔5分钟的弹窗提示


安装此脚本?
// ==UserScript==
// @name         跳过弹窗提示
// @description  跳过每隔5分钟的弹窗提示
// @namespace    http://sysaq.imu.edu.cn/
// @version      2024.9.14
// @author
// @match        http://sysaq.imu.edu.cn/*
// @match        http://labsra.scau.edu.cn/*
// @grant        none
// @license      MIT
// ==/UserScript==
setTimeout(function(){
function confirm(){
return true;
}
window.confirm = confirm;
function alert(){
}
window.alert = alert;
}, 5 * 1000);