Get full list of Autocomplete entries?

Solution 1:

  1. Download and run SQLite Database Browser

  2. Close Chrome (or copy the file to another location and open that)

  3. Open C:\Users\<username>\AppData\Local\Google\Chrome\User Data\Default\Web Data with the db browser

    • For OS X, the relevant file is located at ~/Library/Application Support/Google/Chrome/Profile 1/Web Data
    • For Linux, ~/.config/google-chrome/Default/Web Data
    • For other OS's, this will point you in the right direction: Where does Chrome save its SQLite database to? - Stack Overflow
  4. Browse Data

  5. Table: autofill

Alternatively, to get the autofill entries for a specific input name, click Execute SQL and execute this:

select *
from autofill
where name = 'q'
order by value asc

Solution 2:

For OSX, the relevant file is located at

~/Library/Application Support/Google/Chrome/Profile 1/Web Data

(from https://stackoverflow.com/questions/8936878/where-does-chrome-save-its-sqlite-database-to)