From 573f55e79e8bbf5680fec2454602d41924e85d75 Mon Sep 17 00:00:00 2001 From: tw93 Date: Mon, 16 Feb 2026 16:09:24 +0800 Subject: [PATCH] feat(clean): add Google Chrome/Updater cache cleanup support Add cleanup for: - Chrome component_crx_cache - GoogleUpdater crx_cache - GoogleUpdater *.old files Closes #460 --- lib/clean/user.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/clean/user.sh b/lib/clean/user.sh index 939b1c9..d85b636 100644 --- a/lib/clean/user.sh +++ b/lib/clean/user.sh @@ -479,6 +479,9 @@ clean_browsers() { safe_clean ~/Library/Caches/Google/Chrome/* "Chrome cache" safe_clean ~/Library/Application\ Support/Google/Chrome/*/Application\ Cache/* "Chrome app cache" safe_clean ~/Library/Application\ Support/Google/Chrome/*/GPUCache/* "Chrome GPU cache" + safe_clean ~/Library/Application\ Support/Google/Chrome/component_crx_cache/* "Chrome component CRX cache" + safe_clean ~/Library/Application\ Support/Google/GoogleUpdater/crx_cache/* "GoogleUpdater CRX cache" + safe_clean ~/Library/Application\ Support/Google/GoogleUpdater/*.old "GoogleUpdater old files" safe_clean ~/Library/Caches/Chromium/* "Chromium cache" safe_clean ~/.cache/puppeteer/* "Puppeteer browser cache" safe_clean ~/Library/Caches/com.microsoft.edgemac/* "Edge cache"