Extension not syncing settings across Firefox devices

Hi Everyone,

I’m using a Firefox extension (a tab manager, if it matters) on both my Windows 11 laptop and Android phone.

I’m signed into the same Firefox account on both, and sync is enabled, but the extension settings and saved preferences don’t carry over between devices.

I thought Firefox Sync handled that or do extensions have to support it manually? Is there a way to force it or export/import the settings myself?

Thanks!

Yes, extensions have to use Firefox Sync. storage explicitly, but it’s quite limited in terms of … everything, so many developers avoids it:

For example, it can handle only 100KB of data, one “entry” can have only 8KB and totally you can store only 512 entries.

So for extensions like tab/bookmark managers that needs to store hundreds (or more) tabs, is basically impossible to store it in sync. storage.

I’m using this storage for my Auto Highlight and Private Notes where I had to compress the data with LZMA compression and then encode with custom Base93 in order to squeeze the data in - not exactly a piece of cake :smiley: .

1 Like