Is it possible to filter the Chrome / Firebug network bar with a regular expression?

There is a screenshot in this related SO question showing a similar function for what I want to do, but the regex checkbox is missing from my Chrome developer tools.

I want a regex filter for the web tab, not the console output.

For example, to filter requests sent to three ad companies, I would like to place something like (ad1 | ad2 | ad3) in the network filter. Or for analytics, (_utm | omtrdc | scorecard).

Also related.

+3


source to share


1 answer


I was analyzing my site which has a lot of uploaded images.

This is what I use all the time to exclude an image from the network list

Exception only jpg

^((?!.jpg).)*$

      



To exclude jpeg, png, jpg

^((?!.jpeg|png|jpg).)*$

      

enter image description here

0


source







All Articles