Created
October 24, 2023 01:44
-
-
Save Arturro43/3b54fbdffc332a07361595a6c290fa75 to your computer and use it in GitHub Desktop.
DamnFastMassTweetUnliker - remove all of your liked tweets from publicly available "liked" section.
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
function autoUnlike() { | |
for (const d of document.querySelectorAll('div[data-testid="unlike"]')) { | |
d.click(); | |
} | |
window.scrollTo(0, document.body.scrollHeight); | |
requestAnimationFrame(autoUnlike); | |
} | |
autoUnlike(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment