Merhabalar, ihtiyacım doğrultusunda hazırladığım bir kod isteyenler kullanabilir. Kullanımı çok basit PC tarayıcıdan instagram hesabınıza giriş yapıp takip edilenler sekmesini açtıktan sonra F12 de bulunan console kısmına alttaki kodu yapıştırmak.

let delay = 4000; // Kişi başı bekleme süresi (ms cinsinden)
let count = 0;
let limit = 20; // En fazla kaç kişiyi çıkarmak istediğini ayarla

function unfollowNext() {
  const button = Array.from(document.querySelectorAll("button"))
    .find(btn => btn.innerText === "Takiptesin" || btn.innerText === "Following");

  if (!button || count >= limit) {
    console.log("İşlem tamamlandı.");
    return;
  }

  button.scrollIntoView({ behavior: 'smooth', block: 'center' });
  button.click();
  console.log(`Kişi ${count + 1} takipten çıkarılıyor...`);

  let tryCount = 0;

  function tryConfirmClick() {
    const confirmBtn = Array.from(document.querySelectorAll("button"))
      .find(btn => btn.textContent.trim() === "Takibi Bırak" || btn.textContent.trim() === "Unfollow");

    if (confirmBtn) {
      confirmBtn.click();
      console.log(`Takibi bırakıldı: ${count + 1}`);
      count++;
      setTimeout(unfollowNext, delay);
    } else if (tryCount < 10) {
      tryCount++;
      setTimeout(tryConfirmClick, 500);
    } else {
      console.warn("Onay butonu bulunamadı. Sonraki kişiye geçiliyor.");
      count++;
      setTimeout(unfollowNext, delay);
    }
  }

  setTimeout(tryConfirmClick, 800);
}

unfollowNext();