How to Clear Cookies for a Specific Site (Without Wiping Everything)

Most browsers let you delete cookies for a single website — no need to sign out of every account you use. If a site is behaving oddly, showing stale content, or refusing to log you in properly, clearing its cookies selectively is usually the first smart fix to try.

Here's how it works across the major browsers, plus what you should know before you start.

What Site-Specific Cookies Actually Are

When you visit a website, your browser stores small text files — cookies — on your device. These hold session data, login tokens, preferences, and tracking identifiers tied to that domain.

Clearing cookies for one site removes only that site's stored data. Your Google login, your bank session, your saved shopping carts elsewhere — all untouched. This is meaningfully different from a full browser cookie clear, which logs you out of everything simultaneously.

How to Clear Cookies for One Site in Chrome 🍪

  1. Open Chrome and click the three-dot menu (top right)
  2. Go to Settings → Privacy and security → Third-party cookies (or Cookies and other site data depending on your version)
  3. Scroll down to See all site data and permissions
  4. Search for the site name in the search bar
  5. Click the site entry, then select Delete

Shortcut method: Type chrome://settings/content/all directly into the address bar to jump straight to the site data list.

How to Clear Cookies for One Site in Firefox

  1. Click the hamburger menuSettings
  2. Go to Privacy & Security
  3. Scroll to Cookies and Site Data → click Manage Data
  4. Type the domain name in the search field
  5. Select it and click Remove Selected

Firefox also lets you right-click on a tab and choose GDPR Delete or use the Developer Tools (F12 → Storage tab → Cookies) for more granular control — useful if you're working with subdomains or need to delete individual cookie entries rather than all of them at once.

How to Clear Cookies for One Site in Safari

On Mac:

  1. Go to Safari → Settings → Privacy
  2. Click Manage Website Data
  3. Search for the site, select it, and click Remove

On iPhone/iPad:

  1. Open Settings (not Safari itself) → Safari
  2. Tap Advanced → Website Data
  3. Search for the domain and swipe left to delete

Safari's handling of third-party cookies and cross-site tracking differs from Chrome and Firefox — it applies Intelligent Tracking Prevention (ITP) by default, which may already be blocking or partitioning certain cookies without manual intervention.

How to Clear Cookies for One Site in Edge

  1. Click the three-dot menuSettings
  2. Go to Cookies and site permissions → Manage and delete cookies and site data
  3. Click See all cookies and site data
  4. Search for the domain
  5. Click the trash icon next to the entry

Edge is Chromium-based, so the process closely mirrors Chrome's — including the shortcut of typing edge://settings/content/all in the address bar.

Variables That Affect What You're Actually Deleting

Not all cookies live in the same place, and a few distinctions matter:

Cookie TypeWhat It StoresCleared by Site-Specific Delete?
Session cookiesTemporary login/session data✅ Yes
Persistent cookiesPreferences, saved logins✅ Yes
Third-party cookiesCross-site tracking, ad dataDepends on browser settings
localStorage / IndexedDBApp state, offline dataSometimes — check browser
CacheStored page files❌ No — separate clear needed

Local storage and IndexedDB are separate from cookies technically, but browsers often group them under "site data." If a site is still misbehaving after clearing cookies, clearing the broader site data (not just cookies) is the logical next step.

When Clearing Site Cookies Actually Fixes Things

Common scenarios where this works well:

  • Login loops — the site keeps redirecting you to login even after signing in
  • Stale personalization — outdated preferences or region settings stuck on an old value
  • After a password change — old session tokens may conflict with new credentials
  • Broken form submissions — CSRF tokens or session state can get corrupted
  • A/B test artifacts — you're stuck seeing an old version of a site's layout or feature

It's worth noting this is a diagnostic step as much as a fix. If clearing site cookies doesn't resolve an issue, the problem may be server-side, a caching issue, or a bug unrelated to your local data.

Subdomains and Cross-Domain Cookies

One area where users sometimes get tripped up: subdomains. A cookie set by shop.example.com may or may not be shared with www.example.com, depending on how the cookie's domain attribute was configured by the site.

If you're clearing cookies for a large platform with multiple subdomains — a major retail site or a SaaS product — you may need to delete entries for several related domains, not just the primary one. Most browsers list these separately in their site data managers.

Similarly, third-party cookies loaded by a site (ad networks, analytics tools, embedded social widgets) are logged under their own domain, not the site you were visiting. Deleting example.com's cookies won't touch a tracker loaded from a separate ad network domain.

Technical Skill Level and Setup Matter More Than You'd Think 🔧

How straightforward this process is depends on factors specific to you:

  • Browser version — UI paths shift between major releases; screenshots you find online may not match your current interface
  • Managed or enterprise browsers — IT-managed Chrome or Edge installs may restrict access to cookie settings
  • Browser extensions — some privacy tools (cookie managers, cleaners) intercept or override manual cookie deletion
  • Mobile vs. desktop — mobile browsers offer more limited granularity; some don't expose per-site cookie deletion at all
  • Progressive Web Apps (PWAs) — sites installed as PWAs may store data in ways that aren't visible through standard cookie managers

What works cleanly on desktop Chrome may require a different approach entirely on mobile Safari — or may not be possible at the same level of granularity depending on the platform and OS version you're running.