Skip to content

Instantly share code, notes, and snippets.

@mrkacan
Last active July 26, 2023 16:31
Show Gist options
  • Save mrkacan/995a53c4a72a580564ab0a96e534e97e to your computer and use it in GitHub Desktop.
Save mrkacan/995a53c4a72a580564ab0a96e534e97e 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