跳过弹窗提示

跳过每隔5min的弹窗提示

目前为 2022-09-24 提交的版本。查看 最新版本

// ==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
// @grant        none
// @license MIT
// ==/UserScript==

setTimeout(function(){
  function confirm(){
    return true;
  }
  window.confirm = confirm;
  function alert(){
  }
  window.alert = alert;
}, 5 * 1000)