Skip to content

Instantly share code, notes, and snippets.

@titomus
Last active June 29, 2017 07:18
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 titomus/93cb83936b4c5d0c6bc7c43ea4ec254c to your computer and use it in GitHub Desktop.
Save titomus/93cb83936b4c5d0c6bc7c43ea4ec254c to your computer and use it in GitHub Desktop.
Comment récupérer des followers sur Twitter en semi automatique... grâce à Chrome
setInterval(function() { window.scrollTo(0, document.body.scrollHeight); }, 5000);
__count__=0;
jQuery('.Grid-cell .not-following .follow-text').each(function (i, ele) {
ele = jQuery(ele);
if (ele.css('display')!='block') {
console.log('deja suivi:', i);
return;
} setTimeout(function () {
ele.click();
}, __count__++*500);
});
@titomus
Copy link
Author

titomus commented Jun 23, 2017

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment