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

云图扩展工具

// ==UserScript==
// @name         去云图客服图标+去用户名水印
// @namespace    http://tampermonkey.net/
// @version      1.3
// @description  云图扩展工具
// @author       siji-Xian
// @match        *://yuntu.oceanengine.com/yuntu_brand*
// @icon         https://lf3-static.bytednsdoc.com/obj/eden-cn/prhaeh7pxvhn/yuntu/yuntu-logo_default.svg
// @grant        none
// @license      MIT
// @require      https://lf26-cdn-tos.bytecdntp.com/cdn/expire-1-M/jquery/3.2.1/jquery.min.js
// ==/UserScript==

(function () {
  "use strict";

  function appendDoc() {
    const likeComment = document.querySelector(".effect-support-entry-wrapper");
    if (likeComment) {
      likeComment.style.display = "none";
      return;
    }
    setTimeout(appendDoc, 1000);
  }
  appendDoc();

  function appendDoc2() {
    const likeComment = document.querySelector(".watermark");
    if (likeComment) {
      likeComment.style.opacity = 0;
      return;
    }
    setTimeout(appendDoc2, 1000);
  }
  appendDoc2();

})();