External Publication
Visit Post

Browser Support • Re: Anyway to import bitwarden database to palemoon PW manager?

Pale Moon forum - Forum index [Unofficial] May 26, 2026
Source

Actually, should be easy. Palemoon "Password Backup Tool" extension allow to export/import passwords to csv. Bitwarden allows the same, all you need is small one-liner that reorders fields. I regulary do the other way - palemoon to bitwarden - with the following

CODE:

 awk 'BEGIN { FS=","; OFS=","; } {print ",,login",$1,",,0",$1,$2,$3","}' password-export.csv > bitwarden.csv

Discussion in the ATmosphere

Loading comments...