What Firefox extension can send HTTP responses?

I am familiar with LiveHTTPHeaders and TamperData, which can show what will be sent to the web server. However, I also want to study server responses. How can i do this?

0
source share
6 answers

As always: Firebug .

+7
source

I recommend Fiddler . It shows all the traffic organized for each request, and offers several ways to view the request and response. Like formatted xml, javascript, post body. It also decodes when necessary. If I'm right, it also offers a Firefox integration addon.

+3
source

HttpFox is one of my favorites.

+3
source

Firebug is good. I prefer Fiddler .

+2
source

You can try the web developer extension for Firefox. It has many handy tools and can also show you the server response and header.

0
source

On Windows, you can use HttpWatch . It will save the full HTTP response from the server, including all binary content.

There is a free version, but it is limited to sites in Alexa Top 20.

** Disclaimer: This answer was posted by Simtec Limited, creators of HttpWatch **

0
source

Source: https://habr.com/ru/post/1416351/


All Articles