Skip to content

Instantly share code, notes, and snippets.

Avatar
💭
Release the Kraken!

Bashar Ghadanfar lionbytes

💭
Release the Kraken!
View GitHub Profile
@lionbytes
lionbytes / gist:2e8ad01d0ec318354aa5e95b746c7e54
Last active February 15, 2023 13:04
Twitter-API-Friendly Like Remover
View gist:2e8ad01d0ec318354aa5e95b746c7e54
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);
```