Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Chrome Devtools: Save specific requests in Network Tab

Can I save just specific requests in the Chrome Devtools Network tab?

It would be very useful to me since our company uses web crawling to fetch info from extranets, and the most I can do is to record (with the rec button) all the requests made to reach for a specific info, and if I want to save the desired requests/responses in a file to analyze them later, all I can do is to save it all as a .har file, which saves EVERYTHING, including every resource (images, css, js, etc), filling the file with lots of useless info for my purpose.

Another way would be to copy and paste just the requests filtered with Documents + XHR + Other, which I don't like either because it's not structured in a JSON format like the HAR file does.

like image 861
luis.ap.uyen Avatar asked Apr 09 '14 07:04

luis.ap.uyen


1 Answers

There is a chrome extension named Network.Recorder which retains Network Requests when ext icon is clicked on, and when clicked off, prompts you to save content to a local file. This might help.

like image 176
Steve Wasiura Avatar answered Sep 19 '22 15:09

Steve Wasiura