How to Completely Remove Google Chrome from Your Device

Most people assume uninstalling Chrome is as simple as dragging it to the trash or hitting "Uninstall." On the surface, that's partially true — but a standard uninstall typically leaves behind profile data, cached files, preferences, and system entries that continue occupying storage and can interfere with a fresh reinstall later. A complete removal means clearing all of it.

The process varies meaningfully depending on your operating system, how Chrome was installed, and whether you want to preserve any browsing data before wiping it.

What a Standard Uninstall Actually Leaves Behind

When you remove Chrome through a basic system uninstall, the application itself is deleted — but Chrome stores a significant amount of data outside the app bundle or executable. This includes:

  • User profile data — bookmarks, saved passwords, autofill entries, browsing history
  • Cached web content — temporary files from websites you've visited
  • Extension files — downloaded add-ons and their local data
  • Preference and configuration files — settings that persist across reinstalls
  • Crash reports and logs

On Windows, some of this is stored in the AppData folder. On macOS, it's split between the Application Support and Library folders. On Linux, it lives in hidden directories under your home folder. None of this is removed by a standard drag-to-trash or Add/Remove Programs action.

How to Completely Remove Chrome on Windows 🖥️

Step 1: Uninstall the application

Go to Settings → Apps → Installed Apps, locate Google Chrome, and select Uninstall. Follow the prompts. If given the option to also delete your browsing data during uninstall, check that box.

Step 2: Delete leftover user data

Open File Explorer and navigate to:

C:Users[YourUsername]AppDataLocalGoogleChrome 

The AppData folder is hidden by default. To access it, type %localappdata% directly into the File Explorer address bar and press Enter. Delete the entire Chrome folder inside the Google directory.

Step 3: Clear registry entries (optional, advanced)

Chrome writes entries to the Windows Registry. For most users, leaving these causes no practical issues. If you're doing a clean reinstall or troubleshooting persistent behavior, open Registry Editor (regedit) and search for Chrome-related keys under:

HKEY_CURRENT_USERSoftwareGoogleChrome HKEY_LOCAL_MACHINESoftwareGoogleChrome 

Delete carefully — editing the registry incorrectly can affect other system behavior.

How to Completely Remove Chrome on macOS 🍎

Step 1: Quit Chrome and delete the app

Make sure Chrome is fully closed (not just minimized). Drag Google Chrome.app from your Applications folder to the Trash, or right-click and select Move to Trash.

Step 2: Remove associated library files

Open Finder, click Go in the menu bar, hold the Option key, and select Library. From there, navigate to and delete the following:

  • ~/Library/Application Support/Google/Chrome
  • ~/Library/Caches/Google/Chrome
  • ~/Library/Preferences/com.google.Chrome.plist
  • ~/Library/Saved Application State/com.google.Chrome.savedState

Not all of these folders may exist on every system, depending on your Chrome version and usage history.

Step 3: Empty the Trash

Right-click the Trash icon and select Empty Trash to fully free the storage.

How to Completely Remove Chrome on Linux

On Debian/Ubuntu-based systems, open a terminal and run:

sudo apt-get purge google-chrome-stable 

The purge flag removes both the application and its associated configuration files — unlike remove, which leaves config data behind.

Then manually delete remaining user data:

rm -rf ~/.config/google-chrome rm -rf ~/.cache/google-chrome 

On other distributions, the package manager command will differ (e.g., dnf, pacman, zypper), but the principle is the same: use purge or equivalent, then clear the hidden config directories.

Should You Back Up Your Chrome Data First?

Before wiping everything, consider whether you want to keep any of it. Chrome's Sync feature (linked to a Google account) already backs up bookmarks, passwords, history, and extensions to the cloud — so if you've been signed in, that data isn't lost permanently. You can access it by signing into Chrome on another device or during a fresh install.

If you've been using Chrome without signing in, export your bookmarks manually via Chrome's bookmark manager before uninstalling. Saved passwords can also be exported from chrome://settings/passwords.

Key Variables That Affect the Process

FactorHow It Changes the Process
Operating systemFile paths, commands, and tools differ significantly
Chrome versionNewer versions may store data in slightly different locations
Multi-user systemsEach user account may have its own Chrome data directory
Managed/enterprise installsIT-deployed Chrome may require admin rights to fully remove
Sync statusDetermines whether cloud-backed data persists after local deletion

What a "Complete" Removal Looks Like in Practice

A fully clean removal leaves no Chrome processes running, no application files present, and no user data folders remaining in the locations listed above. Whether registry entries (on Windows) need to go depends on your reason for uninstalling — most casual users won't notice any difference either way.

What counts as "complete enough" depends on what you're trying to accomplish: freeing storage, eliminating a privacy footprint, resolving a corrupted install, or switching browsers entirely. Each goal points toward a slightly different level of thoroughness — and the right depth for your situation depends on your own setup, technical comfort level, and what you're planning to do next.