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
- Plain text (no keyword) searches across the request URL and headers.
- Property filters use a
keyword:valuesyntax. - Multiple filters are ANDed together — separate them with a space. There is
no
ORoperator, and typingANDdoes nothing (the space is the AND). - Negation — prefix any filter with
-to exclude matches. - Regex works for plain-text search only: wrap the pattern in slashes, e.g.
/googleapis\.com/. Regex is not supported insidedomain:or other property filters.
Property Filters
| Filter Syntax | Description | Example |
|---|---|---|
domain: | Filter by domain (supports the * wildcard) | domain:*.example.com |
has-response-header: | Filter by response header name | has-response-header:cache-control |
has-overrides: | Filter by override type (yes, no, content, headers) | has-overrides:content |
is: | Find WebSocket resources with is:running | is:running |
larger-than: | Filter by size in bytes (also accepts k/M) | larger-than:100000 |
method: | Filter by HTTP method | method:POST |
mime-type: | Filter by MIME type | mime-type:image/png |
mixed-content: | Show mixed content (all or displayed) | mixed-content:all |
priority: | Filter by resource priority | priority:high |
resource-type: | Filter by resource type | resource-type:image |
scheme: | Filter by scheme (http or https) | scheme:https |
set-cookie-domain: | Filter by Set-Cookie domain attribute | set-cookie-domain:example.com |
set-cookie-name: | Filter by Set-Cookie name | set-cookie-name:session |
set-cookie-value: | Filter by Set-Cookie value | set-cookie-value:123 |
cookie-domain: | Filter by cookie domain | cookie-domain:example.com |
cookie-name: | Filter by cookie name | cookie-name:session |
cookie-path: | Filter by cookie path | cookie-path:/api |
cookie-value: | Filter by cookie value | cookie-value:123 |
status-code: | Filter by exact HTTP status code | status-code:404 |
url: | Filter by URL | url: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 Example | Description |
|---|---|
domain:example.com | Requests from exactly example.com |
domain:*.example.com | Requests from any subdomain of example.com |
-domain:google-analytics.com | Exclude requests from google-analytics.com |
-domain:google-analytics.com -domain:doubleclick.net | Exclude both domains (space = AND) |
domain:example.com -domain:cdn.example.com | Include 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
| Filter | Description |
|---|---|
resource-type:document | HTML documents |
resource-type:stylesheet | CSS files |
resource-type:image | Images |
resource-type:media | Media files (audio/video) |
resource-type:font | Font files |
resource-type:script | JavaScript files |
resource-type:websocket | WebSocket connections |
resource-type:fetch | Fetch API requests |
resource-type:xhr | XMLHttpRequest |
resource-type:preflight | CORS preflight requests |
resource-type:other | Other 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.
| Filter | Description |
|---|---|
status-code:200 | Exactly 200 OK |
status-code:304 | Not Modified (served from cache) |
status-code:404 | Not Found |
status-code:500 | Internal Server Error |
-status-code:200 | Everything except 200 responses |
Combining Filters (AND only)
Separate filters with a space to AND them together. OR is not supported.
| Filter | Result |
|---|---|
status-code:404 domain:example.com | 404s from example.com |
method:POST larger-than:1000 | POST requests over 1 KB |
resource-type:image -domain:cdn.example.com | Images not served from the CDN |
Quick Tips
- Combine filters with spaces to narrow results:
status-code:404 -domain:cdn.example.com. - Regular text (without a prefix) searches the URL and headers; wrap it in slashes for regex.
- Use the
-prefix to exclude matching requests. - Right-click a request and choose Filter for for quick filtering.
larger-than:accepts suffixes, solarger-than:1Mis the same aslarger-than:1000000.