Under Review
Last Updated: 03 Aug 2018 14:05 by Imported User
Imported User
Created on: 03 Aug 2018 04:59
Type: Feature Request
1
Default view set to Inspectors > Raw
Since the primary use-case for Fiddler is to observe the raw traffic within requests, I believe most Fiddler users would benefit from having the default view set to Inspectors > Raw when launching the application. At least for the Response data.
1 comment
Eric
Posted on: 03 Aug 2018 05:00
You can set whatever default inspector you like, but "Raw" is pretty much the worst inspector and is almost never the best choice for many reasons (e.g. most traffic isn't textual).

Click Rules > Customize Rules. Uncomment/modify the code in OnBoot:

static function OnBoot() {
UI.ActivateRequestInspector("RAW");
UI.ActivateResponseInspector("RAW");
}