remote-gaoding-watermark

移除搞定设计水印

目前为 2022-12-17 提交的版本。查看 最新版本

// ==UserScript==
// @name         remote-gaoding-watermark
// @namespace    remote-gaoding-watermark
// @version      1.3
// @description  移除搞定设计水印
// @author       sertraline
// @match        https://www.gaoding.com/design*
// @match        https://www.gaoding.com/odyssey/design*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    var style = document.createElement("style");
    style.type = "text/css";
    var text = document.createTextNode(".editor-watermark{filter: opacity(0)!important;}");
    style.appendChild(text);
    var head = document.getElementsByTagName("head")[0];
    head.appendChild(style);
    console.log("水印已去除")
    // Your code here...
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址