移除搞定设计水印
Stan na
// ==UserScript==
// @name remote-daoding-watermark
// @namespace remote-daoding-watermark
// @version 1.1
// @description 移除搞定设计水印
// @author sertraline
// @match https://www.gaoding.com/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...
})();