Greasy Fork is available in English.
跳过提示确认的对话框
// ==UserScript==
// @name 成都继续教育自动确定2020年12月28日更新
// @namespace https://hehome.xyz/
// @version 0.1.2
// @description 跳过提示确认的对话框
// @author hemengyang
// @updater legend02uwn
// @match *://www.cdjxjy.com/*
// ==/UserScript==
(function () {
'use strict';
var confirm = function () {
return true;
};
window.confirm = function () {
return true;
};
})();