Skip to content

Instantly share code, notes, and snippets.

@anytroops
anytroops / instagram-following-back-checker
Last active July 13, 2025 06:32
Instagram following/follower checker, optimized to run at average of 1/4 total runtime, Inspired by abir-taheer's gist
if (window.location.origin !== "https://www.instagram.com") {
alert(
"You need to be on the Instagram website for this script to work.",
);
location.href = "https://www.instagram.com";
console.clear();
}
const sleep = ms => new Promise(r => setTimeout(r, ms));
const random = (min, max) => Math.floor(Math.random() * (max - min)) + min;