您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
HAHA
// ==UserScript== // @license MIT // @name BUAA DS水印去除 // @namespace http://chat.buaa.edu.cn/ // @version 2025-03-05 // @description HAHA // @author HCPTHY // @match https://chat.buaa.edu.cn/* // @icon https://chat.buaa.edu.cn/common/get_file?file_rcn=afb69b04deb605d870afa819c2c337e1857550ccAgAMAFNTA1MMA1QGAAUFV1NTDFRLQVEBFFgFVFFJUQEECwAEB1FRAVYFAANSUwVSV1Y // @grant none // ==/UserScript== (function() { 'use strict'; function waitForElm(selector) { return new Promise(resolve => { if (document.querySelector(selector)) { return resolve(document.querySelector(selector)); } const observer = new MutationObserver(mutations => { if (document.querySelector(selector)) { observer.disconnect(); resolve(document.querySelector(selector)); } }); observer.observe(document.body, { childList: true, subtree: true }); }); } waitForElm('.n-watermark').then((elm) => { elm.style.display = 'none'; }); })();