Skip to content

Instantly share code, notes, and snippets.

@terales
Created May 9, 2017 08:52
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 terales/7dbf4181f399dd5cfc4104406ed51084 to your computer and use it in GitHub Desktop.
Save terales/7dbf4181f399dd5cfc4104406ed51084 to your computer and use it in GitHub Desktop.
Hide friend suggestions stories
// Looping like this works in Firefox 50+ and Blink browsers (Chrome, Yandex.Broswer and so on)
document.querySelectorAll('[id^="hyperfeed_story"]').forEach(hideIfPromos)
function hideIfPromos(story) {
if (story.textContent.includes('See all friend suggestions')) {
story.style.display = 'none'
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment