Skip to content

Instantly share code, notes, and snippets.

@BrianRosamilia
Created September 5, 2014 02:42
Show Gist options
  • Save BrianRosamilia/a7dd905a5dd2517f9c8e to your computer and use it in GitHub Desktop.
Save BrianRosamilia/a7dd905a5dd2517f9c8e to your computer and use it in GitHub Desktop.
Removing Facebook Posts
Array.prototype.slice.call(document.getElementsByClassName('userContentWrapper')).forEach(function(itm) {
if (itm.innerHTML.search(/nfl|football/i) != -1) {
itm.parentNode.removeChild(itm)
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment