chrome导出书签和密码_如何在Linux上导出Google Chrome密码?

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.csv
select * from logins;
.exit

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

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

Answered by Lucy.
露西回答。

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

chrome导出书签和密码

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值