How to filter Chrome Dev Tool Network calls by Request url?

Viewed 18

I wish to filter all the network calls having value / sub-string valueresearchonline.com against Request URL in Headers, how to do that ?

I tried domain: valueresearchonline.com in the filter box but it doesn't work

2 Answers

That is the correct way to filter the network calls by their request URL however, you need to remove the space between the property and it's value:

domain:valueresearchonline.com

This should work.

For me below solution worked

Step 1:

type domain: and wait for few seconds; Chrome will show you the list of domains.

enter image description here

Step 2:

Then enter domain:*.domain:*.valueresearchonline.com

Related