allo- / ffprofile

A tool to create firefox profiles with personalized defaults.
GNU Affero General Public License v3.0
755 stars 56 forks source link

Implement settings in IndexedDB / localStorage / etc. #271

Open allo- opened 1 year ago

allo- commented 1 year ago

Some extensions now use techniques like IndexedDB or localStorage for their settings. It doesn't look straightforward how to handle these especially since the databases seem to have a rather complicated sqlite3 format.

The indexedDB variant looks like a key-value store, but seems to store the encoded data as blobs. Maybe there are python modules to handle them?