您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Removes all views, likes, and subscription numbers from youtube for a cleaner experience without pre-judgements.
当前为
// ==UserScript== // @name Grey Vision // @version 1.0.1 // @date 2018-09-24 // @description Removes all views, likes, and subscription numbers from youtube for a cleaner experience without pre-judgements. // @author TomLum.com // @copyright 2018, TomLum.com // @homepage TomLum.com/greyvision // @compatible chrome // @compatible firefox // @compatible safari // @license MIT https://opensource.org/licenses/MIT // @match *://*.youtube.com/* // @namespace https://gf.qytechs.cn/users/215141 // ==/UserScript== new MutationObserver(function(mutations, observer) { document.querySelectorAll(".view-count, .short-view-count, .yt-simple-endpoint.style-scope.yt-formatted-string, #top-level-buttons yt-formatted-string[id='text'], ytd-sentiment-bar-renderer, ytd-badge-supported-renderer, ytd-subscribe-button-renderer span, ytd-comments-header-renderer, count-text, #vote-count-middle, #metadata-line .style-scope").forEach(function(a) { a.remove() }) }).observe(document, { childList: true, subtree: true });
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址