您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
去除tapd在页面中显示的用户名水印
// ==UserScript== // @name 去除TAPD水印 // @namespace https://gf.qytechs.cn/zh-CN/users/306433 // @version 0.3 // @description 去除tapd在页面中显示的用户名水印 // @author https://gf.qytechs.cn/zh-CN/users/306433-baster // @supportURL https://gf.qytechs.cn/zh-CN/users/306433-baster // @homepageURL https://gf.qytechs.cn/zh-CN/users/306433 // @match https://www.tapd.cn/* // @icon https://www.tapd.cn/favicon.ico // @license GNU // @grant none // ==/UserScript== (function () { "use strict"; var element = document.createElement("style"); element.setAttribute("type", "text/css"); document.head.appendChild(element); element.textContent = ".dontdeleteme-div-clear {background-size: 0px !important;} "; /* MutationObserver delete+change_style .dontdeleteme-div { width: 100% !important; height: 100% !important; max-width: unset !important; max-height: unset !important; position: absolute !important; top: 0 !important; left: 0 !important; padding: 0 !important; margin: 0 !important; z-index: 1001 !important; pointer-events: none !important; background-repeat: repeat !important; background-image: url('data:image/svg+xml;base64,xxxx') !important; opacity: 0.04 !important; display: block !important; visibility: visible !important; clip: initial !important; clip-path: initial !important; transform: initial !important; } */ })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址