Fiddler uses Inspector Raw by default

The violinist is amazing. But one thing that bothers me is that every time I double-click on a session, it by default opens the Inspectors tab and tries to guess what the inspector should show. I want him to always show me a raw inspector for a request and response.

Is there a way to make Fiddler always the default?

+4
source share
2 answers

I can accomplish what I need by simply clicking on the session. The first time I need to select Raw for the request and response, a single click on any of the subsequent sessions leaves them selected. Good enough.

As EricLaw points out, a true solution to this is possible and very simple:

You can set the default request and response inspectors as follows: Click Rules> Configure Rules and scroll down to the OnBoot handler and uncomment the lines that set the default inspectors. Then change the two instances of the text "HEADERS" to "RAW".

+8
source

Access about: config using the QuickExec window, and then add preferences one at a time in the figures below:

enter image description hereenter image description here

Or Eric Law comment:

enter image description here

I also wanted to specify the HTTP METHOD information as a column:

enter image description here

0
source

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


All Articles