Twitter'da bir kişinin takipçilerini toplu olarak takip etmek artık çok kolay. Size vereceğim kod ile toplu takip yapabileceğiz. Burada bir uyarıda bulunmak lazım. Günlük 1000 kullanıcıdan fazla takip yapamıyorsunuz ve bu işlemde hesabınız kilitlenebilir. Hesabınızın kilitlenmesi sizi sakın korkutmasın, tekrardan hemen açabilirsiniz.
Şimdi gelelim konumuza. İlk olarak takipçilerine takip etmek istediğimiz kullanıcının "Takipçiler" kısmına giriyoruz.
Daha sonra boş bir alana fare ile çift tıklıyoruz ve "Öğeyi Denetle" diyoruz. Daha sonra "Consol" kısmına geliyoruz ve aşağıda yer alan kodu yapıştırıp "Enter" tuşuna basıyoruz.
TopluTakip Kodu: ⏬ Kodları görmek için tıklayın
NOT: Takipçi sayfasını ne kadar aşağı kaydırırsanız o kadar çok kişiyi takip eder. Kolay sayfa kaydırmak için klavyenizde bulunan "END" tuşuna basınız.
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! Esenlikler dileriz. [steemit.com/@muskafa]")
}
};
if (confirm(" " + followers.length + " kisi takip edilsin mi?")) {
follow(0)
}
Hello & Cheers!! I'm a content detection and information bot. You are receiving this reply because a short link or links have been detected in your post/comment. The purpose of this message is to inform your readers and yourself about the use of and dangers of short links.
To the readers of the post: Short links are provided by url shortening services. The short links they provide can be useful in some cases. Generally their use is benign. But as with all useful tools there are dangers. Short links can be used to hide all sorts of things. Quite frequently they are used to hide referral links for instance. While not dangerous this can be deceptive. They can also be used to hide dangerous links such as links to phishing sites, sites loaded with malware, scam sites, etc. You should always be extremely cautious before clicking on one. If you don't know and trust the poster don't click. Even if you do you should still be cautious and wary of any site you are sent to. It's always better to visit the site directly and not through a short link.
To the author of the post: While short links may be useful on some sites they are not needed on steemit. You can use markdown to format your links such as this link to steemit. It's as simple as
[steemit](https://steemit.com)
Unlike short links this allows the reader to see where they are going by simply hovering over the link before they click on it.Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
20 kişi ile deneme yaptım. Tıkır tıkır çalışıyor.
Teşekkürler. Eline sağlık ;)
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit