! Version: 1.0.23.25
! Name: Experimental filter
! Description: Filter designed to test certain hazardous filtering rules before they are added to the basic filters.
! NameEn: Experimental filter
! DescriptionEn: Filter designed to test certain hazardous filtering rules before they are added to the basic filters.
! TimeUpdated: 2015-11-13T21:06:15.871+03:00
! Adguard Experimental Filter
!
! Filter designed to test certain hazardous filtering rules before they are added to the basic filters.
!
! License: http://creativecommons.org/licenses/by-sa/3.0/
! Homepage: http://adguard.com/filters.html#experimental
!
!-------------------------------------------------------------------!
!------------------ General JS API ---------------------------------!
!-------------------------------------------------------------------!
! JS API START
!
#%#window.AG_onLoad = function(func) { if (window.addEventListener) { window.addEventListener('DOMContentLoaded', func); } };
#%#window.AG_removeElementById = function(id) { var element = document.getElementById(id); if (element && element.parentNode) { element.parentNode.removeChild(element); }};
#%#window.AG_removeElementBySelector = function(selector) { if (!document.querySelectorAll) { return; } var nodes = document.querySelectorAll(selector); if (nodes) { for (var i = 0; i < nodes.length; i++) { if (nodes[i] && nodes[i].parentNode) { nodes[i].parentNode.removeChild(nodes[i]); } } } };
#%#window.AG_each = function(selector, fn) { if (!document.querySelectorAll) return; var elements = document.querySelectorAll(selector); for (var i = 0; i < elements.length; i++) { fn(elements[i]); }; };
#%#var AG_removeParent = function(el, fn) { while (el && el.parentNode) { if (fn(el)) { el.parentNode.removeChild(el); return; } el = el.parentNode; } };
!
! JS API FINISH
!-------------------------------------------------------------------!
!------- Experimental rules for English filter ---------------------!
!-------------------------------------------------------------------!
!
! Advertising networks known rotator domains
!
! This section contains the list of rules blocking requests
! to known rotator domains of the advertising networks.
! For example, "*.doubleclick.net" are rotator domains
! of Doubleclick ad network.
!
! Do not mix it up with direct adverts domains.
! Read about it in direct_adverts.txt
!
!
! Direct adverts
!
! Contains rules which are blocking URLs to direct adverts.
! What do we mean by direct adverts - it is all kind of advertisers
! who are not ad networks.
!
! For example, rules that block referral links.
!
!
! URL blocking rules unsorted list
! http://adguard.com/filterrules.html#baseRules
!
! Add basic rule here if it cannot be added to
! direct_adverts.txt or advertising_networks.txt.
! For example rules like "http://example.com/banner.png"
! blocking specific URL should be added to this section.
!
!
! Common CSS rules
! http://adguard.com/filterrules.html#hideRules
! http://adguard.com/filterrules.html#cssInjection
!
! This section contains CSS rules without domain restrictions.
! Be cautious and add rules here even if you are sure that this
! rule could be used for more than one web site.
!
!
! Common HTML rules
! http://adguard.com/filterrules.html#htmlContentFilter
!
! This section contains the list of common HTML rules
! without domain restrictions.
! Be aware that rules added to this section cannot be used
! by Adguard extensions.
! We advise you to stick to CSS/Javascript/URL rule types
! and use HTML rules if there is no other way only.
!
!
! Common javascript rules
! http://adguard.com/filterrules.html#javascriptInjection
!
! Javascript rules which are not restricted to specific domains.
! Be VERY cautious with this type of rules.
!
!
! Rules that are restricted to one or more domains.
! This section contain any type of rule grouped by domain.
!
!
!
! Whitelist
! http://adguard.com/filterrules.html#exclusionRules
! http://adguard.com/filterrules.html#hideRulesExceptions
! http://adguard.com/filterrules.html#cssInjectionExceptions
! http://adguard.com/filterrules.html#javascriptInjectionExceptions
!
! This section contains all kinds of exception rules.
!
!-------------------------------------------------------------------!
!------- Experimental rules for Spyware filter ---------------------!
!-------------------------------------------------------------------!
!
! This file contains all experimental rules for Spyware filter.
!
!-------------------------------------------------------------------!
!------- Experimental rules for Social filter ----------------------!
!-------------------------------------------------------------------!
!
! This file contains all experimental rules for Social filter.
!
!-------------------------------------------------------------------!
!------- Experimental rules for Russian filter ---------------------!
!-------------------------------------------------------------------!
!
! Advertising networks known rotator domains
!
! This section contains the list of rules blocking requests
! to known rotator domains of the advertising networks.
! For example, "*.doubleclick.net" are rotator domains
! of Doubleclick ad network.
!
! Do not mix it up with direct adverts domains.
! Read about it in direct_adverts.txt
!
!
!
! Direct adverts
!
! Contains rules which are blocking URLs to direct adverts.
! What do we mean by direct adverts - it is all kind of advertisers
! who are not ad networks.
!
! For example, rules that block referral links.
!
!
! URL blocking rules unsorted list
! http://adguard.com/filterrules.html#baseRules
!
! Add basic rule here if it cannot be added to
! direct_adverts.txt or advertising_networks.txt.
! For example rules like "http://example.com/banner.png"
! blocking specific URL should be added to this section.
!
!
! Common CSS rules
! http://adguard.com/filterrules.html#hideRules
! http://adguard.com/filterrules.html#cssInjection
!
! This section contains CSS rules without domain restrictions.
! Be cautious and add rules here even if you are sure that this
! rule could be used for more than one web site.
!
!
! Common HTML rules
! http://adguard.com/filterrules.html#htmlContentFilter
!
! This section contains the list of common HTML rules
! without domain restrictions.
! Be aware that rules added to this section cannot be used
! by Adguard extensions.
! We advise you to stick to CSS/Javascript/URL rule types
! and use HTML rules if there is no other way only.
!
!
! Common javascript rules
! http://adguard.com/filterrules.html#javascriptInjection
!
! Javascript rules which are not restricted to specific domains.
! Be VERY cautious with this type of rules.
!
!
! Rules which are restricted to one or more domains.
! This section contain any type of rule grouped by domain.
!
! Rules which are restricted to one or more domains.
! This section contain any type of rule grouped by domain.
!
!
! Whitelist
! http://adguard.com/filterrules.html#exclusionRules
! http://adguard.com/filterrules.html#hideRulesExceptions
! http://adguard.com/filterrules.html#cssInjectionExceptions
! http://adguard.com/filterrules.html#javascriptInjectionExceptions
!
! This section contains all kinds of exception rules.
!
!-------------------------------------------------------------------!
!------- Experimental rules for Other filters ----------------------!
!-------------------------------------------------------------------!
!
! This file contains all filters other than English, Social, Spyware and Russian.
!
! antiblock.org test page
antiblock.org#%#var AG_AntiAntiBlock = function() { var baseCreateElement = document.createElement; document.createElement = function(name) { if (name && name.match(/div|font|center/i)) { return null; } else { return baseCreateElement(name); } } };
antiblock.org#%#AG_onLoad(function() { AG_AntiAntiBlock(); });
!------------------------------------------------
! http://forum.adguard.com/showthread.php?5021
! косяк в фильтре RU AdList: Counters
@@||my10.imgsmail.ru/mail/$domain=mail.ru
!-------------------------------------------------------------------!
!------- Experimental rules for Mobile ads filter-------------------!
!-------------------------------------------------------------------!
!
! Mobile advertising networks known rotator domains
! Used to show ads in mobile apps and websites
!
!-------------------------------------------------------------------!
!---------------------- Annoyances ---------------------------------!
!-------------------------------------------------------------------!
!
! This section contains all kinds of annoyances
!
!-------------------------------------------------------
!---------------------- Annoyances ---------------------
!-------------------------------------------------------
!
!---------------------- Advertising Annoyances ---------
!
! Dangerous "nofollow" links blocking rule
~joomla.ru,~keddr.com,~allkey.org,~wowjp.net,~ex-soft.in.ua,~bucwar.ru,~fsm-portal.net,~crox.ws,~softek.ucoz.ru,~dfm.ru,~hitfm.ru,~montecarlo.ru,~maximum.ru,~rusradio.ru,~metallurg.ru,~onlinefilmu.ru,~forum.ixbt.com,~igromania.ru,~yarportal.ru,~maxthon.org.ru,~firstvds.ru,~smotretfilmy.ru,~speedy-warez.ru,~blogig.org,~beeset.ru,~mh-soft.su,~respecta.net,~khabarovsk.farpost.ru,~moviez.kz,~games-java.ru,~rulit.net,~art-on.ru,~kinoshka-new.ru,~forum.esetnod32.ru,~kahai.ru,~planetaua.net,~capa.me,~delo.ua,~uznayvse.ru,~gamai.ru,~bloknot-rostov.ru,~car72.ru,~f1comp.ru,~bukvaved.biz##noindex a[rel="nofollow"]>img
!--- Start Google Chrome banner in non-IE browsers ---
translate.google.ru,translate.google.com##.gb_ae.gb_T#gb div.gb_ed.gb_ec.gb_g
google.ae,google.at,google.be,google.by,google.ca,google.ch,google.cl,google.cn,google.co.id,google.co.in,google.co.jp,google.co.th,google.co.uk,google.co.ve,google.co.za,google.com,google.com.ar,google.com.au,google.com.bd,google.com.br,google.com.co,google.com.eg,google.com.hk,google.com.mx,google.com.my,google.com.ng,google.com.pe,google.com.ph,google.com.pk,google.com.sa,google.com.sg,google.com.tr,google.com.tw,google.com.ua,google.com.vn,google.de,google.dk,google.ee,google.es,google.fr,google.gr,google.hu,google.ie,google.it,google.nl,google.no,google.pl,google.pt,google.ro,google.rs,google.ru,google.se,google.sk,google.tn###prt div.pmoabs
google.ae,google.at,google.be,google.by,google.ca,google.ch,google.cl,google.cn,google.co.id,google.co.in,google.co.jp,google.co.th,google.co.uk,google.co.ve,google.co.za,google.com,google.com.ar,google.com.au,google.com.bd,google.com.br,google.com.co,google.com.eg,google.com.hk,google.com.mx,google.com.my,google.com.ng,google.com.pe,google.com.ph,google.com.pk,google.com.sa,google.com.sg,google.com.tr,google.com.tw,google.com.ua,google.com.vn,google.de,google.dk,google.ee,google.es,google.fr,google.gr,google.hu,google.ie,google.it,google.nl,google.no,google.pl,google.pt,google.ro,google.rs,google.ru,google.se,google.sk,google.tn##.pdp-psyv
google.ae,google.at,google.be,google.by,google.ca,google.ch,google.cl,google.cn,google.co.id,google.co.in,google.co.jp,google.co.th,google.co.uk,google.co.ve,google.co.za,google.com,google.com.ar,google.com.au,google.com.bd,google.com.br,google.com.co,google.com.eg,google.com.hk,google.com.mx,google.com.my,google.com.ng,google.com.pe,google.com.ph,google.com.pk,google.com.sa,google.com.sg,google.com.tr,google.com.tw,google.com.ua,google.com.vn,google.de,google.dk,google.ee,google.es,google.fr,google.gr,google.hu,google.ie,google.it,google.nl,google.no,google.pl,google.pt,google.ro,google.rs,google.ru,google.se,google.sk,google.tn##.pdp-psy.og-pdp
google.ae,google.at,google.be,google.by,google.ca,google.ch,google.cl,google.cn,google.co.id,google.co.in,google.co.jp,google.co.th,google.co.uk,google.co.ve,google.co.za,google.com,google.com.ar,google.com.au,google.com.bd,google.com.br,google.com.co,google.com.eg,google.com.hk,google.com.mx,google.com.my,google.com.ng,google.com.pe,google.com.ph,google.com.pk,google.com.sa,google.com.sg,google.com.tr,google.com.tw,google.com.ua,google.com.vn,google.de,google.dk,google.ee,google.es,google.fr,google.gr,google.hu,google.ie,google.it,google.nl,google.no,google.pl,google.pt,google.ro,google.rs,google.ru,google.se,google.sk,google.tn##html > body > div[id="gb"][style="min-width: 750px;"] > div.gb_8b.gb_g
!--- End Google Chrome banner in non-IE browsers ---
! http://forum.adguard.com/showthread.php?7646
wowlol.ru##html > body > div#wrapper > div#topbox
! http://forum.adguard.com/showthread.php?7290
meduza.io##.MaterialTopBar
! fs - остатки под плеером
brb.to,cxz.to,fs.to##.b-player-popup__content > div[class]:not(.m-player-movie)
! http://forum.adguard.com/showthread.php?4311
bezformata.ru##body > div[style^="clear:both;width:100%;height:90px;"]
! http://forum.adguard.com/showthread.php?5604
max.de##div[style$="padding:15px; height:90px; "]
max.de##div[style$="padding: 15px; height: 90px;"]
! radikal - текстовая реклама
f-picture.net,radical-foto.ru,radikal.cc,radikal.ru##.footer a[target="_blank"]
f-picture.net,radical-foto.ru,radikal.cc,radikal.ru##.site-footer a[target="_blank"]
! di.fm - remains of ads
di.fm##.secondary > .bare
! http://forum.adguard.com/showthread.php?6154
business-gazeta.ru##.left-colum > div.box > div.ctext.ctext_2
! pikabu.ru - top banner
pikabu.ru##table#inner_wrap_3500685
! film.ru - удаление отступа сверху
film.ru##body > div[style="height: 269px;"]
! oper.ru - удаление пустоты от баннеров
oper.ru###container > div[style="width: 100%; height: 290px; min-width: 1000px; text-align: center;"]
! rankw.ru - удаление пустоты от баннеров
rankw.ru##section[style="margin-left:0;margin-right:0;margin-top:0;margin-bottom:10px; height: 160px;"]
rankw.ru###headerFrame > div[style*="width: 1170px; height: 90px;"]
rankw.ru##section#sideBarFrame > section[style="margin:15px;height:90px;"]
! http://forum.adguard.com/showthread.php?4360
sysadmins.ru##table[background="/images/header.gif"] td[align="right"] a img
||sysadmins.ru/samag.gif
||sysadmins.ru/iq-powered.png
sysadmins.ru##td[class="row2"][valign="middle"] > a > img
! http://forum.adguard.com/showthread.php?6258
auto.mail.ru##.shadow.margin
! http://forum.adguard.com/showthread.php?5875
fast-torrent.ru##.no-mobile > div > h1 > span[style="font-size: small;"]
! http://forum.adguard.com/showthread.php?5524
xakeroker.ws###content > div.pageWidth > div.pageContent > center > a > img
xakeroker.ws###content > div.pageWidth > div.pageContent > div.mainContainer > div.mainContent > center > a > img
! footballtransfer.com.ua - удаление нижнего отступа
footballtransfer.com.ua##noindex > a#back-screen
! http://forum.adguard.com/showthread.php?4895
ufolabs.net###bullet_energy > center > a > img
! forum.adguard.com/showthread.php?4882
android.mobportal.net##body > div.site > table > tbody > tr[align="center"] > td[height="310px"][align="left"]
android.mobportal.net#$#body > div.site > table > tbody > tr[align="center"] > td[align="right"] > div.header_text {height: inherit!important;}
! http://forum.adguard.com/showthread.php?4763
opennet.ru##form[method="get"] td[align="RIGHT"][width="470"][height="70"]
opennet.ru##form[method="get"] td[width="40"][style="background: #E9EAD6 url('/back.gif') repeat-x bottom left"]
opennet.ru##form[method="get"] td[valign="TOP"][align="RIGHT"][width="130"][bgcolor="#E9EAD6"]
! https://github.com/AdguardTeam/ExperimentalFilter/issues/393#issuecomment-77358450
vseverske.info##div.place.top > a > img
vseverske.info##.left_column div[class^="place left_"]
vseverske.info##.right_column div[class^="place right_"]
vseverske.info##.floating.righ
! http://forum.adguard.com/showthread.php?5491
darkmoney.cc##body > div > div[align="center"] > div[align="center"] > a > img
darkmoney.cc##div > div[align="center"] > div.page[style="width:1200px; text-align:left"] > div[style="padding:0px 20px 0px 20px"] > div[align="center"] > a > img
darkmoney.cc##div > div[align="center"] > div[align="center"] > div.page[style="width:1200px; text-align:left"] > div[align="center"] > a > img
darkmoney.cc##.alt1Active td > a > img
! sat-expert.com - удаление пустоты от баннеров
sat-expert.com##div[style="overflow: hidden; height: 65px; padding: 5px;"]
! http://forum.adguard.com/showthread.php?5366-*-http-vp-news-ru&p=50285&viewfull=1#post50285
vp-news.ru##.box.nomargin
! http://forum.adguard.com/showthread.php?4525
baibako.tv##td[valign="top"] > div[style="padding-bottom:15px;margin-bottom:15px;border-bottom:1px solid #dfdfdf;"]
! http://forum.adguard.com/showthread.php?4687
domenforum.net##.page center > a > img
domenforum.net##.page > div[style="padding:0px 25px 0px 25px"] > table[class="tborder"][cellpadding="6"][cellspacing="0"][border="0"][width="100%"][align="center"]
! forum.na-svyazi.ru - empty rectangles
forum.na-svyazi.ru##td#user2s
! http://forum.adguard.com/showthread.php?4360
sysadmins.ru##body > table > tbody table[width="240"][align="left"]
sysadmins.ru##td.row2 > a > img
! http://forum.adguard.com/showthread.php?4101
imageban.ru###colorbox
imageban.ru###cboxOverlay
! http://forum.adguard.com/showthread.php?4311
bezformata.ru##div[style^="clear:both;width:100%;min-height:100px;padding-left:91px;margin-top:10px;margin-bottom:10px; background-color: #E9EFE4;"]
bezformata.ru##div[style^="clear:both;width:100%;min-height:100px;padding-left:97px;margin-top:10px;margin-bottom:10px;"]
! http://forum.adguard.com/showthread.php?4323
ps4news.com##font[face="Verdana,Arial,Tahoma,Calibri,Geneva,sans-serif;"]
! http://forum.adguard.com/showthread.php?4147
allcrimea.net##.foto2i
! yarportal.ru - empty rectangles
yarportal.ru##div[style="font-size: 0; border: 1px solid #FFE500; background-color: #FFE500; margin: 0; padding: 0px; display: block; overflow: hidden; height: 60px;"]
yarportal.ru##div[style="font-size: 0; border: 1px solid #1b4786; background-color: #1b4786; margin: 0; padding: 0px; display: block; overflow: hidden; height: 60px;"]
yarportal.ru##div[style="font-size: 0; border: 1px solid #67FDFB; background-color: #67FDFB; margin: 0; padding: 0px; display: block; overflow: hidden; height: 60px;"]
! zerx.tv - remove MediaGet
zerx.tv##a[id*="MediaGet"]
zerx.tv##a[href*="/torrent/"][title*="Скачать"]
zerx.tv##div[class*="divSmotrDiActive"][onclick*="href='/torrent/"]
||zerx.tv/templates/zerxnew/images/utorrent.png
zerx.tv##a[href*="/torrent/"][style="color:white"]
! https://github.com/AdguardTeam/ExperimentalFilter/issues/240
fileplaneta.com##table[width="100%"][align="center"][bgcolor="#f1f1f1"]
! https://github.com/AdguardTeam/ExperimentalFilter/issues/225#issuecomment-64604695
knifeclub.com.ua##table[border="0"][align="center"][height="71"]
knifeclub.com.ua##table[border="0"][align="center"][height="80"][width="340"]
! http://forum.adguard.com/showthread.php?4311
||tugmed.ru^$domain=bezformata.ru
bezformata.ru##div[style^="clear:both;width:100%;height:90px;clear:both;margin:0px;padding:0px;"]
! lotr.ru - advert in right borrom
||lotr.ru/images/logo.png
! http://forum.adguard.com/showthread.php?3890
fast-torrent.ru##.wrap >div > h1 > span[style="font-size: small;"]
! http://forum.adguard.com/showthread.php?3754
pozdrav.ru##.conteiner.purple
! http://forum.adguard.com/showthread.php?3775
stost.ru##.tosts
! http://forum.adguard.com/showthread.php?4312
yola.ru##div[style*="height: 60px; width:300px; margin: 10px;"]
! http://forum.adguard.com/newreply.php?do=postreply&t=3043 Empty space on top
myshared.ru###s_top
! https://github.com/AdguardTeam/ExperimentalFilter/issues/164
free-torrents.org##noindex > center > div[style="border: 2px solid red;"]
! http://forum.adguard.com/showthread.php?2045
||yarportal.ru/zagl.gif
! http://forum.adguard.com/showthread.php?3384
echo.msk.ru##div[style="padding-bottom:40px;"]
echo.msk.ru##iframe[src="http://vz.ru/inc/b/vz_block_echomsk.html"]
! i.ua - блоки, в которых возможно появление рекламы
i.ua##.header_adv
i.ua##.clear.logo_container
! glav.su - блоки от рекламы
glav.su##td[class="cell taCenter"][style="height: 116px;"]
glav.su##td[class="cell taCenter"][style="height: 34px;"]
glav.su##td[class="cell taCenter"][style="height: 100px;"]
glav.su###layoutContent > table.frameTable[style*="height: 100px;"]
! http://forum.adguard.com/showthread.php?6378
skatay.com#%#AG_onLoad(function() { $('a[href^="http://goload.do.am/"]').closest('table').remove(); });
! http://forum.adguard.com/showthread.php?6213
nordbayern.de##div[style="width:310px; margin:0 0 0 12px;"]
! http://forum.adguard.com/showthread.php?6520
epidemz.com##body > div.wrappperrr > div.footer
! http://forum.adguard.com/showthread.php?6367
go.guidants.com#%#AG_onLoad(function() {  $("#sidereklame").remove(); $(".reklameflaechen#activity").css({ 'right': '0px' }); $("#activity").css({ 'right': '0px' }); });
! http://forum.adguard.com/showthread.php?6612
softportal.com###header > div[style="text-align:center;"] a > img
! http://forum.adguard.com/showthread.php?6049
||mmgp.ru/images/shapka/
@@||mmgp.ru/images/shapka/logo_
! http://forum.adguard.com/showthread.php?6669
epidemz.com##a[rel="nofollow"][target="_blank"] > font
! fs.to - пустота от рекламы
fs.to,brb.to,cxz.to#$#.l-content.m-content_type_player { padding: 0px 0px 0px 4px!important; }
fs.to,cxz.to,brb.to##div[id*="_universal_"] > div[class*="-universal"]
! i.ua - реклама среди новостей
i.ua##.list_simple.list_time:not(#news_cont)
! http://forum.adguard.com/showthread.php?6802
game-torrent.info,free-torrent.org,free-torrents.org##.post_body > table[width="100%"] > tbody > tr > td[id] > div[id]
! http://forum.adguard.com/showthread.php?6810
notasound.net##.third-cell
! http://forum.adguard.com/showthread.php?6850
openload.co#%#document.cookie = "popcashpuCap=1";
!
championat.com##.hitman
udaff.com##div[style="text-align: center;padding: 0.5em 0;"]
xtreme.ws##.topBorder > table[width="100%"][height="205"]
motorpage.ru##.bannerplace
livelib.ru##body > #top
gta.com.ua##div[style*="width:240px;height:400px;"]
getwall.ru##.google-block
overclockers.ru##div[style="border: 1px solid #aaa"]
softportal.com##div[style="text-align:center; margin:1.5em auto; width:285px;"]
! http://forum.adguard.com/showthread.php?7164
||safety-gate.me/images/comss-logo.png
!!!-------------------- Other trash --------------------
!!!--- Donations, friends, apps for sites --------------
!!!--- cookie notifications ----------------------------
!!!-----------------------------------------------------
!--- EU cookie notifications ---
frag-mutti.de###cookie-notice
decuro.de##.popupBase.notification
chip.de###cookieChoiceInfo
accuweather.com###eu-cookie-notify-wrap
/cookieconsent.*.js
/cookie-consent.js
||cc.silktide.com^$third-party
skyrock.com,skyrock.fr###bloc_setcookie
shpock.com###cookie-modal
generation-nt.com###cookieChoiceInfo
golem.de###golem-cookie-accept
quoka.de###msgCookie
gizchina.com,med1.de,mein-schoener-garten.de,pc-magazin.de,toolslib.net##.cc_banner-wrapper
assassinscreed.com##.cookie-info
delfi.lv##.cookie-widget
2ip.ru##.cookies-notification
kia.ru##.notif_cookie_panel
!--- Annoying popups ---
||malerex.ru^$third-party
45.ru,93.ru,86.ru,56.ru,164.ru,mgorsk.ru,62.ru,48.ru,kbs.ru,26.ru,tolyatty.ru,178.ru,89.ru,proizhevsk.ru,51.ru,irkutsk.ru,sochi1.ru,70.ru,provoronezh.ru,71.ru,154.ru,sterlitamak1.ru,ekat.ru,42.ru,43.ru,14.ru,68.ru,75.ru,35.ru,omsk1.ru,53.ru,60.ru,29.ru,76.ru,116.ru,v1.ru,ufa1.ru,161.ru,74.ru,72.ru,63.ru,59.ru###popup_container
45.ru,93.ru,86.ru,56.ru,164.ru,mgorsk.ru,62.ru,48.ru,kbs.ru,26.ru,tolyatty.ru,178.ru,89.ru,proizhevsk.ru,51.ru,irkutsk.ru,sochi1.ru,70.ru,provoronezh.ru,71.ru,154.ru,sterlitamak1.ru,ekat.ru,42.ru,43.ru,14.ru,68.ru,75.ru,35.ru,omsk1.ru,53.ru,60.ru,29.ru,76.ru,116.ru,v1.ru,ufa1.ru,161.ru,74.ru,72.ru,63.ru,59.ru###fade
! lifenews.ru - всплывающее сообщение с предложениями
lifenews.ru##html > body > div.lifecorr-banner
! 0lik.ru - всплывающее сообщение с предложениями
0lik.ru###simplemodal-container
0lik.ru###simplemodal-overlay
!------------------------
! music.yandex.ru - панель с описанием возможностей
music.yandex.ru,music.yandex.ua##.overhead_not-authorized
! music.yandex.ru - уведомление о событиях
music.yandex.ru,music.yandex.ua##.event_promo-ad
! ads widget and music
||whoaremyfriends.net^$domain=zuketapaajabhisa.blogspot.ru|zuketapaajabhisa.blogspot.com|zuketapaajabhisa.blogspot.com.tr
||kiwi6.com^$domain=zuketapaajabhisa.blogspot.ru|zuketapaajabhisa.blogspot.com|zuketapaajabhisa.blogspot.com.tr
!
! radical - сторонние iframe с собачьей тематикой
f-picture.net,radical-foto.ru,radikal.cc,radikal.ru#%#AG_onLoad(function() { window.AG_removeElementBySelector('iframe[src^="http://"]'); });
! http://forum.adguard.com/showthread.php?6449
absurdopedia.net###p-friends
! http://forum.adguard.com/showthread.php?6417
sourceforge.net###downloading > #mirror
! http://forum.adguard.com/showthread.php?3903
vuku.tv##div[class^="bookmarks_div"]
! third-side player
g-tv.ru/videomore_gtv.php?video_id=*&auto_play=1$domain=kino-dom.tv
! 24tv.ua - остатки блока "Новости партнёров"
24tv.ua##.programs_wrap
! translate.google.ru/com - Improve Google Translate
translate.google.ru,translate.google.com###gt-community-promo
! sports.ru - блок "подписаться"
sports.ru##.c-tag-subscription
! sports.ru - блок "За кого вы болеете?", "Зарегистрируйтесь" и пр.
sports.ru##.c-favorite-team
! sports.ru - всплывающее сообщение
sports.ru##.js_favteam > .tooltips
! hdclub.org - нескрываемый блок "спасибо"
hdclub.org##form[action="thanks.php"] > a[href^="userdetails.php?"]
! fishki.net - блок внизу "с самым интересным на сайте"
fishki.net##.related-posts.related-posts-bottom.clearfix
! welt.de - big banner for their subscription
welt.de###sectionSponsor + div
! welt.de - big banner for their subscription
welt.de###sectionSponsor + div
! http://forum.adguard.com/showthread.php?5500
||vesti.ru/4sport.html
! yadi.sk - http://forum.adguard.com/showthread.php?5483
yadi.sk##.content-poster-public__poster
! torrentleech.org - requests for donations
torrentleech.org##a[href="/user/donate"]
!
pure-t.ru##.fancybox-overlay
pure-t.ru##.fancybox-wrap
! forumodua.com - notices, requests for donations, some ads
forumodua.com###notices
forumodua.com##.body_wrapper > div > table[width="100%"] > tbody > tr > td[valign="top"]
! http://forum.adguard.com/showthread.php?3570
santikov.net##a[href^="http://www.oplata.info/asp/pay_wm.asp"]
!
vchaspik.ua##div[id="conteiner"][style="height: 410px;"]
||s.livelib.ru/js/smartbanner.
otzyv.ru##div[align="center"] > .aviasales
! mobile apps for the sites
m24.ru###AndroidMobileAppBanner
terraria.wikia.com##.smart-banner
slatedroid.com###tt_mobile_banner
slatedroid.com###banner_div_empty
!-------------------------------------------------------
!---------------------- low-attendance sites -----------
!---------------------- less then 30k visits/month -----
!-------------------------------------------------------
||allpumps.ru/img/
||reduktoren.ru/img/technoros
||reduktoren.ru/img/tdreduktor
||reduktoren.ru/img/techresurs.swf
reduktoren.ru##table[style="border-style: solid; border-width: 2px; border-color:#333333;"]
reduktoren.ru##table[style="border-style: solid; border-width: 2px; border-color:#ff9933;"]
reduktoren.ru##table[style="border-style: solid; border-width: 1px; border-color:#66;"]
reduktoren.ru##object[width="170"][height="250"]
reduktoren.ru##table[style="border-style: solid; border-width: 2px; border-color:#FF6600;"]
||magmetall.ru/img/bil_2015.jpg
||magmetall.ru/img/13sen_2015.jpg
||magmetall.ru/img/magopc.jpg
||magmetall.ru/img/tv-in.jpg
||нашбийск.рф/images/banners/nerpa%20min.jpg
||нашбийск.рф/images/banners/partneram.gif
||нашбийск.рф/images/banners/rascenki.png
||нашбийск.рф/images/banners/evrazia.png
||нашбийск.рф/images/banners/sonata%20min.jpg
!---------------------- Loaders(adware) ----------------
rsload.net,cwer.ws##a[href*="mediaget.com"]
seedoff.net##a[href^="http://shadecrawl835.ru/backend?"]
!---------------------- Social  Annoyances -------------
! http://forum.adguard.com/showthread.php?6539
forum.chatovod.com##iframe[src^="/widgets/?lang="]
! http://forum.adguard.com/showthread.php?6103
fast-torrent.ru###leftmenu p > span[style="color: #ff6600;"]
!---------------------- Spyware Annoyances -------------
!
!---------------------- Widgets ------------------------
! http://forum.adguard.com/showthread.php?6438
||kursvalut.com/informer/$third-party
~kursvalut.com##div[id^="kursvalut-com-informer"]
topnews.ru##.informer
||gismeteo.ua/static/css/informer$domain=ex.ua
||gismeteo.ua/ajax/getInformer/$domain=ex.ua
ex.ua##.gsInformer
!-------------------------------------------------------
!---------------------- Ads like posts -----------------
!-------------------------------------------------------
fishki.net#%#AG_onLoad(function() { $('img[data-subscribe*="_543769"]').closest('div[id^="post-"]').remove(); });
!yaplakal.com#%#AG_onLoad(function() { var footers = $('b.icon-user>a[href="http://www.yaplakal.com/members/member1438.html"]').closest('tr'); $(footers).each(function() { $(this).prev().remove(); $(this).prev().remove(); $(this).remove(); }); });
!yaplakal.com#%#setTimeout(function() { var footers = $('b.icon-user>a[href="http://www.yaplakal.com/members/member1438.html"]').closest('tr'); $(footers).each(function() { $(this).prev().remove(); $(this).prev().remove(); $(this).remove(); }); }, 1500);
!yap.ru#%#AG_onLoad(function() { var footers = $('b.icon-user>a[href="http://yap.ru/members/member1438.html"]').closest('tr'); $(footers).each(function() { $(this).prev().remove(); $(this).prev().remove(); $(this).remove(); }); });
!yap.ru#%#setTimeout(function() { var footers = $('b.icon-user>a[href="http://www.yaplakal.com/members/member1438.html"]').closest('tr'); $(footers).each(function() { $(this).prev().remove(); $(this).prev().remove(); $(this).remove(); }); }, 1500);
pikabu.ru#%#AG_onLoad(function() { $('a[href="http://pikabu.ru/html.php?id=ad"]').closest('table[class*="inner_wrap_visible"]').remove(); });
! http://forum.adguard.com/showthread.php?6186
pcgames.de#%#AG_onLoad(function() { $('a[title*="[Anzeige]"]').closest('div[class^="item noImg"]').remove(); });
! http://forum.adguard.com/showthread.php?6796
buffed.de#%#AG_onLoad(function() { $('a[href*="/E-Commerce"]').closest('div[class*="item noImg"]').remove(); });
buffed.de#%#AG_onLoad(function() { $('a[href*="-Anzeige-"]').closest('div[class*="item noImg"]').remove(); });
!-------------------------------------------------------
!---------------------- Some fixes ---------------------
!-------------------------------------------------------
! yaplakal.com,yap.ru - убираем кликандер при переходе на стороннюю ссылку
yaplakal.com,yap.ru#%#AG_onLoad(function() { window.clkUnd = function() {} });
! fake browser update
~junodownload.com#%#document.onmouseout = null; window.onbeforeunload = null; window.blur = null;
! ukrrele.com - Selection of text and context menu was blocked
ukrrele.com#%#document.onselectstart = function() {};
ukrrele.com#%#document.oncontextmenu = function() {};
ukrrele.com#%#document.onmousedown = function() {};
! videogamesblogger.com - automate skip ad page
videogamesblogger.com#%#AG_onLoad(function() { window.num_seconds = 1; });
||videogamesblogger.com/javascripts/interstitial.client.js
! rusfolder - automate click on sponsor link
rusfolder.com,rusfolder.net#%#AG_onLoad(function() { $('a[href^="http://ints.rusfolder.com/ints/sponsor/?bi="]').trigger('click'); });
! для капчи при заходе с не российских IP - через несколько секунд символы прячутся наложением картинки -> можно убрать.
letitbit.net##img[class="mcmp_postrol_img"]