<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Anton P</title>
    <description>The latest articles on DEV Community by Anton P (@antonp_tabvitals).</description>
    <link>https://dev.to/antonp_tabvitals</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4121075%2F9eb483f3-d4c6-4646-b4b2-171e4dcea666.png</url>
      <title>DEV Community: Anton P</title>
      <link>https://dev.to/antonp_tabvitals</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/antonp_tabvitals"/>
    <language>en</language>
    <item>
      <title>How to Clear Cache and Cookies for One Website in Chrome Without Resetting Everything</title>
      <dc:creator>Anton P</dc:creator>
      <pubDate>Fri, 11 Sep 2026 14:19:32 +0000</pubDate>
      <link>https://dev.to/antonp_tabvitals/how-to-clear-cache-and-cookies-for-one-website-in-chrome-without-resetting-everything-49bh</link>
      <guid>https://dev.to/antonp_tabvitals/how-to-clear-cache-and-cookies-for-one-website-in-chrome-without-resetting-everything-49bh</guid>
      <description>&lt;p&gt;When one website breaks in Chrome, “clear your cache and cookies” is a common support answer. It often works, but the browser-wide version is unnecessarily disruptive: it can sign you out of unrelated tools, remove useful site state, and turn a one-site problem into an all-browser cleanup.&lt;/p&gt;

&lt;p&gt;The safer first move is to target only the affected website.&lt;/p&gt;

&lt;h2&gt;
  
  
  Start with the smallest fix
&lt;/h2&gt;

&lt;p&gt;If the page is showing stale CSS, an old image, or an outdated script, try a hard reload first:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Windows/Linux:&lt;/strong&gt; &lt;code&gt;Ctrl + Shift + R&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;macOS:&lt;/strong&gt; &lt;code&gt;Cmd + Shift + R&lt;/code&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;A hard reload asks Chrome to fetch the page resources again. It usually leaves login cookies alone.&lt;/p&gt;

&lt;p&gt;If the page is still broken, move to a site-data reset.&lt;/p&gt;

&lt;h2&gt;
  
  
  Clear data for one site manually
&lt;/h2&gt;

&lt;p&gt;The shortest current-Chrome route is:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Open the affected website.&lt;/li&gt;
&lt;li&gt;Select the site-controls icon beside the address.&lt;/li&gt;
&lt;li&gt;Open the site settings or on-device site data controls.&lt;/li&gt;
&lt;li&gt;Remove data for that domain only.&lt;/li&gt;
&lt;li&gt;Reload and sign in again if necessary.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;You can also open Chrome Settings, go to &lt;strong&gt;Privacy and security&lt;/strong&gt;, open the site-data list, search for the exact domain, and remove that one result.&lt;/p&gt;

&lt;p&gt;Chrome changes labels from time to time, but the important rule is stable: select the domain. Do not use the browser-wide &lt;strong&gt;Delete browsing data&lt;/strong&gt; flow for a one-site problem.&lt;/p&gt;

&lt;h2&gt;
  
  
  What a site-data reset can remove
&lt;/h2&gt;

&lt;p&gt;Depending on the route you use, Chrome can remove the selected website’s:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;cached assets&lt;/li&gt;
&lt;li&gt;cookies and session state&lt;/li&gt;
&lt;li&gt;local storage and IndexedDB&lt;/li&gt;
&lt;li&gt;service-worker data&lt;/li&gt;
&lt;li&gt;saved permissions&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Unrelated domains stay outside the operation.&lt;/p&gt;

&lt;h2&gt;
  
  
  Will this sign me out?
&lt;/h2&gt;

&lt;p&gt;It may sign you out of the website you are repairing. That site’s authentication cookie can be part of the deleted data.&lt;/p&gt;

&lt;p&gt;It should not sign you out of unrelated websites when you target only the affected domain. Be careful with services that share a parent domain or a federated login.&lt;/p&gt;

&lt;h2&gt;
  
  
  If the site works in Incognito but not normal Chrome
&lt;/h2&gt;

&lt;p&gt;That difference is useful evidence, not a diagnosis by itself. Incognito starts with a cleaner local state and usually runs a different extension set. The cause could be:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;corrupted cookies or local storage&lt;/li&gt;
&lt;li&gt;stale cached assets&lt;/li&gt;
&lt;li&gt;a service worker&lt;/li&gt;
&lt;li&gt;an extension conflict&lt;/li&gt;
&lt;li&gt;a saved permission&lt;/li&gt;
&lt;li&gt;a server, DNS, redirect, or CDN issue that appears differently by session&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Clearing the selected site’s data tests the local-state branch. If it does not help, test extensions next and then separate browser-side issues from server-side ones.&lt;/p&gt;

&lt;h2&gt;
  
  
  A one-click option
&lt;/h2&gt;

&lt;p&gt;I built two current-site actions into TabVitals because Chrome’s manual route is easy to forget and its labels move between versions:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Fix this site&lt;/strong&gt; for the lighter first attempt&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Full Reset&lt;/strong&gt; for a deeper cleanup when the first step fails&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;TabVitals selects the active site automatically and keeps unrelated browser sessions outside the target. Full Reset can still sign you out of the selected site.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;Disclosure:&lt;/strong&gt; TabVitals is my product. The beta is currently free and available through the &lt;a href="https://chromewebstore.google.com/detail/ljimhionelboehpfhipedoepaiiamdof" rel="noopener noreferrer"&gt;official Chrome Web Store&lt;/a&gt;.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h2&gt;
  
  
  When not to reset a site
&lt;/h2&gt;

&lt;p&gt;Do not run a deep reset until you have saved unsent forms and confirmed that you can sign in again. A local reset is also the wrong tool when the same failure occurs on several devices or the website itself is down.&lt;/p&gt;

&lt;h2&gt;
  
  
  Quick decision tree
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Stale page only?&lt;/strong&gt; Try a hard reload.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;One site broken in the normal profile?&lt;/strong&gt; Clear that site’s data.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Works only in Incognito?&lt;/strong&gt; Test site data, then extensions and permissions.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Broken everywhere?&lt;/strong&gt; Check the service, network, DNS, and server/CDN state.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Need the same one-site repair repeatedly?&lt;/strong&gt; Consider a current-site tool, but verify its permissions and privacy behavior first.&lt;/li&gt;
&lt;/ol&gt;

&lt;h2&gt;
  
  
  FAQ
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Can I clear only one site without deleting Chrome history?
&lt;/h3&gt;

&lt;p&gt;Yes. Use the site controls or search for the domain in Chrome’s site-data list.&lt;/p&gt;

&lt;h3&gt;
  
  
  Will other accounts stay signed in?
&lt;/h3&gt;

&lt;p&gt;They remain outside a correctly targeted domain reset. The affected site may sign out.&lt;/p&gt;

&lt;h3&gt;
  
  
  Does clearing local data purge a CDN cache?
&lt;/h3&gt;

&lt;p&gt;No. Browser data and server/CDN cache are different layers.&lt;/p&gt;

&lt;h3&gt;
  
  
  Is a Chrome extension necessary?
&lt;/h3&gt;

&lt;p&gt;No. The manual method works. A trustworthy extension can reduce the repeated steps, but it should explain its permissions and target only the selected site.&lt;/p&gt;




&lt;p&gt;&lt;em&gt;Originally published in the &lt;a href="https://tabvitals.com/clear-cache-for-one-website" rel="noopener noreferrer"&gt;TabVitals guide&lt;/a&gt;. TabVitals is my product.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>productivity</category>
      <category>tutorial</category>
      <category>chromeextension</category>
    </item>
  </channel>
</rss>
