Skip to content

Instantly share code, notes, and snippets.

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