// ==UserScript== // @name 删除图怪兽海报背景水印 // @namespace http://tampermonkey.net/ // @version 0.1 // @description 删除图怪兽ue.818ps.com海报编辑页面背景水印 // @author Handsomefly // @license MIT // @match https://ue.818ps.com/* // @grant none // @downloadURL none // ==/UserScript== if (window.location.href.startsWith('https://ue.818ps.com/')) { var watermarkDivs = document.querySelectorAll('div.image-watermark'); for (var i = 0; i < watermarkDivs.length; i++) { watermarkDivs[i].remove(); } }