Since my last post about some Facebook scripts was very well received, I decided to make a similar one for Twitter. Enjoy!
Over time, I will be adding more scripts. Let me know which ones you want next! ?
Note: these work as of April 8, 2020.
1. Accept all your Twitter follower requests ?
Ever wanted to accept all your Twitter follower requests easily?
Here’s how you can. You got 2 options:
- Make your Twitter public so that all your requests are automatically accepted
- or run the script below
- Make your Twitter public
To make your Twitter public, Go to More > Settings > Privacy and Safety > Then untick the “Protect Your Tweets Box”


that should do the trick!
Another method is running the auto accept follower script below
Steps
- Open the javascript console (cmd + shift + J)
- Paste the code and hit enter
var inputs = document.querySelectorAll('div.css-901oao.r-1awozwy.r-13gxpu9.r-6koalj.r-18u37iz.r-16y2uox.r-1qd0xha.r-a023e6.r-vw2c0b.r-1777fci.r-eljoum.r-dnmrzs.r-bcqeeo.r-q4m81j.r-qvutc0'); for(var i=0; i < inputs.length; i++) { inputs[i].click(); }
If you are curious about the code does, here it is:
The first line var inputs document.querySelectorAll( ..) finds all “Accept” buttons next to your follower requests
The next line for( ..) , loops for all the found buttons
and finally inputs[i].click(); clicks on all buttons
2. Unfollow all Twitter Followers ?
If you really care about your follower/following ratio, then you can use this script to unfollow everyone on Twitter:
var inputs = document.querySelectorAll('div.css-18t94o4.css-1dbjc4n.r-urgr8i.r-42olwf.r-sdzlij.r-1phboty.r-rs99b7.r-1w2pmg.r-1vsu8ta.r-aj3cln.r-1fneopy.r-o7ynqc.r-6416eg.r-lrvibr'); for(var i=0; i < inputs.length; i++) { inputs[i].click(); }
Don’t worry, it will ask you to confirm one by one


Conclusion
Hope you found these Twitter growth hacking tips and scripts useful!
I plan to add more scripts here over time, but wanted to get some out quickly.
Let me know which script you need next and I will make it happen. Just drop a comment below.
Here are other scripts you might enjoy:
Sign up for my newsletter ⤵
or get left behind by the people who do...