// ==UserScript== // @name 跳过弹窗提示 // @description 跳过每隔5min的弹窗提示 // @namespace http://sysaq.imu.edu.cn/ // @version 2022.9.21 // @author xln-tj // @match http://sysaq.imu.edu.cn/redir.php?catalog_id=127&object_id=2783 // @license MIT // @downloadURL none // ==/UserScript== setTimeout(function(){ function confirm(){ return true; } window.confirm = confirm; function alert(){ } window.alert = alert; }, 5 * 1000)