Hides the Explore button from YouTube
目前為
// ==UserScript==
// @name YouTube - Remove Explore button
// @description Hides the Explore 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";
}