连云港专业技术人员自动点击确定插件

autoconfirm

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください。
// ==UserScript==
// @name         连云港专业技术人员自动点击确定插件
// @include    http://yx.jsyxedu.cn/lookCourse?code=1001&courseId=7528/
// @include      http://yx.jsyxedu.cn/lookCourse?code=1001&courseId=7528/*
// @version      1.1
// @description  autoconfirm
// @author       Ove
// @match       http://yx.jsyxedu.cn/lookCourse?code=1001&courseId=7528/*
// @grant        none
// @namespace    http://tampermonkey.net/
// ==/UserScript==

(function() {
    'use strict';

    // Your code here...
    var confirm = function () {
        return true;
    };
    window.confirm = function () {
        return true;
    };
})();