// ==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 // @downloadURL https://update.greasyfork.icu/scripts/461168/UOOC%E5%90%8E%E5%8F%B0%E8%BF%90%E8%A1%8C.user.js // @updateURL https://update.greasyfork.icu/scripts/461168/UOOC%E5%90%8E%E5%8F%B0%E8%BF%90%E8%A1%8C.meta.js // ==/UserScript== (function() { 'use strict'; if (typeof($) !== undefined) { setTimeout(function() { console.log("解绑html事件"); $("html").off(); }, 3000); } else { console.log("jquery加载失败!"); } })();