排除在 Firefox 的 Live HTTP headers 插件中

发布于 2024-10-12 21:42:09 字数 161 浏览 2 评论 0原文

我试图从 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

坐在坟头思考人生 2024-10-19 21:42:09

我遇到了同样的问题,而且它的灵魂很简单:

  • 您是否启用了复选框(“通过 RegExp 排除 URL”(或类似的 - 我只有德语版本))?

提示:您确实需要在表达式的开头和结尾添加 .*,因为如果请求包含模式(不得匹配 complate url)。

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).

月棠 2024-10-19 21:42:09

我认为。你应该使用“\”。捕捉一个点。不带斜线的点可以是任何符号。
像这样:

\.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.*

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文