15

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.

BDL
  • 21,052
  • 22
  • 49
  • 55
luis.ap.uyen
  • 1,314
  • 1
  • 11
  • 29

1 Answers1

2

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.

Steve Wasiura
  • 768
  • 1
  • 8
  • 19
  • I can't find it with that name. Is it still available? – luis.ap.uyen Dec 05 '16 at 08:18
  • 1
    sorry I had the incorrect name. here is the link https://chrome.google.com/webstore/detail/network-record/ihbkogfblhfbnompooimhejpkidoipcl?hl=en – Steve Wasiura Dec 06 '16 at 01:35
  • I see that this is still available, though it appears it does the same thing, and records everything, not a single request. – wesm Mar 18 '20 at 22:29