for the option to set http proxy fiddler uses only on certain requests is the following an appropriate application of what you suggested?
fiddler | ctrl-r | ctrl-f "function OnBeforeRequest" | insert following block at start of function
// this allows fiddler to use the specified http proxy only on certain requests
if (oSession.HostnameIs("
somehost.somedomain.com")) {
oSession["x-overrideGateway"] = "somehttpproxy:8080"
}