I have a problem and I hope you have the answer.
Here it is:

I start Firefox (Linux) via command line using a cron-job. When there is no update for the add-ons, it start 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.

So, how can I disable all question upon startup of Firefox.
Qustions like:

Do you want to update add-ons?
Do you want to upgrade Firefox?
Do you want to open previous tabs or new session?

I pretty much would like to keep my version of Firefox the way its and no have any questions asked.

When I start Firefox, I would like to have it start nice and clean without any questions.


link|improve this question

66% accept rate
I agree in general. When I open Firefox it's because I want to visit a webpage (immediately), not because I want to sit and wait for updates to be installed. This was a ludicrous design decision and I can't fathom how it's stuck for all these years. – Lightness Races in Orbit Mar 28 '11 at 9:53
feedback

4 Answers

up vote 5 down vote accepted

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.

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.

link|improve this answer
Where is "about:config"? – VN44CA Jul 9 '09 at 20:12
in the address field, type about:config and hit enter; it'll take you to the editor of all of firefox's internal settings – David Hedlund Jul 9 '09 at 20:28
worked great. thx – VN44CA Jul 10 '09 at 18:30
feedback

Depending on what functionality you need while FF runs, you may want to look into the safe-mode switch when starting Firefox:

/path/to/firefox -safe-mode

http://kb.mozillazine.org/Safe_mode

link|improve this answer
feedback

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.

link|improve this answer
feedback

I went to about:config to search and disable all *.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.

link|improve this answer
Works like a charm unless you have user.js overriding everything. Grr... Copy that into user.js, or in my opinion, copy everything over to prefs.js and edit properties there. User.js automatically overrides prefs.js, so I just deleted (backup first) user.js. Those files are in C:/Users/youruser/AppData/Roaming/Mozilla/Firefox/Profiles/yourprofile.default/p‌​refs.js – David Hobs 8 hours ago
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.