您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
检测 Ant Design、Element Plus、Naive UI 等组件库的水印组件特征,利用组件设计漏洞去除水印
// ==UserScript== // @name 去除 Ant Design、Element Plus、Naive UI 水印 // @namespace https://github.com/SihenZhang // @license MIT // @version 2.0.0 // @description 检测 Ant Design、Element Plus、Naive UI 等组件库的水印组件特征,利用组件设计漏洞去除水印 // @author SihenZhang // @match *://**/* // @icon https://gw.alipayobjects.com/zos/rmsportal/rlpTLlbMzTNYuZGGCVYM.png // @grant GM.addStyle // ==/UserScript== (function() { 'use strict'; GM.addStyle(` div[style*="z-index"][style*="position"][style*="left: 0"][style*="top: 0"][style*="width: 100%"][style*="height: 100%"][style*="pointer-events: none"][style*="background-repeat: repeat"][style*="background-position"][style*="background-image"], .n-watermark { display: none !important; } `) })();