Güncel 2019 Twitter da toplu takip etmeyenleri temizle, beğenileri temizle, twitleri sil
şimdi de
kodu kullanmayı anlatalım
Bu kodları şu şekilde
kullanıyoruz takip ettiklerimiz kısmına gelip sağa klik yapıyoruz en altta
incele var basın sayfa bölünecek ve solda kod yazma yerleri gelecek siz önce console yazan
yere tıklayın ve ilk boşlukta kodu yapıştırıp enter yapınız.
TAKİBİ BIRAKANLARI TAKİPTEN ÇIKARMA 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 da beğenileri iptal etme KODU
unfavori = setInterval(function(){
$('.stream-items >
.js-stream-item.stream-item.stream-item').each(function(){
$('.stream-items >
.js-stream-item.stream-item.stream-item').find(".ProfileTweet-actionButton.js-actionFavorite")[0].click();
$('.stream-items >
.js-stream-item.stream-item.stream-item')[0].remove();
})
},500)
kontrol = setInterval(function(){
var tweetsys = $('.stream-items >
.js-stream-item.stream-item.stream-item').length;
if(tweetsys < 50 || tweetsys ==
50){
$(window).scrollTop(0,document.body.scrollBottom);
setTimeout(function(){
window.scrollTo(0,document.body.scrollHeight);
},200);
}
},3000)
Toplu twit silme kodu
var kac_tweet_atla = 0;
setInterval(function() {
setTimeout(function(){
$(".Icon.Icon--small.Icon--retweeted").parents(".js-stream-item.stream-item.stream-item").remove()
$(".stream-item").find(".js-actionDelete
> button")[kac_tweet_atla].click();
},1000)
setTimeout(function(){
$(".EdgeButton.EdgeButton--danger.delete-action").click();
},1000)
},2000)
setInterval(function() {
window.scrollTo(0,document.body.scrollBottom);
},10000);
setInterval(function() {
window.scrollTo(0,document.body.scrollHeight);
},1000);