惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

V
Visual Studio Blog
爱范儿
爱范儿
GbyAI
GbyAI
博客园 - 叶小钗
Last Week in AI
Last Week in AI
Jina AI
Jina AI
Microsoft Security Blog
Microsoft Security Blog
云风的 BLOG
云风的 BLOG
C
Check Point Blog
H
Help Net Security
P
Proofpoint News Feed
酷 壳 – CoolShell
酷 壳 – CoolShell
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
大猫的无限游戏
大猫的无限游戏
H
Hackread – Cybersecurity News, Data Breaches, AI and More
B
Blog RSS Feed
Y
Y Combinator Blog
U
Unit 42
T
Tailwind CSS Blog
MyScale Blog
MyScale Blog
N
Netflix TechBlog - Medium
S
SegmentFault 最新的问题
J
Java Code Geeks
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
I Built a Tool to Find Out Who's Not Following You Back o...
Stanley Owen · 2026-05-15 · via DEV Community

You know that moment when you realize you've been following someone on Instagram for two years, and they've never once followed you back? Yeah. That moment.

I wanted a clean, fast way to find every account like that without downloading some sketchy third-party app, handing over my Instagram password to a stranger's server, or paying $9.99/month for something that should take 30 lines of JavaScript.

So I built iTrace.


What Is iTrace?

iTrace is an open-source Instagram followback checker. You point it at your account, it compares who you follow vs. who follows you, and gives you a clean list of everyone not following back, with a built-in search and one-click unfollow.

No login. No password. No backend server storing your data. Just you, your browser, and a script.

It has two modes depending on how paranoid/comfortable you are:

  • Online mode — runs a script directly in your Instagram browser console, fetches everything live from Instagram's own API
  • Offline mode — works entirely from the JSON files Instagram lets you export from your account settings, zero network calls

The iTrace homepage showing the two mode buttons


The Part That's Actually Kind of Cool

The online mode doesn't redirect you anywhere. It doesn't open a new tab. You paste a script into your Instagram DevTools console, hit Enter, and a floating overlay panel appears directly on top of Instagram.com.

It looks like this:

The iTrace overlay injected on top of instagram.com

The overlay shows your full list of non-followers, lets you search by username, select multiple accounts, and unfollow them in bulk — all without ever leaving Instagram. When you're done, click the ✕ and it's gone.

The script fetches data through Instagram's internal API (the same endpoints their own app uses), paginates through your entire following and followers list, then does the comparison client-side. All data stays in your browser tab.


How the Script Works

Instagram's web app exposes its own API at /api/v1/friendships/. The script calls the followers and following endpoints, paginates through every page, then does a simple Set difference to find who's not following back:

const followersSet = new Set(followers);
const notFollowBack = following.filter(u => !followersSet.has(u));

Enter fullscreen mode Exit fullscreen mode

That's really the core of it. Everything else is rate-limiting logic and UI. To avoid triggering Instagram's rate limits and bans, the script has configurable delays between requests, you can tune how long it waits between API calls and how long it pauses after every 5 cycles. The defaults are conservative enough that it should work fine on large accounts without getting blocked.

The delay settings panel in iTrace Online mode


The Offline Mode (For the Extra Cautious)

If you'd rather not run anything live against Instagram's API, offline mode works entirely from the data export Instagram gives you.

Here's how: go to Accounts Center → Info and permissions, request a JSON export scoped to "Followers and following", download the zip, and upload the two JSON files to iTrace. That's it — the comparison runs locally in your browser, no requests go out anywhere.

The offline file upload UI with both files selected

Instagram's export format has changed a few times over the years, so I wrote a parser that handles all the variants I've seen — flat arrays, nested string_list_data objects, relationships_following wrappers, the works.


The Results View

Once you have your data (either mode), you get a results section with three stat cards showing how many you follow, how many follow you back, and the gap, then a searchable list of every account not following back.

The results panel with stats and the non-follower list

Clicking a username opens their Instagram profile in a new tab. iTrace remembers which profiles you've already visited (stored in localStorage) and shows a small checkmark so you don't lose track.

Tech Stack

  • React + Vite — for the iTrace web app UI
  • Vanilla JS — for the injected Instagram overlay (zero dependencies, runs anywhere)
  • No backend, no database, no accounts

Try It

The tool is live and free to use:

👉 itrace.stanleyowen.com

The full source is on GitHub if you want to poke around, fork it, or improve it:

👉 github.com/stanleyowen/iTrace


If you find it useful, a ⭐ on GitHub goes a long way. And if you build something on top of it or have ideas, open an issue and I'd love to see where this goes.

Now go find out who's been ghosting you since 2021 👻