Skip to content

Instantly share code, notes, and snippets.

@suncn
Forked from labnol/unfollow.js
Created May 6, 2017 14:34

Revisions

  1. @JamieMason JamieMason revised this gist Jul 16, 2014. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion unfollow.js
    Original file line number Diff line number Diff line change
    @@ -1,6 +1,6 @@
    // 1. Go to https://twitter.com/following.
    // 2. Keep scrolling to the bottom repeatedly until all your followers are loaded.
    // 3. Run this in your console.
    [].slice.call(document.querySelectorAll('stream-container .unfollow-text')).forEach(function(button) {
    [].slice.call(document.querySelectorAll('.unfollow-text')).forEach(function(button) {
    button.click();
    });
  2. @JamieMason JamieMason created this gist Nov 21, 2013.
    6 changes: 6 additions & 0 deletions unfollow.js
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,6 @@
    // 1. Go to https://twitter.com/following.
    // 2. Keep scrolling to the bottom repeatedly until all your followers are loaded.
    // 3. Run this in your console.
    [].slice.call(document.querySelectorAll('stream-container .unfollow-text')).forEach(function(button) {
    button.click();
    });