I'm developing a web application that does a whole bunch of AJAX
requests on loading the page. these ajax requests receive some JSON
from a backend, and i want to be able to view these JSON objects. With
the newly revamped developer tools, you first have to load the page,
then go to developer tools and reload the page in order to see XHR.
Say i have a form with 15 inputs. If I had to fill in this form
submit it, and had forgotten to open developer tools and want to see
what the form was sending to the backed/what the server returned, i
would first have to open developer tools, reverse whatever action the
form submit did and then retype those 15 inputs again and hit submit.
If i have say 5 - 10 tabs open, this means i then need to have 5 - 10
developer tools windows open as well if i want to see XHR across these
tabs.
If there was some per domain or per URL way of telling chrome to track
all the request metadata, this would save me (and i'm presuming
others) a heap of time and effort. The problem with the minimize
solution is you still have to remember to open developer tools every
single time you open a new testing tab.