Four browsers, one storage layout, and the ones you stopped using
Every Chromium browser keeps the same six folders in the same shape. Learn it once, then find the profiles nobody opens any more.
Brave, Vivaldi, Opera, Edge and Chrome are the same browser wearing different clothes. Their storage is identical in structure, which means one set of commands covers all of them and one habit covers the cleanup.
Where each one lives
$roots = @(
"$env:LOCALAPPDATA\BraveSoftware\Brave-Browser\User Data",
"$env:LOCALAPPDATA\Vivaldi\User Data",
"$env:APPDATA\Opera Software",
"$env:LOCALAPPDATA\Microsoft\Edge\User Data",
"$env:LOCALAPPDATA\Google\Chrome\User Data"
)
foreach ($r in $roots) {
if (Test-Path $r) {
$s = (Get-ChildItem $r -Recurse -Force -File -EA SilentlyContinue | Measure-Object Length -Sum).Sum
'{0,8:N0} MB {1}' -f ($s/1MB), $r
}
}The six folders inside every one
| Folder | What it is | Safe to clear |
|---|---|---|
Cache | Downloaded page resources | Yes |
Code Cache | Compiled scripts | Yes |
GPUCache | Compiled shaders | Yes |
Service Worker | Offline app data | Yes, apps resync |
IndexedDB and Local Storage | Site state and sessions | Signs you out |
Extensions | Installed extensions | Remove in the browser |
Site storage is the large one, not the cache
The cache is bounded and the browser trims it. Site storage is not: a browser used for a few web apps holds gigabytes of it while its cache stays modest. That is the finding worth carrying between platforms, and it is the same on Chrome for Windows.
Browsers you no longer use
- List the folders above and note which browsers you actually open.
- For any you do not, export bookmarks and check for saved passwords first.
- Uninstall through Settings, Apps.
- Then remove the leftover
User Datafolder, because the uninstaller does not.
That last step is the one that matters. An uninstalled browser leaves its entire profile behind, which is the general pattern for uninstalling on Windows.
Common questions
Do all Chromium browsers store data the same way?
Yes. Brave, Vivaldi, Opera, Edge and Chrome share the same folder layout, so the same commands and the same advice work for all of them.
Where does Brave store its profile on Windows?
Under %LOCALAPPDATA%\BraveSoftware\Brave-Browser\User Data, with the standard Chromium folders inside, one set per profile.
Does uninstalling a browser remove its profile?
No. The User Data folder stays behind with the full profile, including history, extensions and saved passwords. Removing it by hand is what actually frees the space.
Which browser folder is usually largest?
Site storage under Service Worker and IndexedDB, rather than the cache. Site storage has no fixed limit, so a browser used for web apps grows well beyond its cache size.