Skip to content

Instantly share code, notes, and snippets.

@eladg
Created October 4, 2015 20:29
Show Gist options
  • Save eladg/76a615b5d902e96439b5 to your computer and use it in GitHub Desktop.
Save eladg/76a615b5d902e96439b5 to your computer and use it in GitHub Desktop.
Mess Unfollow clicking on Twitter /following page (Oct. 2015)
__cnt__=0; jQuery('button.user-actions-follow-button > span.following-text').each(function (i, ele) { ele = jQuery(ele); if (ele.css('display')!='block') {console.log('already following:', i); return;} setTimeout(function () {ele.click();}, __cnt__++*500); });
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment