Last active
March 7, 2018 23:22
-
-
Save M1ke/5541224 to your computer and use it in GitHub Desktop.
Want to turn off Retweets from all users you're following without clicking each time? This script sorts that, using a timer to avoid your requests being blocked and returning a 403. Scroll to the bottom of your Following list, paste it into Chrome's console (Firefox should work too) and hit enter. It turns off 3 per minute (you could reduce the …
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
var interval=setInterval(function(){ | |
$('.user-actions.including .retweet-off-text').last().click(); | |
if ($('.user-actions.including .retweet-off-text').length<1) { | |
clearInterval(interval); | |
} | |
},20000); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@gusost's script worked for me in Firefox on ~1,200 following