Is there a way to filter network requests using Google Chrome developer tools?

Adam Lee picture Adam Lee · Feb 1, 2013 · Viewed 66.7k times · Source

Is it possible to filter out some requests using Chrome developer tools, say, filter out all image requests?

Answer

Mark Doyle picture Mark Doyle · Jan 4, 2015

Negative text filters - list results not matching a given query.

  • Use -.png or -.gif or -.jpg as filter in the network panel.
  • Many other negative filters work too. e.g. -mime-type:image/png, -larger-than:20k, -domain:yoursite.com, -status-code:404. See Chrome developer docs - Sorting and filtering.

Available since Chrome ~42 - Issue Link, announced here

Another approach: In the Network panel open the filter and CTRL/CMD-click the types of requests you want to show. To hide just image requests then select all the other types except images while holding CTRL/CMD.