http://ericlawrence.com/dl/Fiddler2AlphaSetup.exe
http://ericlawrence.com/dl/Fiddler4AlphaSetup.exe
2. See http://fiddler2.com/blog/blog/2013/06/04/what-s-new-in-fiddler-2-4-4-5:
In preparation for a full-featured WebSockets UI, Fiddler no longer spews WebSocket messages to the Log tab. If you’d like to re-enable that behavior until the full UI is available, you can do so using FiddlerScript. Simply click Rules > Customize Rules and add the following function inside your Handlers class.
static function OnWebSocketMessage(oMsg: WebSocketMessage) {
// Log Message to the LOG tab
FiddlerApplication.Log.LogString(oMsg.ToString());
/*
// Modify a message's content
var sPayload = oMsg.PayloadAsString();
if (sPayload.Contains("time")) {
oMsg.SetPayload(sPayload + "... bazinga!");
}
*/
}