FireFox for Android: Updating add-ons

Just a few “basic” questions that I can’t seem to find the answers to.
On FireFox for Android:
How does the auto update for addons work? How often does it check?
Can I manually check for addon updates?

TIA
SubDevo

EDIT: This may not be the correct board for this question. If so, please let me know.

2 Likes

Nevermind… It was a stupid question…
I found FireFox defaults to 24 hours between checks.
In fact, delete this embarassing thread please…

No problem, we all have questions. I flagged your topic though requesting deletion.

Thanks! :slight_smile:

@SubDevo I don’t think it was a stupid question - I didn’t know Firefox checked for add-on updates every 24 hours.

If you really want the thread deleted, I can still do that, but it’s possible someone else might come here wanting to ask the same question, and find your answer first, saving them the effort!

Does the extension auto-update only happen on Wi-Fi and/or mobile data as well? I can’t seem to find any documentation or settings to adjust this.

I’m planning to build an extension which will have several images packed into the XPI to speed up load times on each page reload, and it would suck for users on mobile data to get a 1MB update…

There is no update settings for wifi/data for the extension level. You can control app updates on the Android platform. Extensions will update regardless of wifi/data - from what I recall, things might have changed.

If you aren’t making a webextension, I would say hold off on the Android extension, the future for Android is very unclear, you will most likely end up wasting your time on it as they ban non-webextension addons on Android.

How can you force the update like with firefox desktop?

You could try to run this function, which updates a single extension in (desktop) Firefox:


Maybe it works on Android as well (run it in the browser context through the remote debugger).

I forced an update by opening about:config and setting this to 0:

extensions.getAddons.cache.lastUpdate

It would be easier if there was a button to do it.

1 Like

Well, at least there is a menu option at the top to “Check for Updates” (all extensions).

You really only need to use a hack to explicitly only update one extension (but for all others a repeated check should be a no-op anyway).

Unfortunately, I have no such menu option.

Sure?:

We are talking about Firefox for Android.

3 Likes

Yup, mobile Firefox!..:slight_smile:

Default value for Add-on (extension) update check interval is 86400 (seconds), or 24 hours as mentioned and it can be accessed via URL:

about:config?filter=extensions.update.interval
Moar info @[How to get Firefox to check for extension updates more often](https://www.ctrl.blog/entry/how-to-firefox-extension-autoupdate)
1 Like