// ==UserScript== // @name 2023最新稿定设计去水印 // @namespace gaodingsheji // @version 0.3 // @description 稿定设计去水印插件 // @author pachyming // @match https://*.focodesign.com/design* // @match https://*.focodesign.com/design/video?id=* // @match https://*.focodesign.com/odyssey/design* // @match https://*.focodesign.com/editor/design* // @icon https://focodesign.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);