Last active
September 8, 2022 03:00
-
-
Save rvvvt/4b20fdc063024f2664e7afee696fe156 to your computer and use it in GitHub Desktop.
run this in your chrome dev tools console to click "follow" in 1 second intervals.
This file contains hidden or 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
but = $$('[data-testid*="-follow"]') | |
//for (i in but) {but[i].click()} | |
for (var i = 0; i < but.length; i++) { | |
let button = but[i] | |
setTimeout(() => { | |
button.click() | |
}, 1000 * i) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment