Yeah, I mean, "cache" is just cache. I think critical data files are stored elsewhere.
You can delete files based on time (last modified) time.
The section about "Tests" will cover the mtime and other useful flags.
You can pair that with "-exec rm -f '{}' " to blindly remove them.
find '/home/joe/.cache/google-chrome' -type f -mtime +7 -exec rm -f '{}' \;
That's what I got from memory and typing on my phone, in bed, LOL. If that's not it, then it'll get you really close, but I think that's a good command.
--
Thanks,
Alexander
Sent from my Google Pixel 7 Pro