Created
February 13, 2014 10:00
-
-
Save janv8000/8972599 to your computer and use it in GitHub Desktop.
Hide BrowserLink requests in Fiddler
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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