How to allow a filtered object on specifc site ?

Posting here is no longer possible, please use the forum of a filter list project, such as EasyList
Locked
berzerk
Posts: 83
Joined: Fri Jul 04, 2008 5:12 am

How to allow a filtered object on specifc site ?

Post by berzerk »

Hi,

I have the following filter in my self added filters, because i find this script annoying, and image loading using it takes about 10 times as long as just opening an image directly.

"scriptaculous.js"

Now, I want to disable this filter on the domain "lavalys.com"

Anyone know how this is possible, by changing the filter code please ?
Ares2
Posts: 1275
Joined: Fri Feb 15, 2008 12:47 pm

Post by Ares2 »

Code: Select all

scriptaculous.js$domain=~lavalys.com
see http://adblockplus.org/forum/viewtopic.php?t=3269
berzerk
Posts: 83
Joined: Fri Jul 04, 2008 5:12 am

Post by berzerk »

Great!
Thanks Ares, learned something new again ! 8)
berzerk
Posts: 83
Joined: Fri Jul 04, 2008 5:12 am

Post by berzerk »

Just a little question Ares,

your filter works fantastic, but now, when I want to bypass this filter on another domain, would this work ?

Code: Select all

scriptaculous.js$domain=~(lavalys.com|otherdomain.com)

Ares2
Posts: 1275
Joined: Fri Feb 15, 2008 12:47 pm

Post by Ares2 »

berzerk wrote:on another domain, would this work ?

Code: Select all

scriptaculous.js$domain=~(lavalys.com|otherdomain.com)
No. Regexp + Adblock Plus = bad. Remember that. :D

For the syntax, see the link I gave you in the last post.
berzerk
Posts: 83
Joined: Fri Jul 04, 2008 5:12 am

Post by berzerk »

Thanks ! :)
Locked