Skip to content

Instantly share code, notes, and snippets.

@mskutin
Forked from gsamat/unfollow everyone.md
Created October 9, 2017 13:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mskutin/aacdcd13a697f3d5c765eba432a1e698 to your computer and use it in GitHub Desktop.
Save mskutin/aacdcd13a697f3d5c765eba432a1e698 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