Skip to content

Instantly share code, notes, and snippets.

@bhagatparwinder
Created May 9, 2018 05:33
Show Gist options
  • Save bhagatparwinder/00ab059f8a6880b93d8c066cd87c6cf8 to your computer and use it in GitHub Desktop.
Save bhagatparwinder/00ab059f8a6880b93d8c066cd87c6cf8 to your computer and use it in GitHub Desktop.
Unfollow all friends on Facebook
// Script to mass unfollow friends on Facebook
// Make sure you are in "News Feed Preferences" -> “Unfollow people to hide their posts”
let d = document.getElementsByClassName("_5u3n");
for (let i = 0; i < d.length; i++){
d[i].click();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment