Firefox 扩展 - 监视选项卡的刷新和更改

发布于 2024-11-08 01:40:11 字数 83 浏览 0 评论 0原文

我需要知道用户何时刷新页面以及何时切换到另一个选项卡。

有谁知道如何在 Firefox 扩展中捕获此内容?

此致 基督教

I need to know when a user refreshs the page and when he switches to another tab.

Does anyone has a clue how to capture this in a firefox extension?

Best regards
Christian

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

飘落散花 2024-11-15 01:40:11

您似乎想要知道位置栏中的值何时发生变化。这需要实现 nsIWebProgressListener 接口。您真正需要的唯一方法是 onLocationChange,其余的应该是虚拟的。您可以在此处找到文档和代码示例:https://developer.mozilla.org/en/代码片段/Progress_Listeners。您还可以使用进度侦听器来监视页面加载。

What you seem to want is knowing when the value in the location bar changes. This requires implementing nsIWebProgressListener interface. The only method you really need is onLocationChange, rest of them should be dummies. You can find the documentation along with code examples here: https://developer.mozilla.org/en/Code_snippets/Progress_Listeners. You can also use progress listeners to monitor page loads.

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