I'm using Fiddler to monitor some HTTP traffic. I want to configure it to watch traffic from a few specific domains.
I know that
CustomRules.jscan be modified to manipulate traffic passing through fiddleroSession.HostnameIs("required.host.name")can be used to check the host nameI want to check the host name in the
OnBeforeRequest(oSession: Session)function
What I don't know is the syntax, or property I need to set to ignore or hide sessions.
Any ideas?