Under Review
Last Updated: 15 Dec 2017 14:31 by Imported User
Imported User
Created on: 15 Dec 2017 05:59
Type: Feature Request
2
browser specific feature
There should be an option where we can capture HTTPS content of the specific browser that we select. ex. Firefox.
1 comment
Eric
Posted on: 15 Dec 2017 06:00
This is trivial to do in Fiddler today. If you only want Firefox, you could just manually point Firefox's proxy settings at Fiddler and not Fiddler set to be the system proxy.

Alternatively, you can use a script, like this sample in the Fiddler book:

Hide Traffic based on Process Name

The following script creates a ShowOnly submenu on the Rules menu that allows you to easily display captured traffic from only a single executable:

RulesString("ShowOnly", true)
BindPref("fiddlerscript.rules.ProcessFilter")
RulesStringValue(0,"Chrome", "chrome")
RulesStringValue(1,"FireFox", "firefox")
RulesStringValue(2,"IE", "iexplore")
RulesStringValue(3,"&Custom...", "%CUSTOM%")
public static var sOnlyProc: String = null;

//Add the following to the OnPeekAtRequestHeaders function:

if (!String.IsNullOrEmpty(sOnlyProc)) { var s = oSession.LocalProcess;
   if (!s.StartsWith(sOnlyProc, StringComparison.OrdinalIgnoreCase)) {
     // Or use oSession.Ignore() instead of ui-hide...
     oSession["ui-hide"] = "Rules>ShowOnly";
   }
}