Skip to content

Instantly share code, notes, and snippets.

@alexozer
Created May 2, 2015 13:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alexozer/97168713802ddfabdec2 to your computer and use it in GitHub Desktop.
Save alexozer/97168713802ddfabdec2 to your computer and use it in GitHub Desktop.
var gridItems = document.getElementsByClassName("yt-shelf-grid-item");
gridItems.forEach(function hideElem(elem) {
var inner = elem.innerHTML.toLowerCase();
if(inner.indexOf("minecraft") >= 0) {
elem.style.display = "hidden";
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment