remove-gaoding-watermark

移除搞定设计水印

安装此脚本?
作者推荐脚本

您可能也喜欢get-gaoding-material

安装此脚本
  1. // ==UserScript==
  2. // @name remove-gaoding-watermark
  3. // @namespace remote-gaoding-watermark
  4. // @version 1.4
  5. // @description 移除搞定设计水印
  6. // @author sertraline
  7. // @match https://www.gaoding.com/design*
  8. // @match https://www.gaoding.com/odyssey/design*
  9. // @grant none
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14. var style = document.createElement("style");
  15. style.type = "text/css";
  16. var text = document.createTextNode(".editor-watermark{filter: opacity(0)!important;}");
  17. style.appendChild(text);
  18. var head = document.getElementsByTagName("head")[0];
  19. head.appendChild(style);
  20. console.log("水印已去除")
  21. // Your code here...
  22. })();

QingJ © 2025

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