Firefox 扩展 - 监视选项卡的刷新和更改
我需要知道用户何时刷新页面以及何时切换到另一个选项卡。
有谁知道如何在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您似乎想要知道位置栏中的值何时发生变化。这需要实现 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 isonLocationChange
, 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.