├── followBot.js └── README.md /followBot.js: -------------------------------------------------------------------------------- 1 | (() => { 2 | let i = 0; 3 | const followInterval = setInterval(() => { 4 | if (i >= 30) clearInterval(followInterval); 5 | const buttons = document.querySelectorAll('button'); 6 | const nextButton = buttons[i]; 7 | if (nextButton.textContent.toLowerCase() === 'follow') { // write in your language 8 | nextButton.click(); 9 | } 10 | i++; 11 | }, 500) 12 | })() 13 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Instructions 2 | - navigate to https://www.instagram.com/explore/people/suggested/ in your browser on your computer. This goes without saying, but you'll need to be signed into your Intagram account 3 | - copy the javascript code in followBot.js and paste it into the javascript console (you can open this in google chrome with `command + option + j` 4 | - click enter 5 | - watch the bot click the follow button for you. it will only follow up to 30 people at a time so your account doesn't get flagged 6 | - if you wanna risk it, keep repating the steps above - WARNING: you can only follow/unfollow about 20 - 60 users an hour, and a maximum of 100-200 users in a day AND Instagram does not allow anyone to follow more than 7,500 people. Instagram will just prevent you from hitting the follow button if you do too many in a short period of time, so you're generally safe using this. 7 | --------------------------------------------------------------------------------