Google Chrome浏览器保存的表单数据


22

我知道如何在Chrome中删除保存的表单数据,但我希望能够查看为字段存储的所有条目。

当我输入a表单时,我会得到一个列表,其中列出了我之前在该字段中输入过的一些项目a

不过,我希望看到完整的列表。

Answers:


29
  1. 转到http://sqlitebrowser.org/并下载SQLite数据库浏览器。

  2. 执行SQLite数据库浏览器并打开文件%userprofile%\Local Settings\Application Data\Google\Chrome\User Data\Default\Web Data
    (在某些系统上,可能是 %userprofile%\Local Settings\Application Data\Google\Chrome\User Data\Default\Chrome Web Data

  3. 单击Execute SQL选项卡,然后复制以下查询:

    select *
    from autofill
    where name in (
      select name
      from autofill
      where value_lower like 'one-data-entry-of-you'
    );
    
  4. one-data-entry-of-you您知道在该字段中输入的某些文本替换。但是,请尝试使用许多字段中未使用的文本:越特殊越好,因为如果替换的文本用于许多字段,则您将同时看到该多个字段的所有条目。

  5. 点击Execute Query


2
谢谢!我在Firefox中使用了SQLite Manager插件,效果很好。
古斯

3
或者,您可以在打开文件C:\Users\YourUserHere\AppData\Local\Google\Chrome\User Data\Default\Web Data。其中“ Web数据”是文件名。
少年M

2
我遇到了错误Invalid file format
Dmitrij Holkin '16

2
Invalid file formatChrome打开时我也得到了。完全关闭Chrome,可以在SQLite浏览器中将其打开。我现在已经删除了不需要的条目。(我还发现Shift + Delete可以将它们从Chrome中删除。)
fredden '16

4
@jj_ chrome必须关闭。如果您无法关闭它,请通过像这样的终端制作该文件的副本,cp "Web Data" "Web Data Copy"它会在不提示输入密码的情况下打开。
EGHDK '17

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.