YouTube - Remove Trending button

Hides the Trending button from YouTube

目前為 2021-03-22 提交的版本,檢視 最新版本

// ==UserScript==
// @name     YouTube - Remove Trending button
// @description Hides the Trending button from YouTube
// @version  2
// @grant    none
// @include	*://youtube.com/*
// @include	*://*.youtube.com/*
// @author	@sverigevader
// @namespace https://greasyfork.org/users/692021
// ==/UserScript==

window.setTimeout(
	function check() {
		if (document.querySelector('[title="Explore"]')) {
		  main();
		}
		window.setTimeout(check, 250);
	}, 250
);

function main() {
    var node = document.querySelector('[title="Explore"]');
    node.style.display = "none";
}