SpokaneDJ的回答对我非常有帮助,并且效果很好,但是我在Fiddler上花费的时间并不多,所以花了我一分钟的时间来记住如何做!以下是具体说明。
首先,在Fiddler用户界面中,转到Rules
> Customize Rules
。搜索OnBeforeResponse
功能。它看起来应该像这样:
static function OnBeforeResponse(oSession: Session) {
if (m_Hide304s && oSession.responseCode == 304) {
oSession["ui-hide"] = "true";
}
}
现在,在现有块之后添加以下 if
块(如果不同,请替换您的vshub主机/端口):
if (oSession.HostnameIs("localhost:49155")){
oSession["ui-hide"] = "hiding vshub"; // String value not important
}
您的OnBeforeResponse
函数现在应如下所示:
static function OnBeforeResponse(oSession: Session) {
if (m_Hide304s && oSession.responseCode == 304) {
oSession["ui-hide"] = "true";
}
if (oSession.HostnameIs("localhost:49155")){
oSession["ui-hide"] = "hiding vshub"; // String value not important
}
}