Unfollow all Facebook pages/friends/groups

Anonymous
plain_text
02/21/2022 12:31 PM
164 B
2,376
Indexable
matches = document.querySelectorAll('div[aria-label="Toggle to follow"]');
matches.forEach(function(el) {
  el.click();
});
Editor is loading...