Google Chrome view saved form data

I know how to delete saved form data in Chrome, but I'd like to be able to see all of the entries stored for fields.

When I type a into a form, I get a list of a few items that I have typed before in that field which begin with a.

I would like to see a complete list, though.

Asked By: Gus
||

Answer #1:

Chrome stores that information in a SQLite DB file. And the following procedure will help you search it in there:

  1. Download some SQLite client (e.g. command-line shell program or DB Browser for SQLite)

  2. Close Google Chrome (otherwise you will get "database is locked" error)

  3. Open the SQLite DB file located at %userprofile%AppDataLocalGoogleChromeUser DataDefaultWeb Data
    (on some systems, the file instead may be named Chrome Web Data)

  4. Click the Execute SQL tab and then copy the following query:

     select *
     from autofill
     where name in (
       select name
       from autofill
       where value_lower like 'one-data-entry-of-you'
     );
    
  5. Replace one-data-entry-of-you for some text you know you have entered in that field. But try to use text that is not used in many fields: the more peculiar the better, because if the text replaced is used on many fields you will see all the entries for those many fields at the same time.

  6. Click Execute Query.

Answered By: Mariano Desanze

Answer #2:

By design it only does the most recent few.
If you want something that'll do this you're gonna need something like .

Answered By: digitxp
The answers/resolutions are collected from stackoverflow, are licensed under cc by-sa 2.5 , cc by-sa 3.0 and cc by-sa 4.0 .



# More Articles