排除在 Firefox 的 Live HTTP headers 插件中
我试图从 Live Http 标头中排除 gmail 的请求,但我不能 似乎让排除正则表达式起作用。
我的排除正则表达式是这样的: .gif$|.jpg$|.ico$|.css$|.js$|.*mail.google.com.*
有什么想法/建议吗?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我遇到了同样的问题,而且它的灵魂很简单:
提示:您确实需要在表达式的开头和结尾添加
.*
,因为如果请求包含模式(不得匹配 complate url)。I have had the same problem and its soultion was stupid simple:
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).我认为。你应该使用“\”。捕捉一个点。不带斜线的点可以是任何符号。
像这样:
\.gif$|\.jpg$|\.ico$|.css$|\.js$|.*mail\.google\.com.*
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.*