针对北华大学实验室安全考试系统,考前必需的20小时学习用,让你在一个页面直接刷时间,不再受5分钟确认提示框干扰。
// ==UserScript==
// @name 北华大学实验室安全考试刷时长,每5分钟Confirm确认框取消
// @namespace http://tampermonkey.net/
// @version 1.0
// @description 针对北华大学实验室安全考试系统,考前必需的20小时学习用,让你在一个页面直接刷时间,不再受5分钟确认提示框干扰。
// @match https://*webvpn.beihua.edu.cn/*
// @author Yitxxx
// @license MIT
// @grant none
// ==/UserScript==
(function() {
'use strict';
let cf = window.confirm;
window.confirm = function(...args){
if(args[0].indexOf("5分钟")>=0){
return true;
}else{
return cf(...args)
}
}
})();