remote-daoding-watermark

移除搞定设计水印

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

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