Chrome developer tools - Network - how to filter only POST and PATCH requests?

The filter option is quite powerful, but it's limited to only using AND (conjunction). So simple workaround would be to use negatives... For instance, in your case you could create a filter like this:

-method:GET -method:OPTIONS -method:PUT

This should filter out most of the requests. If you have other offending HTTP verbs you can easily add them.


Like me, I'm guessing many people came to this thread and don't necessarily need to filter to both POST and PATCH. That said, you can just use the filter like this to filter to POST requests:

On the Network Tab, in the filter box, type in:

method:POST