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)
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.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With