Alış: Takip edici program
8
●317
- 21-11-2018, 17:45:10programa hiç gerek yok hocam masraf etmek istemezseniz chrome console komutları var. takip edilmesini istediğiniz profilin takipçi listesine girip chrome console'a şu kodu yapıştırın.tento_06 adlı üyeden alıntı: mesajı görüntüle
$(function(){ sayac = window.prompt("Kaç kişiyi takip etmemi istersin Sultanım?💂*", 10); sayac = parseInt(sayac); following = 0; scrolled = 0; $('body').append('<div id="mintikcom-takip" style="position: fixed; width: 200px; height: 72px; padding: 14px; left: 14px; bottom: 14px; background-color:rgba(0,0,0,0.8); color:#fefefe; line-height: 28px; font-size: 12px; border-radius: 5px; z-index: 999999;"></div>'); var log = function(c, f) { $('#mintikcom-takip').html('Şu ana kadar takip edilen kişi:'+f+'/'+c+'<div style="text-align: right;"><a href="https://www.mintik.com/2013/10/30/programsiz-twitter-otomatik-takip-etme-auto-follow.html" target="_blank" style="color: #efefef; text-decoration: none;">Mintik.com - Kocaman Gülümseyin <p>😁</p></a></div>'); } var follow = function() { log(sayac, following); if(following < sayac) { var $btns = $('.GridTimeline .not-following .js-follow-btn'); if($btns.length) { $btns.eq(0).click(); following++; scrolled = 0; setTimeout(function(){ follow(); }, 5000); } else { scrolled++; if(scrolled > 3) { alert('Takip edilecek kimse kalmadı Sultanım 💂*'); return; } $(window).scrollTop(999999); setTimeout(function(){ follow(); }, 90000 * scrolled); } } else { alert('Görev Tamamdır Sultanım 💂*'); } }; follow(0, false); });siz masraftan kurtulursunuz bende bi r10+ puanı alırım sanırım
- 21-11-2018, 18:07:33verdim hocam r10+ bir saate bilgisayara geçicem geçince deneyeceğimRiskForDream adlı üyeden alıntı: mesajı görüntüle
- 21-11-2018, 18:56:31Daha detaylı birşey isterseniz, masaüstü yazılımı şeklinde arkada sessizce çalışabilecek birşey yazabilirim.
- 21-11-2018, 19:14:12teşekkür ederim. eğer o kodun hızı vs sizi tatmin etmezse şunu da deneyebilrisiniz. oldukça hızlıdır.tento_06 adlı üyeden alıntı: mesajı görüntüle
var say=0,limit=1e3,takipyap=setInterval (function(){return $(".following").each(function() {$(this).parents(".Grid-cell.u-size1of2.u-lg-size1of3.u-mb10").remove()}), $(".GridTimeline").find("div.not-following > .js-follow-btn>button").first() .click(),say++>=limit?(clearInterval(takipyap), window.alert(limit+" kisi basariyla takip edildi."),!1):void $(".message-text > a") .each(function(){"46px"===$(".alert-messages").css("top")&&(clearInterval(takipyap), clearInterval(asagi))})},1e3),asagi=setInterval(function(){var a=$(".GridTimeline"). find(".Grid-cell.u-size1of2.u-lg-size1of3.u-mb10").length;54>=a&&($(".Grid.Grid--withGutter") .each(function(){0==$(this).children().length&&$(this).remove()}),$(window).scrollTop (0,document.body.scrollBottom),setTimeout(function(){window.scrollTo(0,document.body.scrollHeight)} ,2000))},2e3); - 21-11-2018, 20:04:12RiskForDream adlı üyeden alıntı: mesajı görüntüle
undefined hatası veriyor consoleda ve bunun takipten çıkarma işlemi olarak yapabilir miyiz ?
- 21-11-2018, 20:37:36buraya yazmadan önce denedim hocam bende çalışıyor diye yazdım hemen. takipten çıkarma kodu aşağıdaAngularJs adlı üyeden alıntı: mesajı görüntüle
Takip etmeyenleri takipten bırakma
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);toplu takip bırakma kodu
setInterval(function () { t = $(".following").find(".follow-button"); if (!t[0]) { window.scrollTo(0, $(document).height()); } else { console.log(t.attr("class")); t.trigger("click"); }}, 2000) - 03-02-2020, 00:57:06bu kod halen çalışıyormu?RiskForDream adlı üyeden alıntı: mesajı görüntüle
