
While working on a project, I found myself needing to filter out multiple routes in Chrome DevTools. Instead of manually entering each route, I discovered a neat trick using regular expressions (regex) to match multiple paths at once.
/app|log|create|ping|graphql/ domain:*.google.com
This pattern matches any of the following paths under google.com:
/app
/log
/create
/ping
/graphql
You can also make it case-insensitive by adding the i
flag at the end of the regex pattern:
/app|log|create|ping|graphql/i domain:*.google.com
For my new posts, Subscribe via weekly RSS, common RSS