Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Multiple filters in Google chrome dev tools

Is is possible to put multiple filters in the network filter input. An example use case would be having something like Domain:cycle.com OR domain:cuz.com. I would only like to see network requests from both those domains and nothing else. I did a lot of searching but have not found a solution.

like image 460
Stephen Morrissey Avatar asked Sep 06 '25 03:09

Stephen Morrissey


1 Answers

As per the Google Chrome Developer docs here, we can see that:

You can use multiple properties simultaneously by separating each property with a space. For example, mime-type:image/gif larger-than:1K displays all GIFs that are larger than one kilobyte. These multi-property filters are equivalent to AND operations. OR operations are currently not supported.

like image 195
cjones26 Avatar answered Sep 08 '25 00:09

cjones26