How to stop Firefox update notifications?
Rise to the top 3% as a developer or hire one of them at Toptal: https://topt.al/25cXVn
--------------------------------------------------
Music by Eric Matyas
https://www.soundimage.org
Track title: Puzzle Meditation
--
Chapters
00:00 How To Stop Firefox Update Notifications?
00:45 Answer 1 Score 4
01:43 Accepted Answer Score 11
02:31 Answer 3 Score 2
02:45 Answer 4 Score 12
04:01 Thank you
--
Full question
https://superuser.com/questions/1325421/...
--
Content licensed under CC BY-SA
https://meta.stackexchange.com/help/lice...
--
Tags
#firefox #browser
#avk47
ANSWER 1
Score 12
I had the same question!
I assume that you want to completely disable the updates, otherwise you won't opt the option to disable automatically install updates option from the settings, and won't get the notification at all!
Well, actually if you truly want to disable autoupdate, you can add a policy.
To add a policy, follow the steps:
- Go to the firefox installation directory (for any supported OS).
- Create a directory called
distribution
. - Change directory into
distribution
. - Create a file called
policies.json
. And paste this code:
{
"policies": {
"DisableAppUpdate": true
}
}
Save the file, and quit the editor.
- Restart Firefox if it's already running.
- To confirm, you can go to the URL
about:policies
and check if there's an entry like this:
Policy Name Policy Value
DisableAppUpdate true
After you are done, from the Menu => Help => About Nightly you get to see this:
When you want to update, you may set the boolean value to false.
Reading More about Policies
For documentation, you can read the options here in about:policies#documentation
. You can learn more about how to add policies here.
Hope this helps!
ACCEPTED ANSWER
Score 11
From experimenting with Firefox config, just as a possible addition or alternative when solutions that have previously been suggested here are not enough.
After opening the about:config
(typing about:config
into the address bar and then pressing Enter), apply either or both of the following config items:
- Search for
app.update.silent
, then set it totrue
- Search for
app.update.url
, then change it to a fake/non-existent URLFor example, if the original is
https://aus5.mozilla.org/update/6/%PRODUCT%/...
, I changed it toxxxhttps://xxxaus5.mozilla.org/update/6/%PRODUCT%/...
ANSWER 3
Score 4
This is just extension of previous answer.
Find the user preference file, named as prefs.js
, in user specific folder.
- Windows:
%AppData%\Mozilla\Firefox\Profiles\xyz.default\prefs.js
- Linux:
~\.mozilla\firefox\xyz.default\prefs.js
Then add these following three lines. These preferences are of the boolean type. If you find any of these lines are already present, replace that with the following:
user_pref("app.update.auto", false);
user_pref("app.update.disable_button.showUpdateHistory", false);
user_pref("app.update.enabled", false);
Also if you want to remove the update URL, add these three lines. These preferences are string type:
user_pref("app.update.url", "");
user_pref("app.update.url.details", "");
user_pref("app.update.url.manual", "");
If these don't work delete/move these three files:
update-settings.ini
,updater.ini
,updater.exe
(updater
in Linux).
ANSWER 4
Score 2
For others, a simpler solution if you are just annoyed by that second type of notification, you can do this in about:config
by setting app.update.doorhanger
to false
.