it3xl
it3xl

Reputation: 2672

DevTools of Google Chrome. Hide all HTTP requests with 200 status in the Network tab

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

Answers (1)

Javier Silva Ortíz
Javier Silva Ortíz

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

Related Questions