dictionary.com

This is where you should report issues arising from the subscription filters.
Locked
Jacob H
New Member
New Member
Posts: 5
Joined: Sun Jun 18, 2017 3:22 pm

dictionary.com

Post by Jacob H »

There are some rules for dictionary.com and other websites which seem overly broad:

Code: Select all

dictionary.com,indiewire.commcodeproject.com,tweaktown.com##[style] > [scrolling]
codeproject.com,dictionary.com,indiewire.com,tweaktown.com##[style] > iframe
101greatgoals.com,allthetests.com,biology-online.org,indiewire.com,jerusalemonline.com##div > iframe:first-child
dictionary.com,tweaktown.com##iframe[id][style]
codeproject.com,dictionary.com,indiewire.com,tweaktown.com##iframe[marginheight]
codeproject.com,dictionary.com,indiewire.com,tweaktown.com##iframe[marginwidth]
codeproject.com,dictionary.com,indiewire.com,tweaktown.com##iframe[name][style]
codeproject.com,dictionary.com,indiewire.com,tweaktown.com##iframe[style][scrolling]
codeproject.com,dictionary.com,indiewire.com,tweaktown.com##iframe[style][src]
To be more specific, I use a Chrome extension that injects iframes into webpages, and the last two rules are preventing it from working on dictionary.com and the other websites listed.
User avatar
fanboy
EasyList Author
EasyList Author
Posts: 12223
Joined: Wed Sep 05, 2007 8:17 pm

Post by fanboy »

The site injects iframe ads on the site, has to be broad.
Jacob H
New Member
New Member
Posts: 5
Joined: Sun Jun 18, 2017 3:22 pm

Post by Jacob H »

Perhaps you could add this to these selectors to only select iframes that display content from external webpages?

Code: Select all

[src^="http"]
The Chrome extension's iframes have src "about:blank", so this would resolve the problem.

In full, something like this:

Code: Select all

dictionary.com,indiewire.commcodeproject.com,tweaktown.com##[style] > [src^="http"][scrolling]
codeproject.com,dictionary.com,indiewire.com,tweaktown.com##[style] > iframe[src^="http"]
101greatgoals.com,allthetests.com,biology-online.org,indiewire.com,jerusalemonline.com##div > iframe[src^="http"]:first-child
dictionary.com,tweaktown.com##iframe[id][style][src^="http"]
codeproject.com,dictionary.com,indiewire.com,tweaktown.com##iframe[marginheight][src^="http"]
codeproject.com,dictionary.com,indiewire.com,tweaktown.com##iframe[marginwidth][src^="http"]
codeproject.com,dictionary.com,indiewire.com,tweaktown.com##iframe[style][src^="http"]
Locked