搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

Learn More

Print off my saved passwords

  • 4 个回答
  • 1 人有此问题
  • 9 次查看
  • 最后回复者为 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?

所有回复 (4)

more options

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

由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.