This filter is either a regular expression or too short...

Posting here is no longer possible, please use the forum of a filter list project, such as EasyList
Locked
blahblahaaa

This filter is either a regular expression or too short...

Post by blahblahaaa »

can anyone please help me optimize these filters, so that they don't slow down browsing. I have no idea how to.

Code: Select all

*facebook*^$domain=~facebook.com|~facebook.net|~fbcdn.com|~fbcdn.net
*tweet*^$domain=~twitter.com
*twitter*^$domain=~twitter.com
P.S. I already have these filters but they don't catch everything.

Code: Select all

||facebook.net^$domain=~facebook.com|~facebook.net|~fbcdn.com|~fbcdn.net
||fbcdn.com^$domain=~facebook.com|~facebook.net|~fbcdn.com|~fbcdn.net
||fbcdn.net^$domain=~facebook.com|~facebook.net|~fbcdn.com|~fbcdn.net
||twimg.com^$domain=~twitter.com|~twimg.com
||twitter.com^$domain=~twitter.com|~twimg.com
thanks
Michael
Posts: 1361
Joined: Sat Dec 19, 2009 12:29 pm

Re: This filter is either a regular expression or too short...

Post by Michael »

Adblock Plus filters are considered efficient if they contain at least one string of three or more alphanumeric characters surrounded by non alphanumeric characters (other than asterisks (*)). Do the following efficient filters block the unwanted items?

Code: Select all

^facebook^$domain=~facebook.com|~facebook.net|~fbcdn.com|~fbcdn.net
^tweet^$domain=~twitter.com
^twitter^$domain=~twitter.com
Locked