您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Greasy Fork is available in English.
云图扩展工具
// ==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(); })();