Regex route filtering in chrome

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.

regex pattern


        /app|log|create|ping|graphql/ domain:*.google.com
    

This pattern matches any of the following paths under google.com:

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