I always relied on the Firebug console tab in Firefox to display full ajax calls, all my systems use ajax extensively and are useful for monitoring calls in a single listing. Ive always considered Firebug to be the most complete version of this, and it was this function that prevented me from switching to any other browser, including my own FF developer console, where the only way to determine the endpoints is to move the cursor over the request, or spend two clicks on the opening of the answer panel, and then the "Params" tab. None of them are very useful in a production environment.
However, in the last FF, I found that Firebug is deprecated in favor of the built-in developer console, so I believe that if Firebug disappears, there should be a way to configure the replacement to your liking.
Here is an example of output side by side, the right side (Firebug) displays not only the endpoint, but also all the parameters directly in the line, for example, "ajax.php? Home & act = counters", while the left side (built-in console) simply displays " ajax.php "for all calls.

source
share