Last active
July 26, 2023 16:31
-
-
Save mrkacan/995a53c4a72a580564ab0a96e534e97e to your computer and use it in GitHub Desktop.
Twitter auto unlike tweets - Tweet unliker
This file contains 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
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