Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Chrome Developer Tools - Use filter text field to match multiple requests

In Chrome Developer Tools, I want to use the filter text field in the Network panel to match multiple requests, for example, to show all requests with names containing either "coda" or "smart". Also, supposing I have 10 images with names image[0-9].jpg (image0, image1,...image9), what expression do I write to match them all?

I have checked the Developer Tools documentation on said subject, but it didn't help. Also, the regex checkbox in this picture isn't available in my own developer tools (Chrome 71)

like image 395
AAA Avatar asked Dec 11 '22 04:12

AAA


1 Answers

I finally figured it out. For the first part: /\bcoda|smart\b/

For the second part: /image\d.jpg/

The regex checkbox isn't available because the filter text field already supports regex expressions.

like image 80
AAA Avatar answered Dec 29 '22 08:12

AAA