How to use:

  1. Go to your Instagram profile on a browser.
  2. Open browser dev tools (Right click → Inspect → Console tab).
  3. Open the Followers or Following popup window.
  4. Scroll all the way down to load all users.
  5. Paste the following code into the console and press Enter.
  6. const usernames = Array.from(document.querySelectorAll('span._ap3a._aaco._aacw._aacx._aad7._aade'))
      .map(span => span.innerText.trim())
      .filter(name => name);
    
    console.log("Usernames:", usernames);
    
    if (confirm("Copy usernames to clipboard?")) {
      const textarea = document.createElement('textarea');
      textarea.value = usernames;
      document.body.appendChild(textarea);
      textarea.select();
      try {
        document.execCommand('copy');
        alert("Copied!");
      } catch (err) {
        alert("Failed to copy.");
      }
      document.body.removeChild(textarea);
    }
            
  7. Click "OK" when asked to copy the array of usernames.
  8. Paste that list into the appropriate box below.

⚠️ Important Warning

Do not bulk follow or unfollow users on Instagram. Doing so can trigger Instagram's spam detection and may lead to account restrictions.

This limit is not officially confirmed by Instagram - it’s based on extensive community testing and experience with Instagram automation tools.

Followers

Total Followers: 0

Following

Total Following: 0