allow ads on several sites

Posting here is no longer possible, please use the forum of a filter list project, such as EasyList
Locked
adamsonich
Posts: 1
Joined: Tue Nov 17, 2015 11:16 am

allow ads on several sites

Post by adamsonich »

example http://acomics.ru/~dreamcatchers/8 Right middle of screen. They use yandex ads
inserting ads to

Code: Select all

<div id="yandex_ad"></div>
and link to ads is "an.yandex.ru/system/context.js"

this is not helped:

Code: Select all

@@|http://acomics.ru/
@@||http://acomics.ru/
@@||http://acomics.ru/*
and http://www.nexusmods.com/newvegas/mods/45171/ Top banner and right middle part of screen.

Code: Select all

	<div id="ad-right">
		<div id="square-block"><script>$( window ).load( function(){ Ads.create('medrec', 'square-block'); });</script></div>

		<div id="ad-right-text">
			<a href="http://www.nexusmods.com/newvegas/users/premium/">Remove these ads</a>
		</div>
	</div>
and

Code: Select all

	<div id="pub728x90">
		<div id="top-bar">
			<script>
				if ( hide_leaderboard === false )
				{
					$( window ).load( function(){ Ads.create('leaderboard', 'top-bar'); });
				}
			</script>
		</div>
		
	</div>
		<script>

		//$( window ).load( function(){ Ads.layoutComplete(); });
		
		var adsBlocked = false;
		
		if ( document.getElementById("tester") == undefined )
		{
			$('#pub728x90').remove();
			document.write('<div style="float: left; width: 728px; height: 90px; background: #313131;"><a href="http://www.nexusmods.com/newvegas/users/supporter/"><img src="http://staticdelivery.nexusmods.com/contents/images/pub_horizontal.png" /></a></div>');
			adsBlocked = true;
		}
		</script>
		<div id="ad_cover"> </div>
User avatar
mapx
Posts: 21940
Joined: Thu Jan 06, 2011 2:01 pm

Re: allow ads on several sites

Post by mapx »

add

Code: Select all

||an.yandex.ru/system/context.js$domain=acomics.ru
acomics.ru###contentSide > DIV:first-child
@@||nexusmods.com^$script
remove other (wrong) custom filters for these sites
Locked