remote-daoding-watermark

移除搞定设计水印

目前为 2020-10-20 提交的版本,查看 最新版本

// ==UserScript==
// @name         remote-daoding-watermark
// @namespace    remote-daoding-watermark
// @version      1.2
// @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{display: none!important;}");
    style.appendChild(text);
    var head = document.getElementsByTagName("head")[0];
    head.appendChild(style);
    console.log("水印已去除")
    // Your code here...
})();