Last active
August 29, 2015 14:18
-
-
Save tarasn/c682df1d169fba9bc7fa to your computer and use it in GitHub Desktop.
Fiddler2 filter customization according to this http://stackoverflow.com/questions/9662586/fiddler-blocking-filtering-out-a-specifc-page
This file contains hidden or 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
| // The code below need to be pasted immediately after this line "static function OnBeforeRequest(oSession: Session) {" | |
| function RequestContains (uri:String) { | |
| return oSession.uriContains(uri) || oSession.oRequest.headers.ExistsAndContains("Referer", uri); | |
| } | |
| if ( | |
| false | |
| || RequestContains("ClientState.ashx") | |
| || RequestContains("keepAlive.ashx") | |
| || RequestContains("InteractiveMessagesService.svc") | |
| ) | |
| oSession["ui-hide"] = "true"; | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment