There's a website that won't deliver its content if its ads are blocked. The HTML snippet that loads the ads appears to be:
< script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js" >
< /script >
googlesyndication.com is in the blacklist. I added it to the whitelist in order to get the website to work:
|| dnsDomainIs(host, "googlesyndication.com")
Of course, this means I'm not blocking Google Ads on any website, anywhere. Is there a way to revise the whitelist entry, such that Google Ads are allowed within just the one site? Perhaps something like:
|| dnsDomainIs(host, "googlesyndication.com") && ??? = "arpa3.net"
The trouble is, I don't know any way to return the DNS name of the site that loads the content at issue, rather than of the content itself. |