Author

Topic: Twitter Codes (Read 131 times)

full member
Activity: 322
Merit: 158
Türkçe/English/Deutsch/Earthling----@Marshal---
June 05, 2018, 11:14:26 AM
#1
Select the page where the people you follow are,right click on the Unfollow button of any person, check the item. In the window that opens, click on the console and select which of the following Twitter Codes you want to copy Copy and paste the code into the console section, click enter and lean back.


Twitter collective Unfollow Code:

setInterval(function () {
t = $(".following").find(".follow-button");
if (!t[0]) {
window.scrollTo(0, $(document).height());
} else {
console.log(t.attr("class"));
t.trigger("click");
}
}, 1000)


Code for stop following those who do not follow you:

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);


Bulk tracking code (Automatically scrolls down the page and tracks everything on the current page, but can't also auto follow accounts that require approval for follow-up ; Process may need to be restarted):

var say = 0;
var limit = 1000
var takipyap = setInterval(function() {
$(".ProfileCard-bio.u-dir:empty").each(function(){
$(this).parents(".Grid-cell.u-size1of2.u-lg-size1of3.u-mb10").remove();
});
$('div.not-following:not(.protected) > button.js-follow-btn').each(function(){
$(this).click();
if(say++ >= limit){
clearInterval(takipyap);
window.alert(limit+' kisi basariyla takip edildi.')
return false;
}
$(".message-text > a").each(function(){
if ($('.alert-messages').css('top') === '46px') {
clearInterval(takipyap);
clearInterval(asagi);
clearInterval(yukari);
}
})
});
}, 1000);
setInterval(function() {
$(".Grid-cell.u-size1of2.u-lg-size1of3.u-mb10").remove();
}, 60000);
var asagi = setInterval(function() {
$(window).scrollTop(0,document.body.scrollBottom);
},10009);
var yukari = setInterval(function() {
window.scrollTo(0,document.body.scrollHeight);
},1000);



Note: Your twitter account can locked because you have left or followed a large number of people, or if you get a warning that your account has been locked when you come to the home, change your password to unlock it. If my site hangs up, close and reopen the page and re-execute the process
Jump to: