[Solved] Newb question for a filter.

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

[Solved] Newb question for a filter.

Post by berzerk »

Hi,

I just started using AdBlock Plus, so please be gentle with me.

I would like to have a filter that blocks all gifs from a server, except those starting with the word "rating".

images.betanews.com/betanews/cart.gif
images.betanews.com/betanews/submit_news.gif
images.betanews.com/betanews/rating-4.0.gif

So all GIF files like the first 2 are NOT requested from the server, the 3rd one is.

Please, how can I do that please, I've be studying about the regexp, but I still wasn't able to do it correctly.
Last edited by berzerk on Sun Jul 13, 2008 2:04 am, edited 1 time in total.
User avatar
Adblock Plus Fan
Posts: 1255
Joined: Sat Feb 24, 2007 11:08 am

Post by Adblock Plus Fan »

I would suggest using whitelist since regexps are not reccommended.

Code: Select all

images.betanews.com/betanews/*.gif
@@images.betanews.com/betanews/rating*.gif
berzerk
Posts: 83
Joined: Fri Jul 04, 2008 5:12 am

Post by berzerk »

Adblock Plus Fan wrote:I would suggest using whitelist since regexps are not reccommended.

Code: Select all

images.betanews.com/betanews/*.gif
@@images.betanews.com/betanews/rating*.gif
Great !
Thank you very much Adblock Plus Fan !:)
Locked