I start Firefox (Linux) via command line using a cron-job. When there is no update for the add-ons, it starts up normally, then I can tell it what to do. However if there is an update for an add-on, then it ask whether to take that update or not. I don't have the ability to detect the pop up window and choose no.
我使用cron-job通过命令行启动Firefox(Linux)。当没有附加组件的更新时,它会正常启动,然后我可以告诉它该做什么。但是,如果附加组件有更新,则会询问是否进行该更新。我无法检测弹出窗口并选择否。
So, how can I disable all questions upon startup of Firefox?
那么,如何在启动Firefox时禁用所有问题?
Questions like:
- Do you want to update add-ons?
- Do you want to upgrade Firefox?
- Do you want to open previous tabs or new session?
您想要更新附加组件吗?
你想升级Firefox吗?
要打开以前的标签页或新会话吗?
I pretty much would like to keep my version of Firefox the way it is and not have any questions asked.
我非常希望保持我的Firefox版本,并且没有任何问题。
When I start Firefox, I would like to have it start nice and clean without any questions.
当我启动Firefox时,我想让它开始干净整洁而没有任何问题。
5 个解决方案
#1
Unless the linux version is very different, under settings > advanced > updates, there are settings you can disable, that are concerned with the automatic searching for updates for firefoxx and its add ons.
除非linux版本非常不同,否则在设置>高级>更新下,您可以禁用的设置与自动搜索firefoxx及其附加组件的更新有关。
In "about:config" you can set "Browser.sessionstore.enabled" to false, in which case firefox will not restore your tab state after a crashed browsing session.
在“about:config”中,您可以将“Browser.sessionstore.enabled”设置为false,在这种情况下,firefox将在崩溃的浏览会话后恢复您的选项卡状态。
#2
I went to about:config to search and disable all *.update.enabled
我去了about:config来搜索并禁用所有* .update.enabled
user_pref("app.update.enabled", false);,
user_pref("browser.search.update", false);
user_pref("extensions.update.enabled", false);
Otherwise it derails my Watir tests.
否则它会破坏我的Watir测试。
#3
Depending on what functionality you need while FF runs, you may want to look into the safe-mode switch when starting Firefox:
根据FF运行时所需的功能,您可能需要在启动Firefox时查看安全模式开关:
/path/to/firefox -safe-mode
#4
All those options should be in the standard settings of the application. From the command line, safe mode is what you want to look into.
所有这些选项都应该在应用程序的标准设置中。从命令行,您可以查看安全模式。
#5
Reset Firefox to default settings from Help -> Troubleshooting information, it will keep your passwords cookies etc and you get clean start, I just did it few minutes ago, and it does work. No more addon check update every time( by the way I got that annoying thing when turned on automatic update for the firefox)
将Firefox重置为默认设置,从帮助 - >疑难解答信息,它将保持您的密码cookie等,你得到干净的开始,我刚刚做了几分钟前,它确实有效。每次都没有更多的插件检查更新(顺便说一句,当我为firefox启用自动更新时,我遇到了烦人的事情)
#1
Unless the linux version is very different, under settings > advanced > updates, there are settings you can disable, that are concerned with the automatic searching for updates for firefoxx and its add ons.
除非linux版本非常不同,否则在设置>高级>更新下,您可以禁用的设置与自动搜索firefoxx及其附加组件的更新有关。
In "about:config" you can set "Browser.sessionstore.enabled" to false, in which case firefox will not restore your tab state after a crashed browsing session.
在“about:config”中,您可以将“Browser.sessionstore.enabled”设置为false,在这种情况下,firefox将在崩溃的浏览会话后恢复您的选项卡状态。
#2
I went to about:config to search and disable all *.update.enabled
我去了about:config来搜索并禁用所有* .update.enabled
user_pref("app.update.enabled", false);,
user_pref("browser.search.update", false);
user_pref("extensions.update.enabled", false);
Otherwise it derails my Watir tests.
否则它会破坏我的Watir测试。
#3
Depending on what functionality you need while FF runs, you may want to look into the safe-mode switch when starting Firefox:
根据FF运行时所需的功能,您可能需要在启动Firefox时查看安全模式开关:
/path/to/firefox -safe-mode
#4
All those options should be in the standard settings of the application. From the command line, safe mode is what you want to look into.
所有这些选项都应该在应用程序的标准设置中。从命令行,您可以查看安全模式。
#5
Reset Firefox to default settings from Help -> Troubleshooting information, it will keep your passwords cookies etc and you get clean start, I just did it few minutes ago, and it does work. No more addon check update every time( by the way I got that annoying thing when turned on automatic update for the firefox)
将Firefox重置为默认设置,从帮助 - >疑难解答信息,它将保持您的密码cookie等,你得到干净的开始,我刚刚做了几分钟前,它确实有效。每次都没有更多的插件检查更新(顺便说一句,当我为firefox启用自动更新时,我遇到了烦人的事情)