🏠 Home 

Greasy Fork is available in English.

去云图客服图标+去用户名水印

云图扩展工具

  1. // ==UserScript==
  2. // @name 去云图客服图标+去用户名水印
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.3
  5. // @description 云图扩展工具
  6. // @author siji-Xian
  7. // @match *://yuntu.oceanengine.com/yuntu_brand*
  8. // @icon https://lf3-static.bytednsdoc.com/obj/eden-cn/prhaeh7pxvhn/yuntu/yuntu-logo_default.svg
  9. // @grant none
  10. // @license MIT
  11. // @require https://lf26-cdn-tos.bytecdntp.com/cdn/expire-1-M/jquery/3.2.1/jquery.min.js
  12. // ==/UserScript==
  13. (function () {
  14. "use strict";
  15. function appendDoc() {
  16. const likeComment = document.querySelector(".effect-support-entry-wrapper");
  17. if (likeComment) {
  18. likeComment.style.display = "none";
  19. return;
  20. }
  21. setTimeout(appendDoc, 1000);
  22. }
  23. appendDoc();
  24. function appendDoc2() {
  25. const likeComment = document.querySelector(".watermark");
  26. if (likeComment) {
  27. likeComment.style.opacity = 0;
  28. return;
  29. }
  30. setTimeout(appendDoc2, 1000);
  31. }
  32. appendDoc2();
  33. })();