Greasy Fork is available in English.

remove-gaoding-watermark

移除搞定设计水印

스크립트 설치?
개발자의 추천 스크립트

get-gaoding-material는 어떤가요?

스크립트 설치
질문, 리뷰하거나, 이 스크립트를 신고하세요.
// ==UserScript==
// @name         remove-gaoding-watermark
// @namespace    remote-gaoding-watermark
// @version      1.4
// @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...
})();