hey there mates,
I found script that blocks anyone using Adblock from your site if your using Adsense...
Put this script on your site. Anyone using Adblock extension with FireFox will get This welcoming message...
:hehe:
I found this at a Thread here
http://www.adsensechat.com/showthread.php?t=6624
Usefull for those who might be losing adsense revenue due to Adblock...
I found script that blocks anyone using Adblock from your site if your using Adsense...
Put this script on your site. Anyone using Adblock extension with FireFox will get This welcoming message...
Code:
<script>
function dieAdBlockPlusDie()
{
var giframe = document.getElementsByTagName("iframe");
var blocked=1;
for (var i = 0; i < giframe.length; i++)
{
var name = giframe[i].getAttribute("name");
if(name == "google_ads_frame")
{
var blocked=0;
}
}
if(blocked){window.location = 'http://articlewagon.com/thief.htm';}
}
setTimeout('dieAdBlockPlusDie()', 2000);
</script>
I found this at a Thread here
http://www.adsensechat.com/showthread.php?t=6624
Usefull for those who might be losing adsense revenue due to Adblock...
Last edited:














