
[REQUEST] Print an automatic generated list of passwords, username and/or email
Hey,
i would like to print out my logins in a format like:
www.example.net Example@Example.net ExamplePassword www.example.net (no user) ExamplePassword www.example.net ExampleUser ExamplePassword
Maybe with an option to add additional infos www.example.net ExampleUser ExamplePassword Created: February 2, 2020 Last modified: February 5, 2020 Last used: February 6, 2020
ప్రత్యుత్తరాలన్నీ (3)
You can view all of your saved logins at about:logins and choose to print the page for a specific login in Firefox's menu, but you cannot view the domain, user, and password for all logins on one single page.
You can file a feature request for this here, or I can file one for you on your behalf if you'd prefer.
Done!
You can easily export the logins via code in the Browser Console.
You would have to use some JavaScript to parse the code to get the the logins in a printable table format.
/* export logins as JSON */ logins = prompt("Logins",JSON.stringify(Services.logins.getAllLogins()));
- /questions/1077630#answer-834769 How can I "print" the saved passwords list?