SELAMAT DATANG DI BLOG,HIBURAN FACEBOOK.TEMPAT BERBAGI INFORMASI SEPUTAR TEKNOLOGI,INFORMASI , PENGETAHUAN Dan Canda Tawa.

Cara Cepat Mendapatkan 1000 Teman Dalam 1 Menit

Posted by Reza Anugrah Minggu, 09 Juni 2013 0 komentar
kali ini penulis akan share tentang script autolike facebook. yaitu sebuah script java yang berguna untuk menglike semua status hanya dengan sekali klik. aslinya script ini punya JASON dan cuman bisa like dan unlike all status.

kemudian [ini serunya] penulis kembangkan menjadi auto like comment, auto confirm dan auto add friends. sangar! beberapa fitur jelas berbahaya dan beresiko untuk diblokir oelh pihak facebook. jadi gunakan secara bijak. sebelum menuju scriptnya, ada baiknya anda membaca tentang fitur-fiturnya:

ABOUT fitur [important!]

1. auto like/unlike statues and comments

ini fitur standar semua juga dah paham. khusus untuk auto unlike comment, tombol ini tidak berfungsi, sehingga kalo anda ingin unlike comment tinggal klik tombol auto like komen aja maka semua yang unlike jadi like.

like status menggunakan script ini juga beresiko untuk diblokir walau kemungkinannya dikit. jadi gunakan dengan hati-hati

2. auto confirm

ini berguna bagi anda yang punya banyak fans. bayangkan saja kalo yang minta request tu 150 orang! khan capek nge kliknya. ajibnya, fitur ini aman dari blokir. he he he. untuk menggunakannya, masuk dulu ke halaman www.facebook.com/reqs.php dulu. kemudian klik auto konfirm.

3. auto add friends [ati-ati!]

ini fitur yang sangat beresiko untuk diblokir. penulis pernah diblokir 2 minggu gara2 script ini. script ini mampu menambah ratusan atau bahkan ribuan friend. tapi facebook cuman memperbolehkan add friend sekitar 100 perhari (kurang tau brapa). jadi kalo pas add friend jangan di scroll ke bawah (karena akan nambah terus friends listnya). cukup diatas halaman aja. script ini hanya berjalan pada halaman yang ada tombol add friend saja.
Penggunaan

gunakan browser firefox dan gunakan plugin grease monkey untuk menjalankan scriptnya. dan inilah scriptnya….

// ==UserScript==
// @name Facebook AutoLike
// @namespace AutoLike
// @description Auto like-unlike komen dan status, auto konfirm, auto add friend. by amy sidra
// @include http://www.facebook.com/*
// ==/UserScript==

// ==Expand==
body = document.body;
if(body != null) {
div = document.createElement("div");
div.style.position = "fixed";
div.style.bottom = "+102px";
div.style.left = "+6px";
div.style.backgroundColor = "#eceff5";
div.style.border = "2px solid #94a3c4";
div.style.padding = "2px";
div.innerHTML = "<a style=\"font-weight:bold;color:#333333\" href=\"JavaScript:AutoExpand()\">Expand Komen</a>"

body.appendChild(div);

unsafeWindow.AutoExpand = function() {

buttons = document.getElementsByTagName("input");
for(i = 0; i < buttons.length; i++) {
myClass = buttons[i].getAttribute("class");
if(myClass != null && myClass.indexOf("") >= 0)
if(buttons[i].getAttribute("name") == "view_all[1]")
buttons[i].click();
}

};
}
// ==============
// ==Statuses==
body = document.body;
if(body != null) {
div = document.createElement("div");
div.style.position = "fixed";
div.style.bottom = "+72px";
div.style.left = "+6px";
div.style.backgroundColor = "#eceff5";
div.style.border = "2px solid #94a3c4";
div.style.padding = "2px";
div.innerHTML = "<a style=\"font-weight:bold;color:#333333\" href=\"JavaScript:AutoLike()\">Like semua status</a>"

body.appendChild(div);

unsafeWindow.AutoLike = function() {

buttons = document.getElementsByTagName("button");
for(i = 0; i < buttons.length; i++) {
myClass = buttons[i].getAttribute("class");
if(myClass != null && myClass.indexOf("like_link") >= 0)
if(buttons[i].getAttribute("name") == "like")
buttons[i].click();
}

};
}
// ==============
//add friends
body = document.body;
if(body != null) {
div = document.createElement("div");
div.style.position = "fixed";
div.style.bottom = "+122px";
div.style.left = "+6px";
div.style.backgroundColor = "#eceff5";
div.style.border = "2px solid #94a3c4";
div.style.padding = "2px";
div.innerHTML = "<a style=\"font-weight:bold;color:#333333\" href=\"JavaScript:AutoAddFriends()\">Add Friends</a>"

body.appendChild(div);

unsafeWindow.AutoAddFriends = function() {

buttons = document.getElementsByTagName("label");
for(i = 0; i < buttons.length; i++) {
myClass = buttons[i].getAttribute("class");
if(myClass != null && myClass.indexOf("FriendRequestAdd") >= 0)
buttons[i].click();
}

};
}
//akhir add friend
//auto confirm
body = document.body;
if(body != null) {
div = document.createElement("div");
div.style.position = "fixed";
div.style.bottom = "+172px";
div.style.left = "+6px";
div.style.backgroundColor = "#eceff5";
div.style.border = "2px solid #94a3c4";
div.style.padding = "2px";
div.innerHTML = "<a style=\"font-weight:bold;color:#333333\" href=\"JavaScript:AutoKonfirm()\">Auto Konfirm</a>"

body.appendChild(div);

unsafeWindow.AutoKonfirm = function() {

buttons = document.getElementsByTagName("label");
for(i = 0; i < buttons.length; i++) {
myClass = buttons[i].getAttribute("class");
if(myClass != null && myClass.indexOf("uiButtonConfirm") >= 0)
buttons[i].click();
}

};
}
//akhir auto confirm
// ==============
// ==Unlike Statuses==
body = document.body;
if(body != null) {
div = document.createElement("div");
div.style.position = "fixed";
div.style.bottom = "+52px";
div.style.left = "+6px";
div.style.backgroundColor = "#eceff5";
div.style.border = "2px solid #94a3c4";
div.style.padding = "2px";
div.innerHTML = "<a style=\"font-weight:bold;color:#333333\" href=\"JavaScript:AutoUnLike()\">Unlike semua status</a>"

body.appendChild(div);

unsafeWindow.AutoUnLike = function() {

buttons = document.getElementsByTagName("button");
for(i = 0; i < buttons.length; i++) {
myClass = buttons[i].getAttribute("class");
if(myClass != null && myClass.indexOf("like_link") >= 0)
if(buttons[i].getAttribute("name") == "unlike")
buttons[i].click();
}

};
}
// ==============
// ==Comments==
body = document.body;
if(body != null) {
div = document.createElement("div");
div.style.position = "fixed";
div.style.bottom = "+22px";
div.style.left = "+6px";
div.style.backgroundColor = "#eceff5";
div.style.border = "2px solid #94a3c4";
div.style.padding = "2px";
div.innerHTML = "<a style=\"font-weight:bold;color:#333333\" href=\"JavaScript:AutoLikeComments()\">Like semua komen</a>"

body.appendChild(div);

unsafeWindow.AutoLikeComments = function() {

buttons = document.getElementsByTagName("button");
for(i = 0; i < buttons.length; i++) {
myClass = buttons[i].getAttribute("class");
if(myClass != null && myClass.indexOf("cmnt_like_link") >= 0)
buttons[i].click();

}

};
}
// ==============
// ==Unlike Comments==
body = document.body;
if(body != null) {
div = document.createElement("div");
div.style.position = "fixed";
div.style.bottom = "+2px";
div.style.left = "+6px";
div.style.backgroundColor = "#eceff5";
div.style.border = "2px solid #94a3c4";
div.style.padding = "2px";
div.innerHTML = "<a style=\"font-weight:bold;color:#333333\" href=\"JavaScript:AutoUnLikeComments()\">Unlike all comments</a>"

body.appendChild(div);

unsafeWindow.AutoUnLikeComments = function() {

buttons = document.getElementsByTagName("button");
for(i = 0; i < buttons.length; i++) {
myClass = buttons[i].getAttribute("class");
if(myClass != null && myClass.indexOf("") >= 0)
if(buttons[i].getAttribute("title") == "Unlike this comment")
buttons[i].click();
}

};
}
// ==============
body = document.body;
if(body != null) {
div = document.createElement("div");
div.style.position = "fixed";
div.style.bottom = "+142px";
div.style.left = "+6px";
div.style.backgroundColor = "#eceff5";
div.style.border = "2px solid #94a3c4";
div.style.padding = "2px";
div.innerHTML = "<a style=\"font-weight:bold;color:#333333\" href=\"http://maherzen.com/\">MaherZen</a>"

body.appendChild(div);
}

0 komentar:

Posting Komentar