Reputation: 2672
Is it possible to hide all HTTP requests with 200 status in the Network tab of DevTools in Google Chrome?
I want to control broken or problem requests while doing some modifications in Web sites.
The DevTools Network tab looks pretty well to have such filtering in place.
Upvotes: 2
Views: 1641
Reputation: 2982
You can type -status-code:200
(notice the -
) to give you the requests not with status code 200. The -
negates the expression. For reference documentation on the filter you can check this and also read this tutorial.
Upvotes: 7