// ==UserScript== // @name 稿定设计去水印 // @namespace gaodingsheji // @version 0.1 // @description 稿定设计去水印插件 // @author pachyming // @match https://*.gaoding.com/design* // @match https://*.gaoding.com/design/video?id=* // @match https://*.gaoding.com/odyssey/design* // @match https://*.gaoding.com/editor/design* // @match https://g.h5gd.com/p/* // @icon https://www.gaoding.com/favicon.ico // @grant GM_addStyle // @license MIT // @downloadURL none // ==/UserScript== let styleElement = document.createElement('style'); styleElement.innerHTML = ` .editor-watermark { z-index: -5 !important; } `; document.head.appendChild(styleElement);