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://gf.qytechs.cn/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";
}

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址