Skip to content

Instantly share code, notes, and snippets.

@BeerInHand
Created December 27, 2016 20:41
Show Gist options
  • Save BeerInHand/e703f1e1dd4331e5a922ab02236af5cf to your computer and use it in GitHub Desktop.
Save BeerInHand/e703f1e1dd4331e5a922ab02236af5cf to your computer and use it in GitHub Desktop.
removes 'sponsored' ads and 'liked this' friend posts from facebook news stream
javascript:setInterval(function(){ t=document.getElementsByTagName("span"); for (var i=0;i<t.length;i++) if (t[i].textContent == 'Sponsored') t[i].parentElement.parentElement.parentElement.parentElement.parentElement.parentElement.parentElement.parentElement.parentElement.parentElement.parentElement.innerHTML='<marquee>ZAPPED '+t[i].textContent+'!</marquee>'; else if (t[i].textContent.includes('liked this.') || t[i].textContent.includes('reacted to this.')) t[i].parentElement.parentElement.parentElement.parentElement.innerHTML='<marquee>ZAPPED '+t[i].textContent+'!</marquee>'; }, 500);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment