Last active
May 2, 2024 23:14
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
setInterval(function () { | |
window.scrollTo(0, document.body.scrollHeight); | |
$('.ProfileTweet-actionButton.js-actionButton.js-actionFavorite:visible').click(); | |
}, 1000); |
Author
andreabazerla
commented
Jan 6, 2017
- Open Twitter in desktop mode
- Type F12 or CTRL+MAIUSC+I
- Open the Console
- CTRL+C and CTRL+V the code
- Press ENTER and enjoy the bot
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment