The free web debugging proxy for any browser, system or platform.
Hi!
Add possibility to change "Browse" button default browser or use last selected browser when user clicks on it.
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); }
You won't be notified about changes to this idea.
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: