To find profiles with User Data folder for Chrome, here’s the stitched together relevance I had for another case:
exists files of folders “\AppData\Local\Google\Chrome\User Data” of folders whose (exists folder “\AppData\Local\Google\Chrome\User Data” of it) of folder “C:\Users”
but if you are looking for a particular file under the User Data folder under C:\Users:
exists file “your name of file being looked for” of folders “\AppData\Local\Google\Chrome\User Data” of folders whose (exists folder “\AppData\Local\Google\Chrome\User Data” of it) of folder “C:\Users”
I have not tested this so please be sure to do so but off the top of my head, if you want to delete a file out of Chrome User data folder:
if { exists file “your name of file being looked for” of folders “\AppData\Local\Google\Chrome\User Data” of folders whose (exists folder “\AppData\Local\Google\Chrome\User Data” of it) of folder “C:\Users” }
delete (file “test.docx” of folders “\AppData\Local\Google\Chrome\User Data” of folders of folder “C:\Users”)
endif