Created
May 9, 2018 05:33
-
-
Save bhagatparwinder/00ab059f8a6880b93d8c066cd87c6cf8 to your computer and use it in GitHub Desktop.
Unfollow all friends on Facebook
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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