50

I try hide sessions generated by social part of Chrome. But hiding of traffic marked as "Tunnel to" in host column not working. Althoungh I successfully hide another sessions based on hostname patterns.

if (oSession.HTTPMethodIs("CONNECT")) {
        oSession["ui-hide"] = "y";
    }
RobertW
  • 1,111
  • 2
  • 12
  • 15
  • 2
    It's not really clear what you're asking. HTTPMethodIs("CONNECT") will match all of the "Tunnel to" requests. – EricLaw Nov 26 '13 at 22:14
  • My problem were: above rule not match "Tunnel to" but @OCary solution solved it. – RobertW Nov 27 '13 at 07:52
  • 1
    The rule suggested by OCary does *exactly* the same thing as the code snippet above, assuming you put that snippet in one of the event handlers. – EricLaw Nov 27 '13 at 16:54
  • @EricLaw Didn't worked for me : I still see `Tunnel to` : https://i.imgur.com/UXcrQhu.jpg ( already restarted) – Royi Namir Apr 11 '18 at 11:47

1 Answers1

105

Try the menu option Rules -> Hide CONNECTs

Madis Otenurm
  • 61
  • 1
  • 7
OCary
  • 3,231
  • 2
  • 16
  • 17