Firefox 插件 - 后退按钮清理

发布于 2024-11-01 22:25:15 字数 151 浏览 1 评论 0原文

我们只是开发一个 Firefox 插件,它通过 urlbar 加载多个页面。

不幸的是,有些条目不属于后退按钮列表+我们不想让后退按钮变得混乱。

那么如何阻止 Firefox 在后退按钮列表中保存站点加载呢?或者删除它?历史-1?

谢谢你!

We just work on a firefox addon which loads several pages via the urlbar.

Unfortunately some entries there don't belong to the backbutton list + we do not want to clutter the backbutton.

So how to prevent Firefox from saving a siteload in the backbutton list? or delete it? history -1?

thank you!

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

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

发布评论

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

评论(1

风吹过旳痕迹 2024-11-08 22:25:15

如果您使用 loadURI,则可以使用 nsIWebNavigation.LOAD_FLAGS_REPLACE_HISTORY 标志使新页面覆盖现有历史记录条目,而不是创建新页面。如果您要设置 content.location,请改用 content.location.replace()

If you're using loadURI, you can use the nsIWebNavigation.LOAD_FLAGS_REPLACE_HISTORY flag to make the new page overwrite the existing history entry rather than creating a new one. If you're setting content.location, use content.location.replace() instead.

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