How to stop Firefox update notifications?

Written by BiRU Tuesday, 13 September 2022 19:06

Print

Anyhow, Firefox keeps alerting me about updates. I have turned the updates off, in about:preferences but Firefox keeps bugging me with notifications like these: No, I dont wanna update FF and this: You suck FF updates....

I don't want to keep getting bothered by notifications, how do I make them stop?

None of the former about:config Configuration changes work nowadays to control update behaviour

This should completely disable the Updates messages in Firefox as per today:

Method 1 - Registry change (Windows)

The following can be saved as a .reg file to apply this change:

Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\Software\Policies\Mozilla\Firefox]
"DisableAppUpdate"=dword:00000001

Or execute the following line in an elevated command prompt/PowerShell:

reg ADD HKLM\SOFTWARE\Policies\Mozilla\Firefox /v DisableAppUpdate /t REG_DWORD /d 1 /f

Method 2 - Policies.json (Windows / Linux / Mac / Others)

{ 
    "policies": {
        "DisableAppUpdate": true
    } 
}

Now under about:preferences under Updates, the following label should appear: Updates disabled by your system administrator. and under about:policies.

Other policies can be modified in this way. Check the GitHub link and the about:policies section.

If you ever, ever want the original behavior, just undo these steps.