-
-
Save henk911/c0c0f492b3ec275b7a5f1f908d43cea0 to your computer and use it in GitHub Desktop.
Unfollow everything & everyone on Facebook.
This file contains hidden or 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
// Manual set-up | |
// click: ▼ at top-right | |
// Newsfeed preferences | |
// "Unfollow people to hide their posts" (also includes all Pages, which are not real "people") | |
// Scroll to the bottom of that so they are all listed | |
// Open console (f12, or whatever the fuck on MacOS) and paste these two lines: | |
var e = document.querySelectorAll("._5u3n"); | |
e.forEach(function(elem){ elem.click() }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment