I am trying to exclude gmail's requests from Live Http headers, but I cant seem to get the exclude reg ex to work.
My exclude regex is this: .gif$|.jpg$|.ico$|.css$|.js$|.*mail.google.com.*
Any ideas/suggestions?
|
I am trying to exclude gmail's requests from Live Http headers, but I cant seem to get the exclude reg ex to work. My exclude regex is this: Any ideas/suggestions?
| |||
|
feedback
|
|
I have had the same problem and its soultion was stupid simple:
Hint: you do need to add the | |||
|
feedback
|
|
I think. You sould use "\." to catch a dot. Dot without slash is any symbol. Like this: \.gif$|\.jpg$|\.ico$|.css$|\.js$|.*mail\.google\.com.* | |||
feedback
|