Twitter Takip etmeyenleri çıkarma kodu :

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


Twitter Otomatik twitleri favlama kodu :

setInterval(function(){
$(".favorited").parents(".js-stream-item.stream-item.stream-item").remove();
var yeni_tweet = $(".stream-container").find(".new-tweets-bar.js-new-tweets-bar").attr('data-item-count');
var tweet = $('.stream-items.js-navigable-stream >.js-stream-item.stream-item.stream-item').length;
if(tweet > 0){
$(".ProfileTweet-actionButton.js-actionFavorite")[0].click();
setTimeout(function(){
$('.js-stream-item.stream-item.stream-item')[0].remove();
},500);
}
if(tweet < 2 && yeni_tweet > 0){
$(".new-tweets-bar.js-new-tweets-bar").click();
}
},1000);


Twitter Otomatik Takip etme kodu :


".not-following");
var user = $(".current-user a").attr("href");
var unfollowed = localStorage[user + "-unfollowed"] || "[]";
unfollowed = JSON.parse(unfollowed);
var j = 0;
var follow = function(e) {
if (e < followers.length) {
var t = 500;
if ($.inArray($(followers[e]).data("user-id"), unfollowed) == -1) {
$(followers[e]).find(".follow-button").click();
j++
} else {
t = 500
}
setTimeout(function() {
follow(e + 1)
}, t)
} else {
alert(" " + j + " kisi takip edildi!!")
}
};
if (confirm(" " + followers.length + " kisi takip edilsin mi?")) {
follow(0)
}