Anyway to import bitwarden database to palemoon PW manager?

Users and developers helping users with generic and technical Pale Moon issues on all operating systems.

Moderator: trava90

Forum rules
This board is for technical/general usage questions and troubleshooting for the Pale Moon browser only.
Technical issues and questions not related to the Pale Moon browser should be posted in other boards!
Please keep off-topic and general discussion out of this board, thank you!
User avatar
resunoomelap
Hobby Astronomer
Hobby Astronomer
Posts: 24
Joined: 2023-10-11, 15:39

Anyway to import bitwarden database to palemoon PW manager?

Post by resunoomelap » 2026-05-04, 00:59

Anyway to import bitwarden database to palemoon PW manager?

User avatar
moonbat
Knows the dark side
Knows the dark side
Posts: 5891
Joined: 2015-12-09, 15:45

Re: Anyway to import bitwarden database to palemoon PW manager?

Post by moonbat » 2026-05-04, 01:58

Unlikely. Better off forking their Firefox extension for Pale Moon, which is not a trivial task.
"One hosts to look them up, one DNS to find them and in the darkness BIND them."

Image
KDE Neon on a Slimbook Excalibur (Ryzen 7 8845HS, 64 GB RAM)
AutoPageColor|PermissionsPlus|PMPlayer|Pure URL|RecordRewind|TextFX
Jabber: moonbat@hot-chili.net

Harkonnen
Fanatic
Fanatic
Posts: 103
Joined: 2014-11-04, 12:27
Location: Kiev, Ukraine

Re: Anyway to import bitwarden database to palemoon PW manager?

Post by Harkonnen » 2026-05-26, 15:53

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: Select all

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