Grey Vision

Removes all views, likes, and subscription numbers from youtube for a cleaner experience without pre-judgements.

当前为 2018-09-25 提交的版本,查看 最新版本

// ==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或关注我们的公众号极客氢云获取最新地址