Skip to content

Instantly share code, notes, and snippets.

@Arturro43
Created October 24, 2023 01:44
Show Gist options
  • Save Arturro43/3b54fbdffc332a07361595a6c290fa75 to your computer and use it in GitHub Desktop.
Save Arturro43/3b54fbdffc332a07361595a6c290fa75 to your computer and use it in GitHub Desktop.
DamnFastMassTweetUnliker - remove all of your liked tweets from publicly available "liked" section.
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