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
  • Save mskutin/aacdcd13a697f3d5c765eba432a1e698 to your computer and use it in GitHub Desktop.
Save mskutin/aacdcd13a697f3d5c765eba432a1e698 to your computer and use it in GitHub Desktop.

Revisions

  1. Samat Galimov created this gist Feb 3, 2017.
    14 changes: 14 additions & 0 deletions unfollow everybody.md
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,14 @@
    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();
    }
    ```