您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
ZJUT校园邮箱去除<div id="qqmail_mask"元素
// ==UserScript== // @name 浙工大邮箱去元素 // @namespace http://tampermonkey.net/ // @version 0.1 // @description ZJUT校园邮箱去除<div id="qqmail_mask"元素 // @author haoni886 // @match https://mail.zjut.edu.cn/coremail/index.jsp* // @match https://mail.zjut.edu.cn/cgi-bin/frame_html* // @connect * // @grant GM.xmlHttpRequest // @grant GM.getValue // @grant GM.setValue // @grant GM.deleteValue // @grant GM.cookie // @grant GM.registerMenuCommand // @run-at document-start // @license MIT // ==/UserScript== (function() { function hideElement() { let mask = document.getElementById('qqmail_mask'); if (mask) { mask.style.display = 'none'; } } new MutationObserver(mutations => { mutations.forEach(mutation => { if (mutation.target.id === 'qqmail_mask') { hideElement(); } }); }).observe(document, { subtree: true, childList: true }); hideElement(); setInterval(hideElement, 200); })();