问题
Recently I'm not able to copy a parsed request payload from Chrome DevTools. Button is disabled. I'm able to copy normal POST and GET request but not a parsed JSON payload.

This is huge pain in the ... Anyone know the solution for it?
回答1:
Came to your question having the same problem.
My solution: Select the text with your mouse pointer and make sure you are not selecting more than the whole content, then try again.
I was selecting more than the contents by triple clicking it and it wouldn't let me copy, probably a bug in chrome.
回答2:
you can switch between view-source and view-parsed. They are clickable options.
回答3:
Similarly to what @NickBrady said:
- Click on the item that you would like under the network tab.
- Click the
Response
tab. - Copy the response
- In Chrome console type
copy(JSON.parse('{paste the response}'))
[hit enter] NOTE: You have to wrap the response in quotes for JSON.parse() to work. - The pretty formatted version of the response is now in your clipboard. Paste it where ever you need. :)
来源:https://stackoverflow.com/questions/41056657/how-to-copy-request-payload-in-chrome-on-mac