Skip to content

Instantly share code, notes, and snippets.

@Tahax09
Forked from mrkacan/twitterTweetUnliker.js
Created April 14, 2020 05:59
Show Gist options
  • Save Tahax09/6e7c4cab9d6dc077691762cf4bf3659f to your computer and use it in GitHub Desktop.
Save Tahax09/6e7c4cab9d6dc077691762cf4bf3659f 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