Skip to content

Instantly share code, notes, and snippets.

View YAGOPORTELAYP's full-sized avatar
🎯
Focusing

Yago Portela Silva de Vasconcelos YAGOPORTELAYP

🎯
Focusing
View GitHub Profile
@YAGOPORTELAYP
YAGOPORTELAYP / instagram-unfollow-users.md
Created October 28, 2023 02:05 — forked from berstend/instagram-unfollow-users.md
Mass unfollow users on Instagram (no app needed)
  • Go to your profile on instagram.com (sign in if not already)
  • Click on XXX following for the popup with the users you're following to appear
  • Open Chrome Devtools and Paste the following into the Console and hit return:
(async function(){
  const UNFOLLOW_LIMIT = 800
  const delay = (ms) => new Promise(_ => setTimeout(_, ms))
  const findButton = (txt) => [...document.querySelectorAll("button").entries()].map(([pos, btn]) => btn).filter(btn => btn.innerHTML === txt)[0]
@YAGOPORTELAYP
YAGOPORTELAYP / instagram-unfollow-users.md
Created October 28, 2023 02:05 — forked from aaditkamat/instagram-unfollow-users.md
Mass unfollow users on Instagram (no app needed)
  • Go to your profile on instagram.com (sign in if not already)
  • Click on XXX following for the popup with the users you're following to appear
  • Open Chrome Devtools and Paste the following into the Console and hit return:
(async function(){
  const UNFOLLOW_LIMIT = 800
  const delay = (ms) => new Promise(_ => setTimeout(_, ms))
  const findButton = (txt) => [...document.querySelectorAll("button").entries()].map(([pos, btn]) => btn).filter(btn => btn.innerHTML === txt)[0]