Skip to content

Instantly share code, notes, and snippets.

@ishankhare07
Last active August 14, 2017 05:04
Show Gist options
  • Save ishankhare07/2dc07ab23b01cfd19d34d876034fd741 to your computer and use it in GitHub Desktop.
Save ishankhare07/2dc07ab23b01cfd19d34d876034fd741 to your computer and use it in GitHub Desktop.
hide annoying sarahah posts from fb news feed
document.querySelectorAll('._5pcr.fbUserPost')
.forEach((element) => {
if(element.innerHTML.match(/sarahah/)) {
element.style.visibility = 'hidden';
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment