Hello,
I won’t drag this out. If you are building a Twitter account using the follow-for-follow method and trying to turn it into an influencer account, it is important to unfollow those who don’t follow you back. Or to follow people quickly. Without further ado, I’ll mention a few codes so you don’t have to waste money on Twitter systems.
What you need to do is right-click in browsers like Google Chrome, Opera, and Yandex and select “Inspect Element”. Then go to the “Console” tab and paste the code below. For example; when you want to follow the followers of a large profile;
__cnt__=0; jQuery('.stream span.button-text, span.follow-text').each(function (i, ele) { ele = jQuery(ele); if (ele.css('display')!='block') {console.log('already following:', i); return;} setTimeout(function () {ele.click();}, __cnt__++*500); });
The more people you want to follow, the more you should scroll down the page. If you say “that’s fine but I didn’t like the drudgery of scrolling down this page,” the code below will scroll down the page for you.
$(document).ready(function () { var zamanlayici = false; zamanlayici = setInterval(function () { var sayfaKaydirma = $(window).scrollTop(); if (sayfaKaydirma + $(window).height() == $(document).height() || sayfaKaydirma + $(window).height() > 90000 ) { clearInterval(zamanlayici); } else { sayfaKaydirma = sayfaKaydirma + 2000; $('html, body').animate({ scrollTop: sayfaKaydirma }, 1); } }, 570); });
After performing the page scrolling operation, you can immediately use the auto-follow code.
So far so good… So, how will you unfollow those you follow but who don’t follow you back? Thanks to our code below, doing this is also quite possible. First, to find people who don’t follow you back, go to your Profile and then to the page of people you are following. Then select “Inspect Element” and “Console” tabs and paste the code. That’s all there is to it.
setInterval(function() { $(".FollowStatus").each(function(){ $(this).parents(".Grid-cell.u-size1of2.u-lg-size1of3.u-mb10").remove(); }); $("div:not(.not-following) > .user-actions-follow-button").click(); }, 20000); setInterval(function() { $(".Grid-cell.u-size1of2.u-lg-size1of3.u-mb10").remove(); }, 30000); setInterval(function() { window.scrollTo(0,document.body.scrollBottom); },5000); setInterval(function() { window.scrollTo(0,document.body.scrollHeight); },1000);
I wrote this in a hurry. Because I strongly believe in the sincerity of this forum and my teacher Samet in sharing information, I hope this forum fills up with useful information. Good luck to everyone.