Twitter-API-Friendly Like Remover
This file contains 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
For those who want to remove their Twitter likes in bulk, but are being blocked by Twitter's API, | |
I give you a slower version that is more API-friendly; it removes each like one at a time. | |
Open your Twitter likes page on a separate browser window, then run the following code in the console: | |
```javascript | |
setInterval(() => { | |
document.querySelectorAll('div[data-testid="unlike"]')[0].click(); | |
window.scrollTo(0, window.pageYOffset+300); | |
}, 1000); | |
``` | |
This is a modified version of Aymeric's code, as after testing it seems Twitter no longer allows it to run properly. | |
Aymeric's like bulk remover: https://gist.github.com/aymericbeaumet/d1d6799a1b765c3c8bc0b675b1a1547d |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
After some time twitter has this bug where your older liked tweets become normal ones (unliked, but still stay on the "liked" page). A version of the script where it likes, then unliked one tweet at the time would be even more great.