在 Firefox 扩展中捕获关闭选项卡事件

发布于 2024-08-02 14:18:58 字数 131 浏览 3 评论 0原文

我正在编写一个扩展,当用户关闭此选项卡(一些保存等)时,它需要从当前选项卡/文档调用一些JS。 document.onbeforeunload 不适合我,因为它也会在页面重新加载时被调用。我正在寻找类似 tryToClose 的东西,但用于选项卡。

i'm writing a extension, which needs to call some JS from the current tab/document when user closes this tab (some saving etc). document.onbeforeunload doesn't do it for me, because it's also called when the page is reloaded. I'm looking for something like tryToClose but for tabs.

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

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

发布评论

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

评论(1

蓦然回首 2024-08-09 14:18:58

您需要监听扩展中的“TabClos​​e”事件,如 添加选项卡时的通知或已删除

我能够赶上该事件。有关如何防止选项卡关闭的任何指示?我尝试在处理程序代码上使用 event.stopPropagation() 。它不会停止选项卡的关闭!

You need to listen to "TabClose" event within the extension as illustrated at Notification when a tab is added or removed

I'm able to catch the event. Any pointers on how to prevent the closing of the tab? I attempted event.stopPropagation() on the handler code. It does not stop the closing of the tab!

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