I tried to block the annoying popup advertisement on movie-blog[dot]org but nothing helps. I tried several strings with AdBlock Plus. I analyzed the code with Firebug to get the frame code. No success yet.
For example, i tried this and several other strings:
##IFRAME[id="shpujixmntsgsyquogzm"][src="https://www.stargames.com/nrgs/de/landing?refererId=79465*"]
##script[src^="http://displayad.layer-ad.org/delivery/ad.php?*"]
Anyone able to block the popup with AdBlock Plus or NoScript?
This one should work: ||www.movie-blog.org/layer/layernew5.js^$domain=movie-blog.org,script
Here are some notes why:
##
are merely for hiding elements that are already on the page (i.e. <iframe>
, etc.) so the ad won't be prevented from downloading by using those.*
as a placeholder character such as in ad.php?*
.And some more info on the filter I suggested:
||
is a placeholder for http://
and https://
^
is a placeholder for the end of the string or other separator characters$
separates the match pattern from the filter optionsdomain=...
limits the filter to only be active on that domainscript
limits the filter to JavaScript resourcesSource: https://adblockplus.org/filters