Dev tools: copy url with parameters?

427 Views Asked by At

For many many years I used Firebug, and it had a very handy feature, where you could click on an ajax request, and regardless of whether it was a GET or a POST etc, it would give you an option to 'Copy url with parameters' which would then create a GET url.

None of today's dev tools seem to have this feature - I basically have to compile the url manually by copying the base url, then copying the parameters and fiddling with the text to make it a url. This is really annoying.

Does anybody know of a way around this, or some plugin etc which would help?

Thanks!

1

There are 1 best solutions below

5
Colin On

Chrome dev tools

Debugger -> Network -> XHR -> left-click on request -> view source for response / request / paramteres / form data/

It is very easy and simple.

Debugger -> Network -> XHR -> right-click on request -> Copy

enter image description here