Greasy Fork

自动跳过校园网提醒

自动跳过湖北工业大学校园网公告提醒

// ==UserScript==
// @name         自动跳过校园网提醒
// @namespace    http://tampermonkey.net/
// @version      0.4
// @description  自动跳过湖北工业大学校园网公告提醒
// @author       摘叶飞镖
// @match        *
// @icon         
// @grant        none
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';

    // Your code here...
    if (document.documentElement.outerHTML.indexOf("10.0.1.17:8099") != -1) {
        location.reload(true);
    }
})();