Created
August 23, 2019 10:58
-
-
Save mrkacan/0f658de1cd86724cfe953fa6e22eea0a to your computer and use it in GitHub Desktop.
Twitter auto un retweet 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=unretweet]').forEach((t)=> { | |
t.click() | |
document.querySelector('[data-testid=unretweetConfirm]').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