Merhabalar, bir önceki konumda bahsettiğim Twitter'da Sizi Takip Etmeyenleri Takipten Tek Tıkla Çıkarın adlı makalemde bahsettiğim yazımda kodları nasıl kullanabileceğinizi açıkça özetlemiştim.
Şimdi ise sizlerin bu kodları kullanabildiğinizi varsayarak, takip etmeyenleri çıkarma, otomatik twit favlama ve otomatik takip etme kodlarını paylaşacağım.
Twitter Takip Etmeyenleri Takipten Çı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 :
javascript: var followers = $(".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)}
Facebook Yorumları
Disqus Yorumları