How to Clear Cookies for a Specific Site in Chrome
Most guides tell you to clear all your cookies at once — wiping saved logins, preferences, and session data across every site you use. But Chrome lets you target a single site's cookies without touching anything else. Here's exactly how that works, and why the right approach depends on what you're actually trying to fix.
What Site-Specific Cookies Actually Are
When you visit a website, Chrome stores small data files called cookies on your device. These can hold:
- Session tokens — proof that you're logged in
- Preferences — your saved language, theme, or layout settings
- Tracking identifiers — used by advertisers and analytics tools
- Shopping cart data — items held between visits
Clearing cookies for one site removes only that site's stored data. Your Google account stays logged in. Your banking session stays intact. Only the targeted site's cookies are deleted.
How to Clear Cookies for One Site in Chrome 🍪
Chrome gives you two main paths to do this.
Method 1: Through Chrome Settings (Most Reliable)
- Open Chrome and click the three-dot menu (⋮) in the top-right corner
- Go to Settings → Privacy and security → Third-party cookies (or Cookies and other site data on older versions)
- Scroll down and click See all site data and permissions
- Use the search bar to find the specific site
- Click the trash icon next to that site to delete its cookies
This method is the most thorough because it surfaces all stored data for a domain, including data from embedded third parties associated with that site.
Method 2: From the Address Bar (Fastest)
- Visit the site you want to clear
- Click the padlock icon (or the tune/info icon) to the left of the URL
- Select Cookies and site data
- Click Manage on-device site data
- Select the cookies listed and remove them
This approach is quicker but may only show first-party cookies — data stored directly by the site you're on, not third-party trackers loaded through it.
Method 3: Using DevTools (For Technical Users)
- Press F12 (or right-click → Inspect) to open Chrome DevTools
- Go to the Application tab
- Expand Cookies in the left sidebar
- Select the domain
- Right-click individual cookies to delete them, or click the clear icon to remove all for that domain
This method gives you granular control, letting you delete specific cookies rather than wiping everything for the site at once.
What Gets Deleted — and What Doesn't
Understanding the scope matters before you clear anything.
| Data Type | Cleared with Site Cookies? |
|---|---|
| Login session for that site | ✅ Yes |
| Site preferences (theme, language) | ✅ Yes |
| Shopping cart contents | ✅ Yes |
| Cached images and page files | ❌ No (separate cache) |
| Bookmarks to that site | ❌ No |
| Autofill/saved passwords | ❌ No |
| Other sites' cookies | ❌ No |
Clearing cookies does not clear your browsing history, cached files, or saved passwords. Those are stored separately and require their own clearing steps.
Why You Might Target One Site Specifically
The reason for clearing matters, because it affects which method makes sense.
Fixing a login loop or broken session — If a site keeps logging you out, redirecting oddly, or throwing authentication errors, the session cookie is likely corrupted or expired. Clearing just that site's cookies forces a fresh session without signing you out of everything else.
Resetting a site's stored preferences — Some sites remember settings (font size, region, content filters) in cookies. Clearing them resets the site to its default state.
Privacy or tracking concerns — If you've visited a site and want to remove any stored identifiers it left behind, clearing site-specific cookies handles that. Keep in mind that third-party trackers embedded in pages may store data under different domain names, which the Settings method handles more completely than the address bar method.
Troubleshooting a web app — Developers and technically minded users often clear one site's cookies repeatedly while debugging. DevTools is the practical choice for this workflow.
The Variables That Change the Process ⚙️
Chrome's interface has shifted across versions, and the exact labels and menu paths vary depending on:
- Chrome version — Google updates the Settings UI regularly. Menu items like "Third-party cookies" replaced older "Cookies and other site data" labels in recent builds. If your screen doesn't match, check your Chrome version via Settings → About Chrome.
- Operating system — Chrome on Windows, macOS, ChromeOS, Android, and iOS each present the settings differently. On Android, tap the three-dot menu → Settings → Privacy and security → Clear browsing data → Advanced (you can't easily target one site the same way on mobile without using the address bar method).
- Chrome profile — Cookies are stored per profile. If you use multiple Chrome profiles, you'll need to clear cookies separately in each one where the issue exists.
- Synced accounts — If Chrome Sync is active, some site data may be synced across devices. Clearing cookies locally may not remove synced data unless you also clear it through your Google account settings.
What Stays Behind After Clearing
Cookies aren't the only thing a site can store. Even after clearing cookies, a site may retain data through:
- LocalStorage and SessionStorage — browser-based storage separate from cookies
- IndexedDB — a structured local database some web apps use
- Cache storage — used by Progressive Web Apps (PWAs) and service workers
The Settings → See all site data and permissions path in Chrome shows all of these under one site entry, so you can clear them together if needed. The address bar shortcut typically handles only cookies.
How far you need to go depends on what's misbehaving — a simple login fix usually needs only the cookies cleared, while a broken web app might require wiping all stored data for that origin.