Giter Site home page Giter Site logo

adguardteam / extendedcss Goto Github PK

View Code? Open in Web Editor NEW
59.0 20.0 9.0 2.99 MB

A TypeScript library for non-standard element selecting — :contains(), :matches-css(), etc., and applying CSS styles with extended properties.

License: GNU General Public License v3.0

JavaScript 21.40% HTML 0.63% Shell 0.01% TypeScript 77.96%
adguard css open-source

extendedcss's People

Contributors

adguard-bot-2 avatar ameshkov avatar maximtop avatar mizzick avatar robbycbennett avatar scripthunter7 avatar slavaleleka avatar stanislav-atr avatar zhelvis avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

extendedcss's Issues

HTML comments are ignored

Site: https://pikabu.ru/
AdGuard extension 2.10.8
Chrome
The rule:
pikabu.ru##.stories-feed__container > article.story:has(.story__main:contains(Яндекс))
image
It works only when :contains(.)

Some matches-css rules are not applied

Sizzle.tokenize("div:matches-css(background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADgAAAAtCAMAAADMQ1gEAAACiFBMV…GvXb1P83yI+7SYdmNuSyrgbZqzbC/4V5IUTCpoQBV8zP9FOJzfMoGB/QAAAABJRU5ErkJggg==\"))")

throws an error.

Sizzle.tokenize("div:matches-css(\"background-image: url(\\\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADgAAAAtCAMAAADMQ1gEAAACiFBMV…GvXb1P83yI+7SYdmNuSyrgbZqzbC/4V5IUTCpoQBV8zP9FOJzfMoGB/QAAAABJRU5ErkJggg==\\\")\")");

works. Ideally the first selector should work too.

Improve extended CSS performance

Sometimes it is really too slow, especially when :contains pseudo class is used.
We should improve performance and use document.querySelectorAll when possible.

Add protection from infinite loops

The way it works right now, ExtCss rules can cause infinite loops in the case when a website protects its elements styles with a MutationObserver.

I suggest adding an additional check for these cases to our protectionObserver. If it detects a recursion, it should stop trying to set the style and print a warning message to the console. Otherwise, we risk breaking the whole website, and we must avoid that at any cost.

Also, we can try fighting that protection, but that should be a subject of another issue.

Test case:

  • https://news.yandex.ru
  • news.yandex.by,news.yandex.com,news.yandex.fr,news.yandex.kz,news.yandex.ru,news.yandex.ua##div[class*="profit"][id*="_R-I-"]:has(> div)

Prepare a bookmarklet for testing ExtCss selectors

We sometimes need an easy way to debug ExtCss selectors.

I suggest creating a simple bookmarklet that will load ExtCss to the page and expose a function that could be used from the browser console to test selectors.

For instance, here is a script that loads ExtCss:

(function() {
	var script = document.createElement('script');
	script.setAttribute('src', 'https://ameshkov.github.io/web/extended-css-1.0.6.js');
	document.documentElement.appendChild(script);
	script.addEventListener('load', function() {
		alert('ExtCss loaded successfully');
	});
})();

Note, that I used Github pages to serve ExtCss distro.

A couple of issues with the master branch

  1. Debugging and global debugging is broken with updated ExtendedSelector interface.
  2. An error occurs during ExtendedCss.query call, it turns out that we did not assume that StyleObserver.clear can be called in an un-initialized state.

Failed to build filters

Travis failed to build filters, because of hufilter rules:

prohardver.hu##p:-abp-contains(Amikor a szoftver illeszkedik a meglévő üzleti folyamatokhoz.)
prohardver.hu##div[id="center"] > div:-abp-has(div):-abp-has(a):-abp-has(Mostantól bármely bank ügyfelének elérhető a mobilfizetés élménye.)

Excluded AdguardTeam/FiltersRegistry#123

Check ext-css rules performance

Do we need to improve it on our side?

facebook.com#?#.ego_column:-abp-has(a[href^="/campaign/landing"])
facebook.com#?#div[class*="pagelet "]:-abp-has(a[href^="/campaign/landing"])
facebook.com#?#div[id^="hyperfeed_story_id_"]:-abp-has(a[href="#"]:-abp-contains(Chartered))
facebook.com#?#div[id^="hyperfeed_story_id_"]:-abp-has(a[href="#"]:-abp-contains(Sponsored))
facebook.com#?#div[id^="hyperfeed_story_id_"]:-abp-has(a[href="#"]:-abp-properties(content: "Chartered"))
facebook.com#?#div[id^="hyperfeed_story_id_"]:-abp-has(a[href="#"]:-abp-properties(content: "Sponsored"))
facebook.com#?#div[id^="hyperfeed_story_id_"]:-abp-has(input[data-next-question-id])
gelbooru.com##[-abp-properties='*: *;base64,']

Yandex direct

Начали здесь разбирать проблему яндекс директа - выяснилось, что правило работает корректно, но скрытое псевдо-классом оно появляется снова или меняет состояние спустя какое-то время.

Description links no longer valid

From README.md:
https://adguard.com/en/filterrules.html#pseudo-class-has
https://adguard.com/en/filterrules.html#pseudo-class-contains
https://adguard.com/en/filterrules.html#pseudo-class-matches-css

<html>
<head><title>404 Not Found</title></head>
<body bgcolor="white">
<center><h1>404 Not Found</h1></center>
<hr><center>nginx</center>
</body>
</html>
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->

Change the way we release new ExtCss versions

Instead of storing distros in the repo, we'd better use the regular releases approach.

Here's what I suggest to do:

  1. Prepare a new release draft here (with the release notes)
  2. Remove redundant versions from the master branch
  3. Once all the issues assigned to v1.0.7 are closed and tested, let's publish it and create necessary tasks in other AG repos.

Incorrect parsing of styles

Steps to reproduce:

(new ExtendedCss(':contains(/[\\w]{9,}/) { display:none!important; }')).apply()

Expected:

No error is printed in the console.

Actual:

Extended selector is invalid: /)
Extended selector is invalid: :contains(/[\w]

Add ":matches-css()" and "[-abp-properties=]" support

Examples:

  • div[-ext-matches-css="border-bottom-style: none; display: block"] matches all div elements with border-bottom-style equal to none and display equal to block.

Synonyms:

  • div[-abp-properties="border-bottom-style: none|display: block"]
  • div:matches-css(border-bottom-style: none; display: block)

Update:
It appears, that abp-properties syntax is a bit different. Value should be a regular expression mask, not a value.

Compatibility with old versions Internet Explorer

Look for a way to run unit tests on older versions of IE.

We can simply ask @AdguardTeam/qa-team to assist with testing, but to make their life easier, we need an instruction on how to do it.

As I see it, the easiest way would be to have a gh-pages branch here so that they could run unit-tests simply by opening a page.

Implement :properties pseudo-class

Synonym for :abp-properties.

Don't implement it right away, please take a look at their implementation first.

As I understand it works as matches-css + matches-css-before + matches-css-after

ExtCss rules cause an infinite loop on Amazon (Safari only)

Original report:
AdguardTeam/AdguardBrowserExtension#937

These rules:

amazon.de,amazon.com,amazon.co.uk,amazon.fr,amazon.it,amazon.es##.s-result-list > .s-result-item[-ext-has='span[data-a-popover*="sponsored-header"]']
amazon.ca,amazon.cn,amazon.co.jp,amazon.com,amazon.com.br,amazon.com.uk,amazon.de,amazon.es,amazon.fr,amazon.in,amazon.it,amazon.jp,amazon.nl##.s-result-list-parent-container > .s-result-list > li[id^="result_"][-ext-has='.s-sponsored-list-header']

Add :matches-css-* pseudo-class support

Description

This pseudo-class allows us to select an element by its style.

Syntax

/* element style matching */
selector:matches-css(property-name ":" pattern)

/* ::before pseudo-element style matching */
selector:matches-css-before(property-name ":" pattern)

/* ::after pseudo-element style matching */
selector:matches-css-after(property-name ":" pattern)

Backward-compatible syntax:

selector[-ext-matches-css="property-name ":" pattern"]
selector[-ext-matches-css-after="property-name ":" pattern"]
selector[-ext-matches-css-before="property-name ":" pattern"]

Properties

property-name
Name of the CSS property you want to check.

pattern
Simple regexp-like pattern which uses exactly the same rules as in Basic url-matching filters. We could use this implementation.

Examples

Select div with a background-image.

HTML code:

<style type="text/css">
    #to-be-blocked {
        background-image: url(data:image/png;123123123);
    }
</style>
<div id="to-be-blocked" class="banner"></div>
<div id="not-to-be-blocked" class="banner"></div>

Selector:

div.banner:matches-css(background-image: url(data:*))

Select div with ::before pseudo-element with the specified text.

HTML code:

<style type="text/css">
    #to-be-blocked::before {
        content: "Block me"
    }
</style>
<div id="to-be-blocked" class="banner"></div>
<div id="not-to-be-blocked" class="banner"></div>

Selector:

div.banner:matches-css-before(content: block me)

Why do we need it

I have faced a couple of websites using a very complicated layout to circumvent ad blocking. Even :has() and :contains() are not enough to block ads there.

The latest example is mail.yandex.ru. Ad layout is completely similar to the valid elements aside of the Ad label which is added with a ::before pseudo-element.

Screenshot of the page layout:

![2016-08-24 16-47-02](https://cloud.githubusercontent.com/assets/5947035/17932903/b92c567a-6a1a-11e6-9044-1ad0da4e9093.png)

With this new pseudo-class ad element can be selected with a filter like this:

mail.yandex.ru##.ns-view-messages-item:has(.ns-view-important-toggleable:matches-css-before(content: *рекл*))

Q: Why additional pseudo-classes for matching before and after
A: We could use something like this instead: :before:matches-css(). However, :before is not a valid selector, you cannot select any element using it.

Q: Why pattern-matching?
A1: Nothing prevents them from using a random string for an ad label, I hope pattern-matching is versatile enough.
A2: I suppose that using this approach we could also cover existing abp-properties rules. Here is a list (mostly from EasyList Germany):

arabseed.com##[-abp-properties='z-index: 999999 !important;']
games.tiscali.cz##DIV[-abp-properties="height: 20*.*px"]
games.tiscali.cz##DIV[-abp-properties="padding-top: 12px;"]
games.tiscali.cz##DIV[-abp-properties="min-height: 200px;"]
games.tiscali.cz##DIV[-abp-properties="padding-top: 1*.*px;"]
games.tiscali.cz##DIV[-abp-properties="height: 19*.*px"]
gelnhaeuser-tageblatt.de,giessener-anzeiger.de,kreis-anzeiger.de,lauterbacher-anzeiger.de,lustich.de,oberhessische-zeitung.de,usinger-anzeiger.de##[-abp-properties='margin-left: 45px;']
spiegel.de##.article-section > div > [-abp-properties='margin-right: 3.53px;']
allgemeine-zeitung.de,buerstaedter-zeitung.de,hochheimer-zeitung.de,hofheimer-zeitung.de,lampertheimer-zeitung.de,meinestadt.de,nnn.de,prignitzer.de,rhein-main-presse.de,svz.de,wiesbadener-kurier.de,wiesbadener-tagblatt.de,wormser-zeitung.de##[-abp-properties='left: 45px; position: relative;']
transfermarkt.de##.twelve.columns > [-abp-properties='margin-top: 11px;']
wetter.com##[-abp-properties='margin-left: 416px; padding-left: 2px;']
wetter.com##[-abp-properties='margin-left: 24px']
gamepro.de##.homeContReg > [-abp-properties='cursor: pointer;']
arcor.de##[-abp-properties='margin-left: 106px;']
runnersworld.de##.col-left > [-abp-properties='bottom: 5px; position: relative;']
main-spitze.de##[-abp-properties='margin-bottom: -1px;']
tvspielfilm.de##.aside > [-abp-properties='margin-bottom: 13px;']
prosieben.de,sixx.de##[-abp-properties='cursor: pointer; left: 950px; position: absolute; top: 100px;']
gala.de##[-abp-properties='left: 12*px; position: relative;']
gala.de##[-abp-properties='top: 279px;']
win-10-forum.de##[-abp-properties='left: 100%; margin-left: 10px; position: absolute; top: 100px;']
sixx.de##[-abp-properties='left: 36px; position: relative;']
meinestadt.de##[-abp-properties='margin-left: 68*px;']
planetsnow.de##[-abp-properties='left: 289px;']
boerse-online.de,focus.de,klettern-magazin.de,klettern.de,mountainbike-magazin.de,outdoor-magazin.com##[-abp-properties='left: 85px;']
pcwelt.de##[-abp-properties='top: 99px;']
sixx.de##[-abp-properties='left: 21*px; position: relative;']
nwzonline.de##[-abp-properties='left: 988px;']
meinestadt.de##[-abp-properties='left: -10px;']
pcwelt.de##[-abp-properties='width: 979px;']
gamestar.de##[-abp-properties='left: 1016px;']
fem.com,general-anzeiger-bonn.de##[-abp-properties='margin-bottom: 10px; margin-left: 1*px;']
tvdigital.de##[-abp-properties='left: 859px;']
womenshealth.de##[-abp-properties='left: 139px;']
sat1gold.de##[-abp-properties='left: 76px;']
spiegel.de##.article-section > * > [-abp-properties='margin-right: 2.6*px;']
motorradonline.de##[-abp-properties='left: 779px;']
wetter.com##[-abp-properties='margin-left: 417px; margin-top: 22px;']
wetteronline.de###sidebar > [-abp-properties='display: block; padding-top: 1*px;']
experto.de,mtb-news.de,nwzonline.de##[-abp-properties='margin-left: 250px;']
pcwelt.de##[-abp-properties='margin-left: 1000px !important;']
meinestadt.de,womenshealth.de##[-abp-properties='left: -11px;']
ariva.de,gamestar.de,wetteronline.de##[-abp-properties='left: 1001px;']
klettern.de,mountainbike-magazin.de,outdoor-magazin.com##.main-left > [-abp-properties='margin-left: 16px;']
echo-online.de,tvdigital.de##[-abp-properties='left: 13*px;']
meinestadt.de##[-abp-properties='left: -10.9px;']
cavallo.de##[-abp-properties='left: 28*px; position: relative;']
pcwelt.de##[-abp-properties='margin-left: 81*px;']
notebookcheck.com##[-abp-properties='left: 573px;']
gamepro.de,gamestar.de##[-abp-properties='margin-left: -16px;']
focus.de##[-abp-properties='margin-left: 395px;']
ariva.de##[-abp-properties='margin-right: 299px;']
fem.com,stern.de##[-abp-properties='margin-left: 232px;']
giga.de##[-abp-properties='top: 120px;']
sixx.de##[-abp-properties='left: 74*px;']
giga.de##[-abp-properties='position: relative; top: *px; width: 10*px;']
gala.de##[-abp-properties='position: relative; text-align: center;']
runnersworld.de##[-abp-properties='margin-bottom: 10px; margin-left: 202px;']
fem.com##.block-type-content-grid > [-abp-properties='cursor: pointer;']
autoexperience.de##[-abp-properties='position: relative; text-align: *; width: 10*px;']
shz.de##.article > [-abp-properties='margin-left: 24px;']
prosiebenmaxx.de##[-abp-properties='left: 7*em; position: absolute;']
boerse-online.de##[-abp-properties='margin-bottom: 20px; margin-left: 10px; margin-right: 10px;']
arcor.de##[-abp-properties='position: relative; width: 90*px;']
wetteronline.de##[-abp-properties='margin-left: 272px; position: absolute; width: 728px; z-index: 1;']
boerse.de##.content_box > [-abp-properties='cursor: pointer']
echo-online.de##[-abp-properties='width: 819px;']
gamestar.de##.content > [-abp-properties='padding-top: 20px;']
ariva.de##[-abp-properties='margin-bottom: 10px; margin-right: 302px;']
shz.de##.span1 > [-abp-properties='cursor: pointer;']
pcwelt.de##[-abp-properties='margin-left: 35px;']
sat1gold.de##[-abp-properties='left: 76px; position: relative; z-index: 70;']
comunio.de##[-abp-properties='margin-left: 102px;']
wetter.com##[-abp-properties='margin-bottom: 13px; margin-left: 20*px;']
gamepro.de,gamestar.de##[-abp-properties='margin-top: 9px; padding-left: 252px;']
giga.de##[-abp-properties='position: absolute; right: 10*px; top: 0px; z-index: 99*;']
serienjunkies.de##[-abp-properties='width: 93*px; z-index: 2;']
wetteronline.de##[-abp-properties='margin-left: 273px;']
main-spitze.de##[-abp-properties='width: 1061px;']
wetteronline.de##[-abp-properties='display: block; margin-top: 6px;']
e-mountainbike.com,elektrobike-online.com,klettern-magazin.de,klettern.de,mountainbike-magazin.de,outdoor-magazin.com,roadbike.de##[-abp-properties='cursor: pointer; margin-left: 15px;']
cavallo.de##[-abp-properties='cursor: pointer; margin-left: 16px;']
woxikon.de##[-abp-properties='margin-left: 50*px;']
e-mountainbike.com,elektrobike-online.com,klettern-magazin.de,klettern.de,mountainbike-magazin.de,outdoor-magazin.com,outdoorchannel.de,roadbike.de###content > [-abp-properties='cursor: pointer; margin-left: 16px;']
gamona.de##[-abp-properties='position: absolute; right: 1000px; top: 0px;']
flugzeugforum.de##[-abp-properties='margin-bottom: 15px;']
autoexperience.de,lpgforum.de,winboard.org##[-abp-properties='height: 600px; *width: 160px;']
wetter.com##[-abp-properties='left: 115*px;']
wetter.com##.wrapper-weather-news [-abp-properties='cursor: pointer;']
runnersworld.de##[-abp-properties='position: relative; width: 931px;']
arcor.de##[-abp-properties='margin-left: 11*px;']
spox.com##[-abp-properties='margin-bottom: 5px; margin-top: 5px;']
motorradonline.de##[-abp-properties='margin-left: 20px; position: relative; width: 91*px;']
experto.de##[-abp-properties='margin-bottom: 10px; margin-left: 252px;']
echo-online.de##[-abp-properties='left: 12*px;']
gelnhaeuser-tageblatt.de,giessener-anzeiger.de,kreis-anzeiger.de,lauterbacher-anzeiger.de,oberhessische-zeitung.de,usinger-anzeiger.de##[-abp-properties='margin-left: 309px;']
experto.de,meinestadt.de,tvspielfilm.de,welt.de##[-abp-properties='margin-left: 23*px;']
ran.de##[-abp-properties='margin-left: 17*px;']
gelnhaeuser-tageblatt.de,giessener-anzeiger.de,kreis-anzeiger.de,lauterbacher-anzeiger.de,oberhessische-zeitung.de,usinger-anzeiger.de##[-abp-properties='margin-left: 41px;']
ran.de###aside-zone > [-abp-properties='bottom: 7px;'] > img
nnn.de,prignitzer.de,shz.de,svz.de,wetteronline.de##[-abp-properties='margin-left: 26*px;']
shz.de##[-abp-properties='left: 59px;']
ran.de,sat1gold.de##.grid_300 [-abp-properties='cursor: pointer;']
lustich.de,nnn.de,prignitzer.de,shz.de,svz.de##[-abp-properties='margin-left: 47px;']
auto-motor-und-sport.de,hoerzu.de##[-abp-properties='margin-left: 16px;']
promobil.de##[-abp-properties='left: 20px; margin-bottom: 20px; position: relative;'] > img
meinestadt.de##[-abp-properties='left: -10.8*px;']
focus.de##[-abp-properties='margin-left: 393px;']
wetter.com##[-abp-properties='left: 93px;']
promobil.de##[-abp-properties='left: 1009px;']
shz.de##[-abp-properties='margin-left: 238px;']
transfermarkt.de##[-abp-properties='left: -121px;']
the-voice-of-germany.de##[-abp-properties='left: 47.9*px;']
nnn.de,prignitzer.de,svz.de,wetteronline.de##[-abp-properties='margin-left: 27*px;']
abendzeitung-muenchen.de##[-abp-properties='left: 830px;']
shz.de##[-abp-properties='left: 22px; position: relative;'] > img
sat1gold.de##[-abp-properties='left: 76.9*px;']
sixx.de##[-abp-properties='left: 32px;'] > img
gamesaktuell.de##[-abp-properties='margin-left: -21px;']
ran.de##[-abp-properties='left: 32px;'] > * > img
abendzeitung-muenchen.de##[-abp-properties='margin-left: 204px;']
fem.com##[-abp-properties='left: 108px;']
serienjunkies.de###menu + [-abp-properties='left: 40px;'] > div > a > img
promobil.de##[-abp-properties='left: 178px;']
welt.de##[-abp-properties='margin-top: 11.2px;']
gala.de##[-abp-properties='left: 84px;']
caravaning.de,experto.de,gamepro.de,gamestar.de,nnn.de,prignitzer.de,promobil.de,svz.de,tvtoday.de,videogameszone.de,wetteronline.de##[-abp-properties='left: 100*px;']
transfermarkt.de##.twelve.columns > [-abp-properties='margin-top: 14px;']
prosiebenmaxx.de##[-abp-properties='z-index: 143;']
sixx.de##[-abp-properties='left: 146px;']
autobild.de,caravaning.de,e-mountainbike.com,elektrobike-online.com,klettern-magazin.de,klettern.de,mountainbike-magazin.de,outdoor-magazin.com,outdoorchannel.de,promobil.de,roadbike.de,shz.de##[-abp-properties='left: 10*px; position: absolute; top: *px;']
serienjunkies.de##[-abp-properties='left: 30px; position: relative; width: 938px;']
welt.de##.grid_4.column-2 > [-abp-properties='margin-top: 369px;']
klettern-magazin.de,klettern.de,motorradonline.de,mountainbike-magazin.de,outdoor-magazin.com##[-abp-properties='left: 80*px;']
readmore.de###monkey_lb + * + * + [-abp-properties='text-align: center;'] > img
allgemeine-zeitung.de,buerstaedter-zeitung.de,echo-online.de,hochheimer-zeitung.de,hofheimer-zeitung.de,lampertheimer-zeitung.de,rhein-main-presse.de,tvspielfilm.de,welt.de,wiesbadener-kurier.de,wiesbadener-tagblatt.de,wormser-zeitung.de##[-abp-properties='left: 89*px;']
eatsmarter.de,motorradonline.de##[-abp-properties='left: 79*px;']
pcwelt.de##[-abp-properties='margin-left: 807px;']
general-anzeiger-bonn.de,readmore.de##[-abp-properties='left: 960px;']
spiegel.de##.article-section > * > [-abp-properties='margin-right: 2.59px;']
welt.de##.grid_4.column-2 > [-abp-properties='margin-top: 359px;']
welt.de##[-abp-properties='margin-top: 11.3px;']
ariva.de##[-abp-properties='margin-right: 298px;']
kabeleins.de,shz.de##[-abp-properties='left: 929px;']
the-voice-of-germany.de##[-abp-properties='left: 188.9*px;']
kabeleins.de##[-abp-properties='left: 908px;']
prosiebenmaxx.de,welt.de##[-abp-properties='left: 41.9*px;']
eatsmarter.de##[-abp-properties='width: 574px;']
pcgames.de##[-abp-properties='margin-bottom: 15px; margin-left: 100px;']
mtb-news.de,sixx.de,tvtoday.de##[-abp-properties='left: 209px;']
eatsmarter.de##[-abp-properties='margin-left: 18px;']
abendzeitung-muenchen.de,allgemeine-zeitung.de,buerstaedter-zeitung.de,experto.de,gelnhaeuser-tageblatt.de,general-anzeiger-bonn.de,giessener-anzeiger.de,hochheimer-zeitung.de,hofheimer-zeitung.de,kreis-anzeiger.de,lampertheimer-zeitung.de,lauterbacher-anzeiger.de,nnn.de,oberhessische-zeitung.de,prignitzer.de,ran.de,rhein-main-presse.de,shz.de,svz.de,usinger-anzeiger.de,wetter.com,wiesbadener-kurier.de,wiesbadener-tagblatt.de,wormser-zeitung.de##[-abp-properties='text-align: center;'] > * > img
gala.de,ran.de##[-abp-properties='left: 829px;']
gala.de##[-abp-properties='bottom: 5px; left: 50px;']
ran.de##[-abp-properties='margin-left: 200px;']
arcor.de##[-abp-properties='margin-left: 11*px; position: relative; width: 110*px;']
abendzeitung-muenchen.de,cavallo.de,klettern-magazin.de,klettern.de,mountainbike-magazin.de,outdoor-magazin.com,shz.de##[-abp-properties='margin-bottom: 10px; margin-left: 2*px;']
gala.de##[-abp-properties='bottom: 5px; left: 50px;'] > img
caravaning.de,gamepro.de,menshealth.de,nnn.de,prignitzer.de,readmore.de,shz.de,svz.de,wetteronline.de##[-abp-properties='left: 101*px;']
caravaning.de##[-abp-properties='left: 969px;']
gala.de##[-abp-properties='left: 84px;'] > img
focus.de##[-abp-properties='margin-left: 394px;']
bauexpertenforum.de,dasheimwerkerforum.de,fitness-foren.de,ford-forum.de,toyota-forum.de,unixboard.de,usp-forum.de,vermieter-forum.com,win-10-forum.de##[-abp-properties='width: 729px;']
ariva.de,gamestar.de,gamona.de,wetteronline.de##[-abp-properties='left: 1000px;']
1erforum.de,autoexperience.de,autoextrem.de,dasheimwerkerforum.de,fitness-foren.de,lpgforum.de,mazda-forum.info,mercedes-forum.com,modernboard.de,notebookforum.at,pkw-forum.de,unixboard.de,usp-forum.de,vermieter-forum.com,win-8-forum.net,winboard.org,windows-7-forum.net,windows-8-forum.net##[-abp-properties='margin-left: 10px; position: absolute; top: 100px;']
experto.de##[-abp-properties='margin-left: 209px;']
wetter.com##[-abp-properties='left: 105px;']
chefkoch.de##[-abp-properties='margin-left: 45px;'] > img
autoexperience.de,autoextrem.de,fitness-foren.de,kreatives-wohnforum.de,lpgforum.de,mazda-forum.info,pkw-forum.de,teccentral.de,winboard.org,windows-7-forum.net##[-abp-properties='height: 90px; margin-bottom: *0px;']
chefkoch.de##[-abp-properties='margin-bottom: 4px; margin-left: 34px;'] > img
experto.de##[-abp-properties='margin-left: 21*px;']
focus.de,gala.de##[-abp-properties='left: 83px;']
chefkoch.de##[-abp-properties='left: 661px;']
readmore.de###monkey_lb + * + * + * + [-abp-properties='text-align: center;'] > img
spiegel.de##.article-section > * > [-abp-properties='margin-right: 2.58px;']
gelnhaeuser-tageblatt.de,giessener-anzeiger.de,kreis-anzeiger.de,lauterbacher-anzeiger.de,lustich.de,oberhessische-zeitung.de,usinger-anzeiger.de##[-abp-properties='margin-left: 44px;']
mehr-tanken.de##[-abp-properties='left: 1023*px;']
wetter.com##[-abp-properties='margin-left: 1200px;']
meinestadt.de##[-abp-properties='left: 44.9*px;']
wetter.com##[-abp-properties='left: 398px;']
welt.de##.grid_4.column-2 > [-abp-properties='margin-top: 349px;']
dasheimwerkerforum.de,fitness-foren.de,toyota-forum.de,unixboard.de,vermieter-forum.com##[-abp-properties='left: 567px;']
womenshealth.de##[-abp-properties='left: 138px;']
mehr-tanken.de##[-abp-properties='left: 243px;']
allgemeine-zeitung.de,buerstaedter-zeitung.de,experto.de,giessener-anzeiger.de,hochheimer-zeitung.de,hofheimer-zeitung.de,kabeleins.de,kreis-anzeiger.de,lampertheimer-zeitung.de,lauterbacher-anzeiger.de,motorradonline.de,oberhessische-zeitung.de,prosiebenmaxx.de,rhein-main-presse.de,usinger-anzeiger.de,welt.de,wiesbadener-kurier.de,wiesbadener-tagblatt.de,wormser-zeitung.de##[-abp-properties='left: 92*px;']
autoexperience.de,bauexpertenforum.de,ford-forum.de,forumla.de,lpgforum.de,usp-forum.de,win-10-forum.de,winboard.org##[-abp-properties='left: 56*px;']
gelnhaeuser-tageblatt.de,giessener-anzeiger.de,kreis-anzeiger.de,lauterbacher-anzeiger.de,oberhessische-zeitung.de,usinger-anzeiger.de##[-abp-properties='margin-left: 306px;']
1erforum.de,autoexperience.de,autoextrem.de,dasheimwerkerforum.de,fitness-foren.de,lpgforum.de,mazda-forum.info,mercedes-forum.com,modernboard.de,pkw-forum.de,teccentral.de,unixboard.de,vermieter-forum.com,win-8-forum.net,winboard.org,windows-7-forum.net,windows-8-forum.net##[-abp-properties='left: 66*px;']
promobil.de##[-abp-properties='left: 177*px;']
pcwelt.de##[-abp-properties='margin-left: 806px;']
womenshealth.de###header + [-abp-properties='text-align: center;'] > img
meinestadt.de##[-abp-properties='margin-left: 69*px;']
gelnhaeuser-tageblatt.de,giessener-anzeiger.de,kreis-anzeiger.de,lauterbacher-anzeiger.de,oberhessische-zeitung.de,tvspielfilm.de,usinger-anzeiger.de,welt.de##[-abp-properties='left: 88*px;']
allgemeine-zeitung.de,buerstaedter-zeitung.de,hochheimer-zeitung.de,hofheimer-zeitung.de,lampertheimer-zeitung.de,rhein-main-presse.de,wiesbadener-kurier.de,wiesbadener-tagblatt.de,wormser-zeitung.de##[-abp-properties='z-index: 2000;'] > img
promobil.de##[-abp-properties='left: 17px;']
gamepro.de##[-abp-properties='left: 993px; position: absolute;']
wetteronline.de##[-abp-properties='margin-left: 272px; position: absolute; width: 728px; z-index: *;']
ran.de###left-zone > [-abp-properties='cursor: pointer; margin-bottom: 2*px;']
ariva.de##[-abp-properties='margin-bottom: 12px; margin-right: 304px;']
arcor.de##.col.grid4.teaserArea > [-abp-properties='vertical-align: baseline;']
pcwelt.de##[-abp-properties='height: 91px; position: relative; width: 980px;']
gamepro.de,gamestar.de##[-abp-properties='left: 990px; position: absolute;']
gamepro.de,gamestar.de,sportal.de##[-abp-properties='margin-left: 2*px; margin-top: *px;'] > img
arcor.de##.image > [-abp-properties='margin-left: 1*px; margin-right: 1*px;']
boerse-online.de##.main_right > [-abp-properties='margin-left: 10px;']
pcwelt.de###content > [-abp-properties='margin-left: 3*px;']
comunio.de##[-abp-properties='left: 84*px; position: absolute; top: 100px; z-index: 99*']
wetter.com##[-abp-properties='margin-left: 413px; padding-left: 2px;']
wetter.com##[-abp-properties='left: 76.8em;']
stern.de##[-abp-properties='left: 970px; position: absolute; top: 100px;']
gamepro.de,gamestar.de##[-abp-properties='left: 991px; position: absolute;']
woxikon.de##[-abp-properties='margin-left: 496px;']
unixboard.de##[-abp-properties='max-width: 12*px; position: relative; text-align: center; width: 12*px;']
serienjunkies.de###content > [-abp-properties='cursor: pointer']
general-anzeiger-bonn.de##[-abp-properties='margin-left: 230px;']
ran.de##[-abp-properties='cursor: pointer; margin-left: 2*px;']
gala.de##[-abp-properties='top: 28*px;']
lustich.de###ip_content_wrapper > [-abp-properties='height: *px; left: *; margin-left: *px; position: absolute; top: *px; vertical-align: *; width: *px;']
wetteronline.de##[-abp-properties='margin-left: 272px;']
wetteronline.de##[-abp-properties='margin-left: 7px; margin-top: 6px;']
prosiebenmaxx.de##[-abp-properties='height: 100px; position: relative; z-index: 71;']
arcor.de##[-abp-properties='position: relative; width: 1005px;']
giga.de##[-abp-properties='cursor: pointer; width: 1000px;']
prosiebenmaxx.de##[-abp-properties='margin-left: 6em;']
auto-motor-und-sport.de##[-abp-properties='margin-left: 17px;']
serienjunkies.de##[-abp-properties='height: 9*px; position: relative; width: 93*px; z-index: 1;']
arcor.de##.teaserArea > [-abp-properties='margin-right: 1*px; padding-left: 1*px;']
wetter.com##[-abp-properties='margin-left: 238px; margin-top: 25px;']
general-anzeiger-bonn.de##[-abp-properties='cursor: pointer; max-height: 230px;']
wetter.com##[-abp-properties='margin-bottom: 13px; margin-left: 23*px; margin-top: 26px;']
wetteronline.de###sidebar > [-abp-properties='padding-top: 19px;']
echo-online.de###rightbar > [-abp-properties='margin-bottom: 3*px; padding*: 1*px;']
spox.com###frnMain > [-abp-properties='cursor: pointer; height: *px; margin-bottom: 5px; margin-top: *px; width: *px;']
arcor.de,main-spitze.de##[-abp-properties='position: relative; width: 10*px;']
prosiebenmaxx.de###aside-zone > [-abp-properties='display: block; margin-bottom: 1.*em;']
shz.de##[-abp-properties='cursor: pointer; margin-left: 46px;']
wetter.com##[-abp-properties='margin-left: 14em; margin-top: 2.2em;']
pcwelt.de##[-abp-properties='height: 92px; position: relative; width: 979px;']
usp-forum.de##[-abp-properties='cursor: pointer; height: 9*px; width: 72*px;']
boerse.de##[-abp-properties='margin-right: 180px; position: relative;']
wetteronline.de###rightcontainer > [-abp-properties='display: block; margin-top: 9*px;']
wetteronline.de##[-abp-properties='display: block; padding-top: 20px;']
funfire.de##[-abp-properties='left: 1040px;']
allgemeine-zeitung.de,buerstaedter-zeitung.de,gelnhaeuser-tageblatt.de,giessener-anzeiger.de,hochheimer-zeitung.de,hofheimer-zeitung.de,kreis-anzeiger.de,lampertheimer-zeitung.de,lauterbacher-anzeiger.de,oberhessische-zeitung.de,rhein-main-presse.de,usinger-anzeiger.de,wiesbadener-kurier.de,wiesbadener-tagblatt.de,wormser-zeitung.de##[-abp-properties='left: 107*px; position: absolute; top: 10*px;']
comunio.de##[-abp-properties='left: 841px; position: absolute; top: 100px; z-index: 1000;']
cavallo.de,pnn.de##[-abp-properties='left: 10*px; position: absolute; top: 1*px;']
wetteronline.de##[-abp-properties='cursor: pointer; float: left; height: 9*px; left: 0px; margin-left: 2*px; position: absolute; width: 7*px; z-index: *;']
woxikon.de##[-abp-properties='bottom: 2px; position: relative; text-align: center;']
tvspielfilm.de##[-abp-properties='left: 80px; position: relative;'] + div
arcor.de##.teaserArea > [-abp-properties='margin-left: 1*px; margin-right: 1*px;']
klettern-magazin.de,klettern.de,outdoor-magazin.com,tvspielfilm.de##[-abp-properties='left: 80px; position: relative;']
focus.de##[-abp-properties='margin-left: 392px;']
spiegel.de##.article-section > * > [-abp-properties='margin-right: 3.58px;']
spiegel.de##.article-section > * > [-abp-properties='margin-right: 3.56px;']
pcwelt.de##[-abp-properties='margin-left: 803px;']
wetter.com##[-abp-properties='margin-bottom: 2.1em; margin-left: 22*px;']
wetter.com##[-abp-properties='left: 76.6em;']
readmore.de##[-abp-properties='left: 958px;']
focus.de##[-abp-properties='margin-left: 390px;']
readmore.de###monkey_lb + * + * + * + * + [-abp-properties='text-align: center;'] > img
comunio.de,fem.com,ran.de,welt.de,wetter.com##[-abp-properties='left: 83*px;']
funfire.de###nab_top + * + * + div > [-abp-properties='margin-bottom: 10px;'] > img
welt.de##.grid_4.column-2 > [-abp-properties='margin-top: 337px;']
welt.de##[-abp-properties='margin-top: 11.0*px;']
gala.de##.row > [-abp-properties='left: 6px; top: 6px;']
wetter.com##[-abp-properties='left: 116*px;']
woxikon.de##[-abp-properties='margin-left: -232px;']
spiegel.de##.article-section > [-abp-properties='margin-right: 8px;']
auto-motor-und-sport.de##.maincol > [-abp-properties='display: block; margin-left: 16px;']
serienjunkies.de##[-abp-properties='height: 91px; position: relative; width: 935px;']
abendzeitung-muenchen.de,pcwelt.de##[-abp-properties='margin-left: 29px;']
serienjunkies.de##[-abp-properties='height: 91px;']
wetteronline.de###sidebar > [-abp-properties='display: block; padding-top: 12px;']
ariva.de##[-abp-properties='margin-right: 302px;']
wetter.com##[-abp-properties='display: block; margin-left: 76.8em; margin-top: 5.9em; position: absolute;']
spiegel.de##.article-section > [-abp-properties='margin-right: 6px;']
wetter.com##[-abp-properties='margin-left: 20*px;']
spox.com##[-abp-properties='display: block; height: 60*px; left: 95*px; position: absolute; width: 16*px;']
stern.de##[-abp-properties='margin-bottom: 5px; margin-left: 232px;']
gamepro.de##.content > [-abp-properties='cursor: pointer;']
arcor.de##[-abp-properties='margin-left: 105px;']
wetteronline.de##[-abp-properties='display: block; margin-top: 90px;']
auto-motor-und-sport.de##[-abp-properties='top: 159px; width: 1020px; z-index: 3;']
gala.de##[-abp-properties='cursor: pointer; margin-bottom: 45px; margin-left: 10px;']
tvdigital.de##.tvd-box > [-abp-properties='cursor: pointer; margin-left: 20px;']
wetteronline.de##[-abp-properties='display: block; margin-left: 7px; margin-top: 6px; padding-top: 12px;']
wetter.com##[-abp-properties='margin-bottom: 28px; padding-bottom: 3px; padding-top: 3px;']
pcwelt.de##[-abp-properties='height: 92px; position: relative; width: 978px;']
arcor.de##[-abp-properties='width: 111*px']
runnersworld.de###flashbuehne > div > [-abp-properties='cursor: pointer;']
caravaning.de##.basicteaser + [-abp-properties='text-align: center;']
comunio.de##[-abp-properties='margin-bottom: 9px; margin-left: 10*px; margin-top: 10px;']
auto-motor-und-sport.de,caravaning.de##[-abp-properties='position: absolute; top: 160px; width: 1020px;']
mtb-news.de##[-abp-properties='margin-left: 16*px;'] > img
arcor.de##.pWrap > [-abp-properties='position: *; text-align: *; width: *px;']
pcgames.de##[-abp-properties='margin-left: -5px;']
mtb-news.de##[-abp-properties='margin-left: 248px;']
wetter.com##[-abp-properties='margin-bottom: 2.1em; margin-left: 221px;']
ariva.de##[-abp-properties='margin-bottom: 12px; margin-right: 305px;']
ariva.de##[-abp-properties='margin-bottom: 11px; margin-right: 303px;']
pnn.de##[-abp-properties='left: 7*px; position: relative;']
welt.de##[-abp-properties='cursor: pointer; margin-bottom: 5px;']
tvdigital.de##[-abp-properties='left: 5px; position: relative;'] > img
tvdigital.de##[-abp-properties='margin-left: 19px;']
cavallo.de##[-abp-properties='left: 4*px; position: relative;']
pcwelt.de##[-abp-properties='margin-left: 4px;'] > img
meinestadt.de,pcwelt.de##[-abp-properties='margin-left: 96*px;']
mtb-news.de##[-abp-properties='left: 120*px;']
welt.de##.grid_4 > [-abp-properties='margin-top: 39*px;']
bikemarkt.mtb-news.de##[-abp-properties='margin-left: 107*px;']
boerse.de,tvtoday.de##[-abp-properties='left: 22*px;']
pnn.de,wetteronline.de##[-abp-properties='left: 35*px;']
planetsnow.de,prosiebenmaxx.de,welt.de##[-abp-properties='left: 47px;']
spiegel.de##.article-section > [-abp-properties='margin-right: 1em;']
allgemeine-zeitung.de,buerstaedter-zeitung.de,hochheimer-zeitung.de,hofheimer-zeitung.de,lampertheimer-zeitung.de,pnn.de,rhein-main-presse.de,wiesbadener-kurier.de,wiesbadener-tagblatt.de,wormser-zeitung.de##[-abp-properties='left: 108*px;']
welt.de##.grid_4 > [-abp-properties='left: -9px']
comunio.de##[-abp-properties='margin-left: 103px;']
gamesaktuell.de##[-abp-properties='margin-top: -8*px;']
menshealth.de##[-abp-properties='left: 8*px;']
gamona.de##[-abp-properties='left: 0px; top: 1px; width: 1000px;']
comunio.de##[-abp-properties='zoom: 0.965;'] > img
pcgames.de##[-abp-properties='margin-left: 4px; position: relative;']
arcor.de##.teaserArea > [-abp-properties='vertical-align: top;']
gamestar.de##[-abp-properties='cursor: pointer; text-align: center;'] > img
wetteronline.de###topcontainer > [-abp-properties='float: right;'] > * > img
sat1gold.de##[-abp-properties='left: 76.5*px;']
videogameszone.de##.limitBox > span + [-abp-properties='left: 10px;'] > img
welt.de##.grid_4.column-2 > [-abp-properties='margin-top: 334px;']
focus.de##[-abp-properties='margin-left: 387px;']
arcor.de##[-abp-properties='position: relative; width: 89*px;']
flugzeugforum.de##[-abp-properties='height: 90px; margin-bottom: 10px;']
gamona.de##[-abp-properties='right: 989*px;']
readmore.de##[-abp-properties='margin-top: 30px; position: fixed; z-index: 10;']
prosiebenmaxx.de##[-abp-properties='z-index: 139;']
chefkoch.de##[-abp-properties='margin-left: 945px;']
welt.de##[-abp-properties='margin-top: 10.7*px;']
comunio.de,runnersworld.de,welt.de##[-abp-properties='left: 809px;']
kabeleins.de##[-abp-properties='left: 904px;']
menshealth.de##[-abp-properties='left: 589px;']
prosiebenmaxx.de,sat1gold.de,welt.de##[-abp-properties='left: 41.5*px;']
funfire.de##[-abp-properties='left: 1041px;']
wetter.com##[-abp-properties='left: 92px;']
gamesaktuell.de##[-abp-properties='margin-left: -302px;']
gamesaktuell.de##[-abp-properties='margin-left: -24px;']
fem.com##[-abp-properties='left: 106.7*px;']
kabeleins.de##[-abp-properties='width: 722*px;'] > img
pcwelt.de##[-abp-properties='margin-left: 651px;']
fem.com##[-abp-properties='left: 126px;']
wetter.com##[-abp-properties='margin-left: 1201px;']
wetter.com##[-abp-properties='display: block; width: 301px;']
menshealth.de##[-abp-properties='margin-left: 12px; position: relative;'] > img
funfire.de###nab_top + * + * + * + div > [-abp-properties='margin-bottom: 10px;'] > img
nwzonline.de,pcwelt.de##[-abp-properties='margin-left: 98*px;']
gamesaktuell.de##[-abp-properties='margin-top: -78px;']
pcwelt.de##[-abp-properties='top: 97px;']
mehr-tanken.de##[-abp-properties='margin-bottom: 5px; margin-left: 5px; margin-top: 12px;']
readmore.de###monkey_lb + * + * + * + * + * + [-abp-properties='text-align: center;'] > img
gamona.de##[-abp-properties='left: -0.01px;'] > img
mehr-tanken.de##[-abp-properties='left: 1022*px;']
mtb-news.de,nwzonline.de##[-abp-properties='margin-left: 249px;']
chefkoch.de##[-abp-properties='margin-left: 44px;'] > img
the-voice-of-germany.de##[-abp-properties='left: 188.5*px;']
wetter.com##[-abp-properties='left: 104px;']
gamona.de##[-abp-properties='left: 989*px;']
gamestar.de##[-abp-properties='left: 1015px;']
sat1gold.de,welt.de##[-abp-properties='left: 41.4*px;']
sixx.de##[-abp-properties='left: 145.6*px;']
fem.com##[-abp-properties='left: 125px;']
the-voice-of-germany.de##[-abp-properties='left: 47.5*px;']
spiegel.de##.article-section [-abp-properties='margin-right: 2.99px;']
focus.de##[-abp-properties='left: 81px;']
welt.de##[-abp-properties='left: 41.2*px;']
videogameszone.de##[-abp-properties='left: 138*px;']
wetter.com##[-abp-properties='left: 397px;']
allgemeine-zeitung.de,buerstaedter-zeitung.de,lampertheimer-zeitung.de,wiesbadener-kurier.de,wiesbadener-tagblatt.de###rightbar > [-abp-properties='cursor: pointer;']
nwzonline.de##.clr > div > div > [-abp-properties='text-align: center;'] > img
wetter.com##[-abp-properties='left: 96px; position: relative;'] > img
focus.de###sidebar [-abp-properties='margin-left: 359px;']
abendzeitung-muenchen.de,runnersworld.de,wetter.com##[-abp-properties='margin-left: 201px;']
focus.de##[-abp-properties='left: 84px;'] > * > img
wetteronline.de##[-abp-properties='left: 27*px;']
wetter.com##[-abp-properties='top: 161px;'] > img
wetter.com##[-abp-properties='left: 780px;']
wetter.com##[-abp-properties='left: 108px;'] > img
klettern-magazin.de,klettern.de,mountainbike-magazin.de,outdoor-magazin.com,planetsnow.de##.main-left > [-abp-properties='left: 20px;']
wetteronline.de###sidebar > [-abp-properties='padding-top: 21px;'] > img
hoerzu.de##[-abp-properties='margin-right: 6px;']
cavallo.de##[-abp-properties='cursor: pointer; margin-bottom: 11px; margin-left: 300px;']
spiegel.de##.article-section > [-abp-properties='margin-right: 14px;']
experto.de,general-anzeiger-bonn.de,ran.de,welt.de##[-abp-properties='margin-left: 22*px;']
pcwelt.de##[-abp-properties='margin-left: 93*px;']
spiegel.de##.article-section > [-abp-properties='margin-right: 5px;']
echo-online.de,gelnhaeuser-tageblatt.de,giessener-anzeiger.de,kreis-anzeiger.de,lauterbacher-anzeiger.de,oberhessische-zeitung.de,usinger-anzeiger.de##[-abp-properties='margin-left: 40px;'] > img
ran.de###aside-zone > [-abp-properties='bottom: 10px; position: relative;'] > img
wetter.com##[-abp-properties='left: 96px;']
pcwelt.de##[-abp-properties='left: 152px; margin-left: 849px;']
autobild.de##[-abp-properties='cursor: pointer; height: 90px;']
gamestar.de##[-abp-properties='bottom: 3px; position: relative;']
experto.de,nnn.de,prignitzer.de,shz.de,svz.de##[-abp-properties='margin-left: 25*px;']
echo-online.de,gelnhaeuser-tageblatt.de,giessener-anzeiger.de,kreis-anzeiger.de,lauterbacher-anzeiger.de,oberhessische-zeitung.de,usinger-anzeiger.de##[-abp-properties='margin-left: 308px;']
gala.de##[-abp-properties='left: 39px;'] > * > img
meinestadt.de##[-abp-properties='left: 46px; position: relative;']
mtb-news.de##[-abp-properties='left: 122*px;']
menshealth.de##[-abp-properties='left: 61*px;']
gamesaktuell.de##[-abp-properties='margin-left: -29*px;']
mtb-news.de##[-abp-properties='margin-left: 247px;']
abendzeitung-muenchen.de,echo-online.de,gala.de,sportal.de,spox.com,welt.de##[-abp-properties='left: 95*px;']
bikemarkt.mtb-news.de##[-abp-properties='margin-left: 108*px;']
welt.de##div > [-abp-properties='margin-top: 10px;']:last-child > img
welt.de##.grid_4 > [-abp-properties='margin-top: 38*px;']
videogameszone.de##[-abp-properties='left: -1px; position: relative;']
pcwelt.de##[-abp-properties='margin-left: 86*px;']
mtb-news.de##[-abp-properties='margin-left: 157px;']
gamesaktuell.de##[-abp-properties='margin-top: -79px;']
meinestadt.de##[-abp-properties='margin-left: 66*px;']
gamesaktuell.de###row_4 + [-abp-properties='margin-left: 10px;'] > img
mtb-news.de##[-abp-properties='float: right; margin-top: 25px;']
videogameszone.de###inhalt2 > [-abp-properties='margin-bottom: 36px;']
bikemarkt.mtb-news.de##.span12.header > [-abp-properties='top: 10px;']
menshealth.de##[-abp-properties='margin-left: 7px; position: relative;']
videogameszone.de##[-abp-properties='left: -30*px;']
spox.com##[-abp-properties='display: block; margin-bottom: 5px; margin-top: 5px;']
gamestar.de##[-abp-properties='cursor: pointer; left: 990px; position: absolute; top: 100px;']
runnersworld.de##[-abp-properties='margin-bottom: 11px; margin-left: 31px;']
comunio.de##[-abp-properties='margin-bottom: 10px; margin-left: 102px; margin-top: 10px;']
ran.de###left-zone > [-abp-properties='margin-left: 35px;']
cavallo.de,planetsnow.de##.main-left > [-abp-properties='margin-left: 17px;']
nnn.de,prignitzer.de,shz.de,svz.de##[-abp-properties='margin-left: 292px;']
arcor.de##[-abp-properties='margin-left: 104px;']
gamepro.de##.columnTeaser > [-abp-properties='cursor: pointer;']
autobild.de,autoexperience.de,lpgforum.de,winboard.org##[-abp-properties='height: 90px; *width: 728px;']
wetter.com##[-abp-properties='left: 95px;']
pcwelt.de##[-abp-properties='top: 102px;']
gamepro.de##[-abp-properties='bottom: 2px; position: relative']
spox.com###frnAdSky + * + div > [-abp-properties='margin-bottom: 5px;'] > img
spiegel.de##.article-section > * > [-abp-properties='margin-right: 2.8*px;']
ran.de,runnersworld.de##[-abp-properties='margin-left: 19*px;']
wetter.com##[-abp-properties='left: 40*px;']
gala.de,sixx.de##[-abp-properties='left: 38px;']
runnersworld.de##.col-left > [-abp-properties='bottom: 6px; position: relative;']
mtb-news.de,wetter.com##[-abp-properties='margin-left: 117*px;']
arcor.de##[-abp-properties='left: 10px; position: relative; width: 1120px;']
echo-online.de,gelnhaeuser-tageblatt.de,giessener-anzeiger.de,kreis-anzeiger.de,lauterbacher-anzeiger.de,oberhessische-zeitung.de,runnersworld.de,usinger-anzeiger.de##[-abp-properties='left: 90*px;']
e-mountainbike.com,elektrobike-online.com,mtb-news.de,outdoor-magazin.com,outdoorchannel.de,prosiebenmaxx.de,roadbike.de,tvtoday.de##[-abp-properties='left: 21*px;']
fem.com,wetter.com##[-abp-properties='left: 107px;']
e-mountainbike.com,elektrobike-online.com,outdoor-magazin.com,planetsnow.de,roadbike.de##[-abp-properties='left: 11px;']
arcor.de##[-abp-properties='margin-left: 13px;']
auto-motor-und-sport.de##[-abp-properties='margin-left: 134px;']
focus.de##[-abp-properties='margin-left: 399px;']
pcwelt.de##[-abp-properties='margin-left: 83*px;']
wetter.com##[-abp-properties='left: 76.8em; margin-top: 5.9em; position: absolute; top: 0px; z-index: 1;']
pcwelt.de##[-abp-properties='display: table;'] > * > img
spiegel.de##.article-section > [-abp-properties='margin-right: 15px;']
arcor.de##.teaserArea > [-abp-properties='cursor: pointer;']
gamepro.de,gamestar.de##[-abp-properties='display: block; margin-top: 100px;']
epochtimes.de##.plista_widget_belowArticle [-abp-properties='max-height: 217px; max-width: 177px;']
weristdeinfreund.de##[-abp-properties='max-height: 20.8em; max-width: 80.8em;']
arcor.de##[-abp-properties='margin-left: 11*px; position: relative; width: 99*px;']
epochtimes.de##[-abp-properties='max-width: 970px;']
bikemarkt.mtb-news.de##[-abp-properties='float: right; margin-top: 10px;']
auto-motor-und-sport.de##[-abp-properties='left: 7.5em;']
fanfiktion.de,spox.com##[-abp-properties='max-width: 728px;']
pixelio.de##[-abp-properties='max-height: 90px; max-width: 66.2em;']
auto-motor-und-sport.de##.teaser.b > * > [-abp-properties='margin-left: 14px;']
pcwelt.de##[-abp-properties='cursor: pointer; left: 242px; position: absolute;']
gamepro.de,gamestar.de,infranken.de##[-abp-properties='left: 992px;']
e-hausaufgaben.de##[-abp-properties='max-height: 90px; max-width: 45.5em;']
news.de##.plista_widget_underArticle [-abp-properties='max-width: 158px;']
abacho.de,infranken.de,inside-handy.de,tabtech.de##[-abp-properties='max-height: 300px;']
auto-motor-und-sport.de##[-abp-properties='left: 38*px;']
autozeitung.de##[-abp-properties='max-width: 30em;']
news.de##[-abp-properties='max-height: 240px; max-width: 52em;']
weristdeinfreund.de##[-abp-properties='max-height: 50em; max-width: 25em;']
autozeitung.de##[-abp-properties='left: 980px;']
lustich.de##[-abp-properties='left: 11*px;']
lustich.de##[-abp-properties='margin-left: 49px;']
epochtimes.de##.large-12 [-abp-properties='max-height: 25*px; max-width: 30*px;']
news.de##[-abp-properties='max-height: 90px; max-width: 56em;']
abacho.de,epochtimes.de,fanfiktion.de,formel1.de,fremdwort.de,inside-handy.de,motorsport-total.com,news.de,quoka.de##[-abp-properties='max-width: 300px;']
infranken.de##.plista_widget_belowArticle [-abp-properties='max-width: 204px;']
donnerwetter.de,nickles.de,pixelio.de,tabtech.de##[-abp-properties='max-width: 160px;']
ariva.de##[-abp-properties='margin-right: 304px;']
donnerwetter.de##[-abp-properties='max-height: 90px; max-width: 52em;']
gamepro.de,gamestar.de##[-abp-properties='margin-top: 102px;']
lustich.de##[-abp-properties='margin-left: 35*px;']
cavallo.de,e-mountainbike.com,elektrobike-online.com,klettern-magazin.de,klettern.de,mountainbike-magazin.de,outdoor-magazin.com,outdoorchannel.de,planetsnow.de,roadbike.de##[-abp-properties='margin-bottom: 12px; margin-left: 301px;']
fem.com##[-abp-properties='left: 109px;']
stern.de##[-abp-properties='left: 971px; position: absolute; top: 100px;']
ran.de###aside-zone > [-abp-properties='cursor: pointer; margin-bottom: 2*px;']
comunio.de##[-abp-properties='left: 840px; position: absolute; top: 100px;']
1erforum.de,allgemeine-zeitung.de,autoexperience.de,autoextrem.de,buerstaedter-zeitung.de,dasheimwerkerforum.de,fitness-foren.de,gamestar.de,hochheimer-zeitung.de,hofheimer-zeitung.de,lampertheimer-zeitung.de,lpgforum.de,mazda-forum.info,mercedes-forum.com,modernboard.de,notebookforum.at,pkw-forum.de,rhein-main-presse.de,teccentral.de,vermieter-forum.com,wiesbadener-kurier.de,wiesbadener-tagblatt.de,win-8-forum.net,winboard.org,windows-7-forum.net,wormser-zeitung.de##[-abp-properties='height: 250px; width: 300px;']
epochtimes.de##[-abp-properties='max-height: 25*px; max-width: 300px;']
sixx.de##[-abp-properties='left: 39px;'] > img
fem.com##[-abp-properties='margin-bottom: 10px; margin-left: 2*2px;']
abendzeitung-muenchen.de,comunio.de,fem.com##[-abp-properties='left: 84*px;']
allgemeine-zeitung.de,buerstaedter-zeitung.de,hochheimer-zeitung.de,hofheimer-zeitung.de,lampertheimer-zeitung.de,rhein-main-presse.de,wiesbadener-kurier.de,wiesbadener-tagblatt.de,wormser-zeitung.de##[-abp-properties='left: 39px;']
gamepro.de,gamestar.de##[-abp-properties='margin-top: 101px;']
gala.de,pcwelt.de,runnersworld.de##[-abp-properties='left: 30px; position: relative;']
wetter.com##[-abp-properties='margin-left: 236px; margin-top: 30px;']
abendzeitung-muenchen.de##.sidebar > [-abp-properties='margin-left: 28px;']

Add a detailed description of the extended pseudo-classes

Explain every pseudo-class using the same layout as here:
https://github.com/AdguardTeam/AdguardKnowledgeBase/blob/master/pages/02.general/02.how-to-create-your-own-ad-filters/docs.en.md#extended-css-has

  • :has (:-abp-has, :if)
  • :if-not
  • :contains (:-abp-contains, :has-text, :-abp-has-text)
  • :matches-css, :matches-css-before, :matches-css-after
  • :properties (:-abp-properties)
  • { debug: true } and { debug: global }

@seanl-adg how would you describe the difference between :properties and :matches-css so that filters maintainers understand it easier?

Support ":scope"

I see that you want add support for [-abp-*] syntax and :has-text() , so maybe you can also add support for :scope which is supported by uBlock Origin or is not needed/necessary?

In uBlock filter are few rules which use this, for example - https://github.com/uBlockOrigin/uAssets/blob/e4e4d64e33615ffd95cd7524d54f513e888e4950/filters/filters.txt#L1128

nextinpact.com###list_news > section[class]:if(:scope > span:has-text(Publicité))

Edit (by @ameshkov): :scope description -- https://developer.mozilla.org/en-US/docs/Web/CSS/:scope

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.