Grey Vision

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

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name        Grey Vision
// @version     1.0.2
// @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://greasyfork.org/users/215141
// ==/UserScript==

new MutationObserver(function(mutations, observer) {
	document.querySelectorAll(".view-count, .short-view-count, .super-title .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, #subscriber-count, #subscribers").forEach(function(a) {
		a.remove()
	})
}).observe(document, {
	childList: true,
	subtree: true
});