Skip to content

Instantly share code, notes, and snippets.

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';
}
});