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();
İnstagram Otomatik Takip Edilenleri Çıkarma Kodu
8
●334
- 30-04-2025, 04:28:30Merhabalar, 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.
- 30-04-2025, 05:24:36Bu kodun çalışması lazım test etmedim ama günde 100-150 tane çıkarılması lazım max yoksa bloklanabilir hesabınız bilginiz olsun.
let delay = 4000; // Her kişi arasında bekleme süresi let count = 0; let limit = 20; // En fazla kaç takipçiyi çıkaracağını ayarla function removeFollower() { const moreButtons = Array.from(document.querySelectorAll('button')) .filter(btn => btn.getAttribute('aria-label') === 'Kullanıcı seçenekleri' || btn.innerText === '...'); if (count >= limit || moreButtons.length === 0) { console.log("İşlem tamamlandı."); return; } let btn = moreButtons[0]; btn.scrollIntoView({ behavior: 'smooth', block: 'center' }); btn.click(); console.log(`Takipçi ${count + 1} çıkarılıyor...`); let tryCount = 0; function tryRemoveClick() { const removeBtn = Array.from(document.querySelectorAll('button')) .find(b => b.textContent.trim() === "Çıkar" || b.textContent.trim() === "Remove"); if (removeBtn) { removeBtn.click(); count++; setTimeout(removeFollower, delay); } else if (tryCount < 10) { tryCount++; setTimeout(tryRemoveClick, 500); } else { console.warn("Çıkar butonu bulunamadı."); count++; setTimeout(removeFollower, delay); } } setTimeout(tryRemoveClick, 1000); } removeFollower();
- 30-04-2025, 16:16:14shms adlı üyeden alıntı: mesajı görüntüle