您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Hide the watermark on the page
当前为
// ==UserScript== // @name Easyv水印隐藏 // @namespace http://tampermonkey.net/ // @version 0.2 // @description Hide the watermark on the page // @author Your Name // @match https://workspace.easyv.cloud/* // @grant none // ==/UserScript== (function() { 'use strict'; // 创建一个观察者来监测 DOM 变化 const observer = new MutationObserver((mutations) => { mutations.forEach((mutation) => { const watermark = document.querySelector('.index__canvas--Za5X5'); if (watermark) { watermark.style.display = 'none'; // 隐藏水印 } }); }); // 开始观察页面的变化 observer.observe(document.body, { childList: true, subtree: true }); // 还可以在页面加载时隐藏水印 window.addEventListener('load', function() { const watermark = document.querySelector('.index__canvas--Za5X5'); if (watermark) { watermark.style.display = 'none'; // 隐藏水印 } }); })();