Skip to content
Go back

Chrome DevTools Network Tab Filter Cheat Sheet

Chrome DevTools Network Tab Filter Cheat Sheet

The Filter text box at the top of the Network panel accepts more than plain text. You can type property filters like status-code:404 to narrow the request list. This is a reference for the filters that actually work, based on the Chrome DevTools Network reference.

How the filter box behaves

Property Filters

Filter SyntaxDescriptionExample
domain:Filter by domain (supports the * wildcard)domain:*.example.com
has-response-header:Filter by response header namehas-response-header:cache-control
has-overrides:Filter by override type (yes, no, content, headers)has-overrides:content
is:Find WebSocket resources with is:runningis:running
larger-than:Filter by size in bytes (also accepts k/M)larger-than:100000
method:Filter by HTTP methodmethod:POST
mime-type:Filter by MIME typemime-type:image/png
mixed-content:Show mixed content (all or displayed)mixed-content:all
priority:Filter by resource prioritypriority:high
resource-type:Filter by resource typeresource-type:image
scheme:Filter by scheme (http or https)scheme:https
set-cookie-domain:Filter by Set-Cookie domain attributeset-cookie-domain:example.com
set-cookie-name:Filter by Set-Cookie nameset-cookie-name:session
set-cookie-value:Filter by Set-Cookie valueset-cookie-value:123
cookie-domain:Filter by cookie domaincookie-domain:example.com
cookie-name:Filter by cookie namecookie-name:session
cookie-path:Filter by cookie pathcookie-path:/api
cookie-value:Filter by cookie valuecookie-value:123
status-code:Filter by exact HTTP status codestatus-code:404
url:Filter by URLurl:https://example.com/api
-Negation (exclude)-domain:google-analytics.com

Domain Filtering

domain: matches a single domain and supports the * wildcard. It does not support OR, parentheses, or regular expressions.

Filter ExampleDescription
domain:example.comRequests from exactly example.com
domain:*.example.comRequests from any subdomain of example.com
-domain:google-analytics.comExclude requests from google-analytics.com
-domain:google-analytics.com -domain:doubleclick.netExclude both domains (space = AND)
domain:example.com -domain:cdn.example.comInclude the main domain but exclude a subdomain

To match several unrelated domains at once, use a plain-text regex search instead of domain:, for example /(example\.com|example\.org)/.

Resource Type Filters

FilterDescription
resource-type:documentHTML documents
resource-type:stylesheetCSS files
resource-type:imageImages
resource-type:mediaMedia files (audio/video)
resource-type:fontFont files
resource-type:scriptJavaScript files
resource-type:websocketWebSocket connections
resource-type:fetchFetch API requests
resource-type:xhrXMLHttpRequest
resource-type:preflightCORS preflight requests
resource-type:otherOther resources

Status Codes

status-code: matches an exact status code — ranges like 200-299 are not supported. To approximate a range, combine an equality filter with the Network panel’s status column sorting, or filter for the specific codes you care about.

FilterDescription
status-code:200Exactly 200 OK
status-code:304Not Modified (served from cache)
status-code:404Not Found
status-code:500Internal Server Error
-status-code:200Everything except 200 responses

Combining Filters (AND only)

Separate filters with a space to AND them together. OR is not supported.

FilterResult
status-code:404 domain:example.com404s from example.com
method:POST larger-than:1000POST requests over 1 KB
resource-type:image -domain:cdn.example.comImages not served from the CDN

Quick Tips


Share this post on:

Previous Post
Copy file from another branch using git checkout
Next Post
Printing Page on Chrome Desktop and Android