autoconfirm
// ==UserScript==
// @name 淮安专业技术人员自动点击确定插件
// @include http://jxjy.hahrss.com/
// @include http://jxjy.hahrss.com/*
// @version 1.1
// @description autoconfirm
// @author Ove
// @match http://jxjy.hahrss.com/*
// @grant none
// @namespace http://tampermonkey.net/
// ==/UserScript==
(function() {
'use strict';
// Your code here...
var confirm = function () {
return true;
};
window.confirm = function () {
return true;
};
})();