Google Chrome view saved form data
Hire the world's top talent on demand or became one of them at Toptal: https://topt.al/25cXVn
and get $2,000 discount on your first invoice
--------------------------------------------------
Take control of your privacy with Proton's trusted, Swiss-based, secure services.
Choose what you need and safeguard your digital life:
Mail: https://go.getproton.me/SH1CU
VPN: https://go.getproton.me/SH1DI
Password Manager: https://go.getproton.me/SH1DJ
Drive: https://go.getproton.me/SH1CT
Music by Eric Matyas
https://www.soundimage.org
Track title: Hypnotic Orient Looping
--
Chapters
00:00 Google Chrome View Saved Form Data
00:21 Answer 1 Score 2
00:31 Accepted Answer Score 39
01:30 Thank you
--
Full question
https://superuser.com/questions/224261/g...
--
Content licensed under CC BY-SA
https://meta.stackexchange.com/help/lice...
--
Tags
#googlechrome
#avk47
ACCEPTED ANSWER
Score 39
Chrome stores that information in a SQLite DB file. And the following procedure will help you search it in there:
Download some SQLite client (e.g. command-line shell program or DB Browser for SQLite)
Close Google Chrome (otherwise you will get "database is locked" error)
Open the SQLite DB file located at
%userprofile%\AppData\Local\Google\Chrome\User Data\Default\Web Data
(on some systems, the file instead may be namedChrome Web Data
)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' );
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.Click
Execute Query
.
ANSWER 2
Score 2
By design it only does the most recent few.
If you want something that'll do this you're gonna need something like Lazarus.