Hi there, Let's say I have a list of 100 websites and without viewing them in the browser I want to know that are these sites using adsense or not, so can anyone tell me please that is there any utility or tool, which tells that a site is using Google Adsense. Any help will be highly appreciated. Regards bushib
I would go to the sites. If your trying to block or filter low paying sites you have to see if they have adsense ads or clickbank ads. I block those sites becuase they always pay me alot less.
On their homepage or on just any page on the site? If just on the homepage (AND if you have access to lynx AND are running on *nix) then put the list of sites in a file called list.dat, create a csh script with the following in it and run that, it produces a list of those sites which have the ads on the homepage: #!/bin/csh foreach SITE (`cat list.dat`) lynx -source $SITE | grep pagead2.googlesyndication.com/pagead/show_ads.js > /dev/null && echo $SITE end If the above conditions do not describe your situation, have to try some other way.
Hi there, Actually I want to know about any tool or software utility for this purpose. Any help will be appreciated. Regards bushib
Do you want to check the whole site or just the homepage? One is a lot easier than the other since the first one requires you to pretty much spider their site. A big question would be: Why? Perhaps there is another solution if we know the reason for wanting to know.
ya, one is a lot easier then the other. i can make a web based tool to check if its on the homepage in about 5 minutes, but if you want it to check the whole site, it would be considerably longer, as it has to follow links and all that. Matthew
you could just use adwords... sign up go to site targeting, make up a fake ad, and put the list of urls into it, will drop the ones that dont have adsense. Though this is not 100%. As they must have a certain ammount of traffic. Pierce