如何从代码重新启动 Firefox?

发布于 2024-10-18 05:25:40 字数 119 浏览 4 评论 0原文

如何从代码正确重新启动firefox(没有任何“恢复会话”内容并且使用与以前相同的窗口)?

我知道 bash 脚本进程中“firefox-bin”的 pid,并且我已将自定义插件加载到其中。

How to correctly restart firefox (without any "restore session" things and with the same windows as before) from code?

I know pid of "firefox-bin" in a bash script process and I have my custom plugin loaded into it.

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

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

发布评论

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

评论(1

故事还在继续 2024-10-25 05:25:40
Services.prefs.setBoolPref("browser.sessionstore.resume_session_once", true);
const nsIAppStartup = Components.interfaces.nsIAppStartup;
Components.classes["@mozilla.org/toolkit/app-startup;1"]
          .getService(nsIAppStartup)
          .quit(nsIAppStartup.eRestart | nsIAppStartup.eAttemptQuit);

请注意,这适用于 Firefox 4,因此早期版本的代码可能略有不同。

Services.prefs.setBoolPref("browser.sessionstore.resume_session_once", true);
const nsIAppStartup = Components.interfaces.nsIAppStartup;
Components.classes["@mozilla.org/toolkit/app-startup;1"]
          .getService(nsIAppStartup)
          .quit(nsIAppStartup.eRestart | nsIAppStartup.eAttemptQuit);

Note that this applies to Firefox 4 so the code might be slightly different for earlier versions.

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