How to read network requests in Chrome for new tab or popup window
Posted by jpluimers on 2020/05/20
Cool feature I discovered from [WayBack] How to read network requests in Chrome for new tab or popup window:
chrome://net-internals/#events
It will immediately show all events from all tabs including networking events.
The red bar at the top has a drop down on the right where you can stop them and perform a few other actions.
During or after capture, you can select relevant requests from the list (through checkboxes) so the right of the pane gets their info (which is a lot: not just the request/response content including all headers and cookies, but also any delegates from extensions and their results).
I got there via a search for chrome view all network requests.
The reason I needed to find out a solution for my WayBackSave.js
bookmarklet returning error 400 while the Network tab in the Developer Tools would not show the request at all.
The cause of the problem was that web.archive.org had created 150+ cookies making the web request too large. Deleting the cookies solved the problem.
An excellent set of steps to dig deeper into these problems is [WayBack] 400 Bad Request Error: What It Is and How to Fix It: An in-depth explanation of what a 400 Bad Request Error response code is, including tips to help you resolve this error in your own application.
And it made me find [WayBack] 12 Most Useful Google Chrome Browser chrome:// Commands too which explains all these in more detail:
chrome://flags
chrome://dns
chrome://downloads
chrome://extensions
chrome://bookmarks
chrome://history
chrome://memory
chrome://net-internals
chrome://quota-internals
chrome://sessions
chrome://settings
chrome://sync-internals
- to view all the available
chrome://
commands, typechrome://about
in your chrome browser URL as shown below.
–jeroen
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
javascript:void(location.href='https://web.archive.org/liveweb/'+location.href); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
javascript:(function()%7Blocation.href%3D%27https://web-beta.archive.org/save/%27%2B(location.href)%3B%7D)()%3B |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
javascript:(function()%7Blocation.href%3D%27https://web.archive.org/save/%27%2B(location.href)%3B%7D)()%3B |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
javascript:location.href='https://web.archive.org/web/*/'+document.location.href; |
Leave a Reply