Ce site disposera de fonctionnalités limitées pendant que nous effectuons des opérations de maintenance en vue de vous proposer un meilleur service. Si un article ne règle pas votre problème et que vous souhaitez poser une question, notre communauté d’assistance est prête à vous répondre via @FirefoxSupport sur Twitter, et /r/firefox sur Reddit.

Rechercher dans l’assistance

Évitez les escroqueries à l’assistance. Nous ne vous demanderons jamais d’appeler ou d’envoyer un SMS à un numéro de téléphone ou de partager des informations personnelles. Veuillez signaler toute activité suspecte en utilisant l’option « Signaler un abus ».

En savoir plus

Print off my saved passwords

  • 4 réponses
  • 1 a ce problème
  • 1 vue
  • Dernière réponse par cor-el

more options

I use an older version of Firefox (59) because I am able to look at my saved logins and passwords. I have many over the years, but I would like to be able to print them out or save them to a separate file> How/what can I do?

I use an older version of Firefox (59) because I am able to look at my saved logins and passwords. I have many over the years, but I would like to be able to print them out or save them to a separate file> How/what can I do?

Toutes les réponses (4)

more options

The easiest way is to export passwords to a CSV file, what is possible since Firefox 78.

Modifié le par TyDraniu

more options

Thank you for responding. However, I need help with 59. I am going to do a print screen if needed. But, I was hoping there was an easier way. There are some things I would need to learn with newer versions. In a 62, I could not see how to clear recent history with there cookies, etc.

more options

Here is a work around that might help (?)...

I don't think you can in FF. If you have the Chrome browser, you should be able to import them into Chrome. Then you can save the passwords from there to a CVS file more easily without having to install a third party tool in FF to do it.

   Launch the Google Chrome browser.
   Click on the Chrome menu (three dots located in the top-right of the screen).
   Click on Settings.
   Select Passwords.
   Click on the three dots next to Saved Passwords.
   Click on Export Passwords and confirm that you want to export your passwords.
   Select a location to export your passwords on your hard drive and give the CSV file a name.
   Now click Save.
more options

You can possibly use code in the Browser Console to export the logins as JSON data and copy this to a file.
You can use an online tool to convert this file to CVS.

/* export logins as JSON */
logins = prompt("Logins",JSON.stringify(Services.logins.getAllLogins()));

You can open the Inspector or another web developer tool and press F1 to access the settings page to enable the command line in the Console.