Skip to content

Instantly share code, notes, and snippets.

@janv8000
Created February 13, 2014 10:00
Show Gist options
  • Save janv8000/8972599 to your computer and use it in GitHub Desktop.
Save janv8000/8972599 to your computer and use it in GitHub Desktop.
Hide BrowserLink requests in Fiddler
// First add the option in the Rules menu:
// Add these lines after the other options (m_Japanese ...)
// Enables hiding of VS2013 BrowserLink feature requests
public static RulesOption("Hide SignalR/BrowserLink")
var m_SignalRBrowserLink: boolean = false;
// Add the following at the end of OnBeforeRequest
if (m_SignalRBrowserLink && (oSession.uriContains("SignalR") || oSession.uriContains("__BrowserLink") || oSession.oRequest.headers.RequestPath.EndsWith("/browserLink"))){
oSession["ui-hide"] = "SignalR";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment