SatoshiTURK
Programmer
- BNB
- 0,00967129
aşağıdaki kodu konsola yapıştırıp enter tuşuna basın
Twitter toplu takip bırakma
Twitter toplu takip bırakma nasıl yapılır
Twitter toplu takip bırakma uygulaması
Twitter toplu takip bırakma scripti
Twitter toplu takip bırakma aracı
Twitter toplu takip bırakma yöntemleri
Twitter toplu takip bırakma siteleri
Twitter toplu takip bırakma hilesi
function unfollowEveryone() {
const interval = 2000; // İki işlem arasındaki zaman (milisaniye cinsinden).
const scrollInterval = 500; // Otomatik kaydırma sıklığı (milisaniye cinsinden).
const unfollowInterval = setInterval(() => {
// "Takip ediliyor" butonlarını bul.
const buttons = document.querySelectorAll('div[data-testid$="-unfollow"]');
if (buttons.length === 0) {
console.log("Daha fazla takip edilen kullanıcı bulunamadı. Sayfa sonuna gelindi.");
clearInterval(unfollowInterval);
return;
}
for (let button of buttons) {
// Her bir butona tıkla.
button.click();
// Takipten çıkma onayı için açılan menüde "Takipten Çık" butonunu bul ve tıkla.
const confirmButton = document.querySelector('div[data-testid="confirmationSheetConfirm"]');
if (confirmButton) {
confirmButton.click();
}
}
// Sayfayı aşağı kaydır.
window.scrollTo(0, document.body.scrollHeight);
}, interval);
// Belirli aralıklarla sayfayı otomatik kaydır.
setInterval(() => {
window.scrollTo(0, document.body.scrollHeight);
}, scrollInterval);
}
// Fonksiyonu çalıştır.
unfollowEveryone();
Twitter toplu takip bırakma
Twitter toplu takip bırakma nasıl yapılır
Twitter toplu takip bırakma uygulaması
Twitter toplu takip bırakma scripti
Twitter toplu takip bırakma aracı
Twitter toplu takip bırakma yöntemleri
Twitter toplu takip bırakma siteleri
Twitter toplu takip bırakma hilesi