Skip to content

Instantly share code, notes, and snippets.

@m-kirstetter
Created June 29, 2015 08:27
Show Gist options
  • Save m-kirstetter/84755ed4b39f977de765 to your computer and use it in GitHub Desktop.
Save m-kirstetter/84755ed4b39f977de765 to your computer and use it in GitHub Desktop.
Twitter mass favorite
a = setInterval(function () {
window.scrollTo(0,document.body.scrollHeight);
$('.ProfileTweet-actionButton.js-actionButton.js-actionFavorite:visible').click();
}, 1000)
// To stop it
clearInterval(a)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment