Skip to content

Instantly share code, notes, and snippets.

@eduardoedson
Forked from Tahax09/twitterTweetUnliker.js
Created April 29, 2021 00:14
Show Gist options
  • Save eduardoedson/f993b68d477629b9c85bd9e7db7db8a7 to your computer and use it in GitHub Desktop.
Save eduardoedson/f993b68d477629b9c85bd9e7db7db8a7 to your computer and use it in GitHub Desktop.
Twitter auto unlike tweets - Tweet unliker
let interval = null
let count = 10000
let ntt = function(){
interval = setInterval(function(){
document.querySelectorAll('[data-testid=unlike]').forEach((t)=> {
t.click()
})
count += 1000
window.scrollTo(0, count);
},1000)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment