Firefox 弹出窗口事件
我正在使用 XPCOM C++ 编写 Firefox 扩展。
我希望在弹出窗口(就像我们在浏览 www.rediffmail.com 时看到的那样)打开时收到通知。
我如何捕捉这个事件? 有人知道该怎么做吗?
感谢您的帮助。
I am writing a Firefox extension using XPCOM C++.
I want to get notified when the popup window (like we see while browsing www.rediffmail.com) is opening.
How do I catch this event?
Does anybody knows how to do it?
Thanks for your help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
“就像我们在浏览 www.rediffmail.com 时看到的那样”是一个糟糕的定义,所以我假设您正在谈论常规弹出窗口(带有标题栏等),而不是 Javascript 实现的选项卡内对话框,而不是在新选项卡中打开的新页面。
打开新窗口时会触发通知(或者您可以只覆盖 Firefox 的浏览器。 xul 来注入您的代码)。
还有一个 PopupWindow DOM 事件,而不是据我所知,已记录。
"like we see while browsing www.rediffmail.com" is a poor definition, so I'm going to assume you're talking about regular popup windows (with title bar, etc), not a Javascript-implemented in-tab dialog, and not new pages that open in new tabs.
There are notifications fired when new windows are open (or you could just overlay Firefox's browser.xul to inject your code).
There's also a PopupWindow DOM event, not documented, as far as I can see.