Under Review
Last Updated: 09 Feb 2018 17:03 by Imported User
Imported User
Created on: 09 Feb 2018 05:59
Type: Feature Request
0
Browse button to launch last used browser when clicked
Hi!

Add possibility to change "Browse" button default browser or use last selected browser when user clicks on it.
1 comment
Eric
Posted on: 09 Feb 2018 06:00
This is basically the same request as https://fiddler.ideas.aha.io/ideas/FID-I-192.

Note, you can create your own browser-launcher menu. From the Fiddler Book:

Click Rules > Customize Rules and add the following to your script:

QuickLinkMenu("&Browse")
QuickLinkItem("&IE", "iexplore.exe")
QuickLinkItem("&Firefox", "firefox.exe")
QuickLinkItem("&Opera", "Opera.exe")
QuickLinkItem("&Chrome", "Chrome.exe")
public static function DoBrowsersMenu(sText: String, sAction: String) { v
  ar oS = FiddlerApplication.UI.GetSelectedSessions();
  var sURL = String.Empty;
  if (oS.Length > 0) { sURL = oS[0].fullUrl; }
  System.Diagnostics.Process.Start(sAction, sURL);
}