Instafication helps you identify Instagram users who don't follow you back in 3 simple steps, with no login required and complete privacy.
Copy the code below and paste it in your browser console while on Instagram
Paste the results from your followers and following lists below
Click "Check Unfollowers" to see who doesn't follow you back
function extractUsernames() {
const usernames = [];
const usernameElements = document.querySelectorAll('._ap3a, ._aaco, ._aacw, ._aacx, ._aad7, ._aade');
usernameElements.forEach(element => {
const username = element.textContent.trim();
if (username &&
!username.includes('Follow') &&
!username.includes('Following') &&
!username.includes('Verified') &&
username.length > 1 &&
username.length < 31) {
usernames.push(username);
}
});
const uniqueUsernames = [...new Set(usernames)];
return uniqueUsernames;
}
const followersUsernames = extractUsernames();
console.log("FOLLOWERS LIST:");
console.log(followersUsernames);
allow pasting
and press EnterDetailed visual guide showing each step of the process
Here are some troubleshooting steps:
Try typing allow pasting
exactly as
shown (with a space) and press Enter. If that
doesn't work, try refreshing the page and trying
again.
Make sure you've scrolled to load ALL followers/following. Instagram loads them as you scroll. Try scrolling up and down several times to ensure everything is loaded.
After running the code, right-click on the array that appears in the console and select "Copy object". If that option doesn't appear, try clicking on the array first to select it.
If Instagram updates their UI, our code might need updating. Check back for updates or contact us through GitHub if you notice the tool isn't working.