View gist:2e8ad01d0ec318354aa5e95b746c7e54
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); | |
``` |