Skip to content

Instantly share code, notes, and snippets.

@gsamat
Last active October 1, 2020 16:33
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save gsamat/61632f399bf2172d72a7c6f5f9e8a14b to your computer and use it in GitHub Desktop.
Save gsamat/61632f399bf2172d72a7c6f5f9e8a14b to your computer and use it in GitHub Desktop.
  1. заходим в news feed preferences

  2. Unfollow

  3. Скроллим до упора вниз

  4. Выполняем в консоли

var a = document.querySelectorAll('[aria-label$="Following"]');
for (var i = 0; i < a.length; i++){ 
	a[i].click(); 
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment