remove Confirm frame

remove your Confirm frame

目前为 2018-11-19 提交的版本。查看 最新版本

// ==UserScript==
// @name         remove Confirm frame
// @name:zh-CN   Confirm确认框取消
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  remove your Confirm frame
// @author       UaN
// @match        *://examsafety.nuist.edu.cn/*
// @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)
	}
}
})();