Is there a way to NOT load the adsense code on a particular page in case I detect the page is being displayed in an iframe? I'm really not comfortable with people framing my pages, especially when it results in my adsense code being displayed on 3rd party websites. (That "allowed sites" option in WMT doesn't solve the issue, because the adsense code is essnetially loaded by my page, and not the framing window.)
I was thinking something in the lines of wrapping the adsense code like this (since we're not allowed to modify the actual AdSense code...)
if (top==self) {
AdSense Code
}
thanks!