Where does the Lazarus Chrome extension store its database?

6

1

Lazarus' website is down, so I can't look this up. Where in Linux should I look to find its SQLite database of saved forms?

isomorphismes

Posted 2015-05-01T13:53:08.787

Reputation: 1 534

Not that Lazarus. – isomorphismes – 2015-05-01T13:58:56.490

Looks like on Windows

"""This database is stored within the default Profile (C:\Documents and Settings\<username.\Application Data\Mozilla\Firefox\Profile) folder in the system.""" Can't find it in ~/.config/google-chrome/ on my Linux machine though.

– isomorphismes – 2015-05-01T14:32:53.383

Answers

6

The Lazarus website can be found in the wayback machine, and the FAQ says the database is an SQLite database in one of the following directories:

Windows 7: C:\Users\{username}\AppData\Local\Google\Chrome\User Data\Default\databases\chrome-extension_loljledaigphbcpfhfmgopdkppkifgno_0

Ubuntu: ~/.config/chromium/Default/databases/chrome-extension_loljledaigphbcpfhfmgopdkppkifgno_0

Mac OS X: ~/Library/Application Support/Google/Chrome/Default/databases/chrome-extension_loljledaigphbcpfhfmgopdkppkifgno_0

On my Fedora machine, it was the directory ~/.config/google-chrome/Default/databases/chrome-extension_loljledaigphbcpfhfmgopdkppkifgno_0/

seanf

Posted 2015-05-01T13:53:08.787

Reputation: 261