Skip to content

Instantly share code, notes, and snippets.

@ShaneQful
Last active December 14, 2015 18:29
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 ShaneQful/5130001 to your computer and use it in GitHub Desktop.
Save ShaneQful/5130001 to your computer and use it in GitHub Desktop.
Get rid of friends' spotify spamming your feed
var f = document.getElementsByClassName('fbFeedTickerStory');
for(var i = 0; i < f.length; i++){
if(f[i].innerHTML.indexOf("spotify") !== -1){
f[i].style.display="none";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment