Skip to content

Instantly share code, notes, and snippets.

@andreabazerla
Last active June 22, 2021 19:59
Show Gist options
  • Star 5 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save andreabazerla/ae45fd33dd3304f9d05743ca5a0afe42 to your computer and use it in GitHub Desktop.
Save andreabazerla/ae45fd33dd3304f9d05743ca5a0afe42 to your computer and use it in GitHub Desktop.
Simple script in JavaScript to like all tweets on Twitter to get more followers and establish a dictatorship
setInterval(function () {
window.scrollTo(0, document.body.scrollHeight);
$('.ProfileTweet-actionButton.js-actionButton.js-actionFavorite:visible').click();
}, 1000);
@andreabazerla
Copy link
Author

  1. Open Twitter in desktop mode
  2. Type F12 or CTRL+MAIUSC+I
  3. Open the Console
  4. CTRL+C and CTRL+V the code
  5. Press ENTER and enjoy the bot

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