-
-
Notifications
You must be signed in to change notification settings - Fork 19
Open
Labels
enhancementNew feature or requestNew feature or request
Description
Hoisted to a separate issue from #47.
Overview:
Users with browsers signed in to a Firefox Account will be able to sync extension settings across their devices. This is a browser native feature that will not send data to any external servers (except Mozilla's, which was already happening due to being signed in).
Settings sync will be off by default.
Seeking feedback:
Specifics of sync behavior need clarifying:
- The simplest option is to read and write directly to
storage.sync
when sync is enabled on a device. - uBlock Origin syncs by pushing and pulling changes from
storage.sync
tostorage.local
instead of directly using it. This might be the best approach, but it takes two actions to have a settings change on one device affect another (push change tosync
to share, then pull tolocal
on other device to use)
Potential Foot-Guns:
Care must be taken to not overwrite anyone's existing settings on extension updates or change/wipe settings without confirmation including information of what's going to be changed.
Stretch goals:
- Fine grained control over which settings are synced (only sync toggle settings not whitelists, more relevant as features are added)
- Stage settings changes for review (locally before syncing and when pulling settings synced by other devices) with highlighted differences (eg. added x,y,z to whitelist, disabled notifications)
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request