首页 > 编程知识 正文

谷歌浏览器导出书签跟密码,google chrome系统如何保存密码

时间:2023-05-05 03:35:37 阅读:217626 作者:803

chrome导出书签和密码

How to export my Google Chrome password on Linux to a human-readable text file?

如何将Linux上的Google Chrome密码导出到人类可读的文本文件?

In newer versions of Chrome, the passwords are stored using the encrypted password storage provided by the system, either Gnome Keyring or KWallet. We need to force Chrome to use a temporary profile folder with unencrypted password storage.

在较新版本的Chrome中,密码是使用系统提供的加密密码存储区Gnome Keyring或KWallet存储的。 我们需要强制Chrome使用未加密密码存储的临时配置文件文件夹。

Step 1. Connect to your Google Account in Chrome Settings so that your passwords are synched with the Google cloud. Wait for a while until the data is synced, and then close all the Chrome windows.

步骤1.在“ Chrome设置”中连接到您的Google帐户,以便您的密码与Google云同步。 等待一段时间,直到数据同步,然后关闭所有Chrome窗口。

Step 2. Start Chrome using one of the two command lines below.

第2步。使用以下两个命令行之一启动 Chrome。

google-chrome --user-data-dir=/tmp/chrome-tmp --password-store=basic

This will launch Chrome with a custom profile folder without affecting your current profile.

这将使用自定义配置文件文件夹启动Chrome,而不会影响您当前的配置文件。

Step 3. Setup Google syncing for the new temporary profile and wait three or four minutes until everything is synced from the cloud. Then close Chrome.

步骤3.为新的临时配置文件设置Google同步,然后等待三到四分钟,直到从云同步所有内容。 然后关闭Chrome。

Step 4. Open a terminal and change to the newly created Chrome profile

步骤4.打开终端并更改为新创建的Chrome配置文件

cd /tmp/chrome-tmp/Default

Step 5. Open the Login Data SQLite database using the sqlite3 command line utility and dump the logins table.

步骤5.使用sqlite3命令行实用程序打开Login Data SQLite数据库,并转储logins表。

sqlite3 'Login Data'

Step 6. At the SQLite prompt, enter the commands below.

步骤6.在SQLite提示符下,输入以下命令。

.mode csv # other options are `html', `tabs', etc..headers on.separator ",".output chrome_passwords.csvselect * from logins;.exit

Now you should have a file named chrome_passwords.csv containing all your Chrome passwords.

现在,您应该有一个名为chrome_passwords.csv的文件,其中包含您所有的Chrome密码。

Answered by jjdxf. hcdbl回答。

翻译自: https://www.systutorials.com/how-to-export-google-chrome-password-on-linux/

chrome导出书签和密码

版权声明:该文观点仅代表作者本人。处理文章:请发送邮件至 三1五14八八95#扣扣.com 举报,一经查实,本站将立刻删除。