Get full list of Autocomplete entries?
Download and run SQLite Database Browser
Close Chrome (or copy the file to another location and open that)
Open
C:\Users\<username>\AppData\Local\Google\Chrome\User Data\Default\Web Data
with the db browserBrowse Data
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