开发者

Excluding in Live HTTP Headers plugin for Firefox

开发者 https://www.devze.com 2023-02-05 16:42 出处:网络
I am trying to exclude gmail\'s requests from Live Http headers, but I cant seem to get the exclude reg ex to work.

I am trying to exclude gmail's requests from Live Http headers, but I cant seem to get the exclude reg ex to work.

My exclude regex is this: .gif$|.jpg$|.ico$|.css$|.js$|.*mail.google.开发者_如何学运维com.*

Any ideas/suggestions?


I have had the same problem and its soultion was stupid simple:

  • do you have enabled the check box ("exclude URL by RegExp" (or similar - I have only the german version))?

Hint: you do need to add the .* at start and end of your expression, because the request will be excludes if it contains the pattern (is must not match the complate url).


I think. You sould use "\." to catch a dot. Dot without slash is any symbol. Like this:

\.gif$|\.jpg$|\.ico$|.css$|\.js$|.*mail\.google\.com.*

0

精彩评论

暂无评论...
验证码 换一张
取 消