UOOC后台运行

禁止运行UOOC后台运行

// ==UserScript==
// @name         UOOC后台运行
// @namespace    http://blog.z31.ink/
// @version      1.0
// @description  禁止运行UOOC后台运行
// @author       Simon菌
// @match        https://cce.org.uooconline.com/*
// @match        http://cce.org.uooconline.com/*
// @grant        none
// @require      https://code.jquery.com/jquery-1.11.0.min.js
// ==/UserScript==

(function() {
    'use strict';
    if (typeof($) !== undefined) {
        setTimeout(function() {
            console.log("解绑html事件");
            $("html").off();
        }, 3000);
    } else {
        console.log("jquery加载失败!");
    }
})();