How to Completely Uninstall Google Chrome From Your Device
Most people assume dragging Chrome to the trash or clicking "Uninstall" is enough. It usually isn't. Google Chrome leaves behind user profiles, cached data, login credentials, browser history, and system-level files — sometimes gigabytes worth — even after the main application is removed. A complete uninstall means removing all of it.
Here's exactly how that works across different operating systems, and what variables affect how thorough you need to be.
Why a Standard Uninstall Leaves Files Behind
Chrome is designed to preserve your data between reinstalls. That's useful if you're upgrading or troubleshooting, but it means the browser deliberately stores profile data separately from the application itself. These files live in your user directory and aren't touched by a basic uninstall.
What gets left behind typically includes:
- User profile data — bookmarks, passwords, autofill entries, extensions
- Cache and cookies — temporary internet files that can accumulate significantly over time
- Preferences and configuration files — Chrome's settings and sync data
- Update helper processes — on Windows, Google installs background updater services
If your goal is a clean slate — whether for privacy, disk space, or fixing a corrupted installation — you need to go beyond the standard removal.
How to Completely Uninstall Chrome on Windows 🖥️
Step 1: Uninstall the application
Go to Settings → Apps → Installed Apps, find Google Chrome, and select Uninstall. This removes the core browser executable.
Step 2: Delete leftover profile and cache data
Open File Explorer and navigate to the following paths. Delete the entire Chrome folder in each location:
C:Users[YourName]AppDataLocalGoogleChromeC:Users[YourName]AppDataRoamingGoogleChrome
The AppData folder is hidden by default. To see it, enable "Show hidden items" in File Explorer's View settings.
Step 3: Remove Google Update services (optional but thorough)
Chrome installs a background update service called GoogleUpdate that runs independently of the browser. You can find it under:
C:Users[YourName]AppDataLocalGoogleUpdateC:Program Files (x86)GoogleUpdate
Deleting these prevents Chrome from silently reinstalling update components. If you're planning to reinstall Chrome later, this step is optional.
Step 4: Clean up the registry (advanced)
For a truly complete removal, residual entries may remain in the Windows Registry under HKEY_CURRENT_USERSoftwareGoogle and HKEY_LOCAL_MACHINESOFTWAREGoogle. Registry editing carries risk — only pursue this if you're comfortable, and back up the registry first.
How to Completely Uninstall Chrome on macOS
Step 1: Quit Chrome and remove the application
Make sure Chrome is fully closed. Drag Google Chrome.app from your Applications folder to the Trash, or right-click and select Move to Trash.
Step 2: Remove supporting files
Open Finder, press Cmd + Shift + G, and navigate to these paths individually:
~/Library/Application Support/Google/Chrome— profile data, extensions, settings~/Library/Caches/Google/Chrome— cached files~/Library/Preferences/com.google.Chrome.plist— preferences file
Delete the Chrome-related folders and files in each location. The ~/Library folder is hidden by default; the keyboard shortcut above bypasses that.
Step 3: Check for Keychain entries (optional)
Chrome may store saved passwords in macOS Keychain. Open Keychain Access, search for "Chrome," and remove any entries you no longer want.
How to Completely Uninstall Chrome on Linux
The process varies slightly depending on your distribution and how Chrome was installed.
For Debian/Ubuntu-based systems using apt:
sudo apt remove google-chrome-stable sudo apt autoremove To remove configuration files as well:
sudo apt purge google-chrome-stable Then manually delete the profile directory:
rm -rf ~/.config/google-chrome For RPM-based systems (Fedora, RHEL):
sudo dnf remove google-chrome-stable rm -rf ~/.config/google-chrome The --purge flag (or purge command on apt) is the key distinction — without it, configuration files are intentionally preserved.
What Varies by User Situation
How deep you need to go depends on several factors:
| Situation | How thorough you need to be |
|---|---|
| Reinstalling Chrome to fix a bug | Delete profile data; keep or skip update files |
| Freeing up disk space | Focus on cache and profile data — these are the largest files |
| Privacy-focused removal | Delete all profile data, cookies, Keychain entries, and registry keys |
| Switching browsers permanently | Full removal including update services and background processes |
| Managed/corporate device | IT policy may restrict what you can delete; check before proceeding |
Technical skill level also matters. Editing the Windows Registry or using Terminal commands on Linux introduces risk if you're not familiar with those environments. For most users, removing the application plus the profile data folder covers the majority of leftover files without requiring advanced steps.
A Note on Synced Data 🔄
Removing Chrome from your device doesn't delete data tied to your Google account. Bookmarks, passwords, and browsing history synced to your Google account remain in the cloud. If you want that gone too, you'll need to visit myaccount.google.com and manage Chrome sync data from your account settings — that's a separate process from local uninstallation.
The Variable That Changes Everything
Whether you need a surface-level removal or a forensic-level wipe depends entirely on your reason for uninstalling — and that reason shapes which steps actually matter for your situation. Someone reclaiming disk space has different priorities than someone handing off a device or recovering from a malware-related browser issue. The steps are the same; the depth you need to go is not.