Created
October 16, 2017 11:13
-
-
Save r4dian/e131d5f749e952c6c9564c35df68a94d to your computer and use it in GitHub Desktop.
Unfollow everything & everyone 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
// 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