Greasy Fork

Greasy Fork is available in English.

删除图怪兽海报背景水印

删除图怪兽ue.818ps.com海报编辑页面背景水印

目前为 2023-04-28 提交的版本。查看 最新版本

// ==UserScript==
// @name         删除图怪兽海报背景水印
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  删除图怪兽ue.818ps.com海报编辑页面背景水印
// @author       Handsomefly
// @license      MIT
// @match        https://ue.818ps.com/*
// @grant        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();
  }
}