隐藏U校园环境监测

屏蔽恼人的环境检测(只是隐藏,不具有更改检测结果功能)

// ==UserScript==
// @name         隐藏U校园环境监测
// @namespace    undefined
// @version      1.0
// @description  屏蔽恼人的环境检测(只是隐藏,不具有更改检测结果功能)
// @author       xiaodong
// @match        https://u.unipus.cn/user/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    document.getElementById('layui-layer-shade1').style.zIndex=-1
    document.getElementById('layui-layer1').style.zIndex=-2

})();