Skip to content

Instantly share code, notes, and snippets.

View emanuelboderash's full-sized avatar

Emanuel Boderash emanuelboderash

View GitHub Profile
@Jeandcc
Jeandcc / getInstagramUsersThatDontFollowBack.js
Last active June 4, 2024 17:10
Open Instagram on your browser; Login to instagram; Open your browser's console (CTRL + SHIFT + J); Paste the code below; Update the username in the first line; RUN IT (Hit enter)
const username = "USER_NAME_HERE";
/**
* Initialized like this so we can still run it from browsers, but also use typescript on a code editor for intellisense.
*/
let followers = [{ username: "", full_name: "" }];
let followings = [{ username: "", full_name: "" }];
let dontFollowMeBack = [{ username: "", full_name: "" }];
let iDontFollowBack = [{ username: "", full_name: "" }];