您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Greasy Fork is available in English.
屏蔽U校园的环境检测
当前为
// ==UserScript== // @name U校园环境检测屏蔽 // @namespace http://tampermonkey.net/ // @version 1.0 // @description 屏蔽U校园的环境检测 // @author BackRunner // @match *://u.unipus.cn/user/student?* // @grant none // ==/UserScript== (function() { 'use strict'; function addCSS(){ //变量定义 var cssText = ""; cssText += "#layui-layer-shade1{display: none !important;}"; var modStyle = document.querySelector('#modCSS'); if (modStyle === null) { modStyle = document.createElement('style'); modStyle.id = 'modCSS'; document.body.appendChild(modStyle); } modStyle.innerHTML = cssText; } })();