// ==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 // @downloadURL https://update.greasyfork.icu/scripts/451768/%E8%B7%B3%E8%BF%87%E5%BC%B9%E7%AA%97%E6%8F%90%E7%A4%BA.user.js // @updateURL https://update.greasyfork.icu/scripts/451768/%E8%B7%B3%E8%BF%87%E5%BC%B9%E7%AA%97%E6%8F%90%E7%A4%BA.meta.js // ==/UserScript== setTimeout(function(){ function confirm(){ return true; } window.confirm = confirm; function alert(){ } window.alert = alert; }, 5 * 1000);