Windows 10 will reach EOS (end of support) on October 14, 2025. For more information, see this article.

Mozilla サポートの検索

サポート詐欺に注意してください。 私たちはあなたに通話やショートメッセージの送信、個人情報の共有を求めることはありません。疑わしい行為を見つけたら「迷惑行為を報告」からご報告ください。

詳しく学ぶ

このスレッドはアーカイブに保管されました。 必要であれば新たに質問してください。

[REQUEST] Print an automatic generated list of passwords, username and/or email

  • 3 件の返信
  • 3 人がこの問題に困っています
  • 1 回表示
  • 最後の返信者: cor-el

more options

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

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

この投稿は antonfrei12 により に変更されました

すべての返信 (3)

more options

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.

more options

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()));