I am looking for an HTTP traffic monitor/sniffer (something like Firefox's HttpFox) for Google Chrome, for debugging/development purposes. It is the only thing preventing me from switching entirely to Chrome for web development.
Is there one?
|
I am looking for an HTTP traffic monitor/sniffer (something like Firefox's HttpFox) for Google Chrome, for debugging/development purposes. It is the only thing preventing me from switching entirely to Chrome for web development. Is there one? |
|||||||||
|
Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.
|
There is limited support in Chrome's built-in "Developer Tools" panel (Resources tab). However if you want a true monitor I'd go with a proxy such as Fiddler2 or Charles Proxy. |
|||
|
|
|
The equivalent of the Firefox HTTPFox extension (and more) can be found in the "network" panel of Chrome's developer tools. It's bundled with Chrome by default: https://developers.google.com/chrome-developer-tools/docs/network |
|||
|
|
Use a packet sniffer like wireshark. They are very easy to use if you know at least the very basics of TCP/IP. You get almost exactly the same output as from "httpfox". Much easier than going through a proxy - works ALWAYS and the software is free and it's good to be able to use it anyway. And it's easy :-) - click on one of the lines for the captured HTTP conversation and use Wireshark's "Follow TCP Stream" function to let it assemble and display the full stream. Okay, https is out with this approach. |
|||||
|
|
Charles Web Proxy (http://www.charlesproxy.com/) is an excellent answer: cross-platform (Windows, Mac, Linux) and browser-independent (it runs as a separate process, capturing traffic going to/from your browsers). I see where Mörre is going with Wireshark, but it's a lot of work to get it set up and running properly, especially on a Mac (where, if you don't already have X11 installed properly, you will never, ever get it to work). Charles takes all of 5 minutes to install, set up and understand. |
|||
|
|
|
Bummer, Flddler2 looks good, but its Windows only. HttpFox is cross platform, which is key for me. |
|||
|
|
|
wireshark wont be able to decrypt https packets. May not work with localhost in windows. |
|||||
|