Fiddler Ideas

The free web debugging proxy for any browser, system or platform.

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.

  • Guest
  • Feb 9 2018
  • Under review
  • Attach files
  • Eric Lawrence commented
    February 09, 2018 17:54

    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);
    }