Skip to content

Instantly share code, notes, and snippets.

Created August 18, 2016 10:31
Show Gist options
  • Save anonymous/293c792ccb168d5f0697f4b31b46f446 to your computer and use it in GitHub Desktop.
Save anonymous/293c792ccb168d5f0697f4b31b46f446 to your computer and use it in GitHub Desktop.
Array.from(document.querySelectorAll('.feed_row a')).forEach(function(el){
if(el.href.match(/https?%3A%2F%2Fmeduza.io%2Fshapito%2F/)){
var parent = el.parentElement;
while(Array.from(parent.classList).indexOf('feed_row') == -1) parent = parent.parentElement;
parent.style.display = 'none';
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment