<?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: I_See_You</title>
    <description>The latest articles on DEV Community by I_See_You (@i_see_you).</description>
    <link>https://dev.to/i_see_you</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.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3925867%2Fc0febf92-a536-4335-89c9-626bb8f45caa.jpg</url>
      <title>DEV Community: I_See_You</title>
      <link>https://dev.to/i_see_you</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/i_see_you"/>
    <language>en</language>
    <item>
      <title>I Built a Chrome Extension to Track How Long You Actually Spend on Each Tab</title>
      <dc:creator>I_See_You</dc:creator>
      <pubDate>Mon, 11 May 2026 21:17:49 +0000</pubDate>
      <link>https://dev.to/i_see_you/i-built-a-chrome-extension-to-track-how-long-you-actually-spend-on-each-tab-2d1k</link>
      <guid>https://dev.to/i_see_you/i-built-a-chrome-extension-to-track-how-long-you-actually-spend-on-each-tab-2d1k</guid>
      <description>&lt;h2&gt;
  
  
  The Problem
&lt;/h2&gt;

&lt;p&gt;You open a tab to "quickly check" something. Forty minutes later you're still there.&lt;/p&gt;

&lt;p&gt;Browser history tells you &lt;em&gt;what&lt;/em&gt; you visited. It never tells you &lt;em&gt;how long&lt;/em&gt; you stayed. I kept losing track of time across research sessions, YouTube rabbit holes, and work dashboards — so I built something to fix it.&lt;/p&gt;




&lt;h2&gt;
  
  
  Introducing Tab Timer
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Tab Timer&lt;/strong&gt; is a Chrome extension that tracks time spent on any website and shows it live via a small floating widget directly on the page — no need to click anything, it's just always there.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://chromewebstore.google.com/detail/tab-timer-website-time-tr/jecijahceghcehppgdadndecenoajpkc?authuser=0&amp;amp;hl=en" rel="noopener noreferrer"&gt;Install on Chrome Web Store&lt;/a&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  Key Features
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Floating On-Page Widget
&lt;/h3&gt;

&lt;p&gt;A draggable timer widget lives right on the page. Choose from 4 sizes (Extra Compact to Large). You can customize which buttons show — pause, reset, and lock — or hide them entirely.&lt;/p&gt;

&lt;h3&gt;
  
  
  Focus Mode
&lt;/h3&gt;

&lt;p&gt;When enabled, only the &lt;strong&gt;currently active tab's timer runs&lt;/strong&gt;. Switch tabs, and the previous one pauses automatically. This gives you an honest measure of time actually spent looking at something, not just time it sat open.&lt;/p&gt;

&lt;h3&gt;
  
  
  Lock Timers
&lt;/h3&gt;

&lt;p&gt;Refreshing a page normally resets a timer. Lock a tab's timer and it survives reloads. New timers start locked by default — so a page refresh doesn't wipe your session time.&lt;/p&gt;

&lt;h3&gt;
  
  
  Per-Site Control
&lt;/h3&gt;

&lt;p&gt;Enable Tab Timer only on sites you want to track, or flip on "enable all sites" to track everything. You stay in control of what gets monitored.&lt;/p&gt;

&lt;h3&gt;
  
  
  Analytics
&lt;/h3&gt;

&lt;p&gt;Tab Timer records your time locally and gives you:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Daily time breakdowns per site&lt;/li&gt;
&lt;li&gt;Top sites by time spent&lt;/li&gt;
&lt;li&gt;Trends over time&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;em&gt;(Insert analytics screenshot here)&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;All data is stored in Chrome's local storage. &lt;strong&gt;Nothing is ever sent to any server.&lt;/strong&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  How I Built It
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Manifest V3&lt;/strong&gt; — built on the latest Chrome extension platform&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Service Worker&lt;/strong&gt; for background timer tracking&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Chrome Storage API&lt;/strong&gt; for persisting timers and analytics locally&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Content Scripts&lt;/strong&gt; for injecting the floating widget into pages&lt;/li&gt;
&lt;li&gt;No frameworks, no build tools — plain JS, HTML, and CSS&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The trickiest part was handling the Focus Mode logic: pausing timers across all tabs when the active tab changes, while making sure timers survive tab reloads and browser restarts without drifting.&lt;/p&gt;




&lt;h2&gt;
  
  
  Privacy
&lt;/h2&gt;

&lt;p&gt;No accounts. No servers. No tracking of your data by me.&lt;/p&gt;

&lt;p&gt;Everything Tab Timer records stays in your browser's local storage and never leaves your device.&lt;/p&gt;




&lt;h2&gt;
  
  
  What's Next
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Time limits and alerts (e.g. notify after 30 min on a site)&lt;/li&gt;
&lt;li&gt;Weekly email/export reports&lt;/li&gt;
&lt;li&gt;Dark mode widget theme&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  Try It
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://chromewebstore.google.com/detail/tab-timer-website-time-tr/jecijahceghcehppgdadndecenoajpkc?authuser=0&amp;amp;hl=en" rel="noopener noreferrer"&gt;Install Tab Timer from the Chrome Web Store&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;I'd love feedback, bug reports, or feature ideas — drop them in the comments below!&lt;/p&gt;

</description>
      <category>showdev</category>
      <category>productivity</category>
      <category>webdev</category>
      <category>extensions</category>
    </item>
    <item>
      <title>I Built a Chrome Extension to Track How Long You Actually Spend on Each Tab</title>
      <dc:creator>I_See_You</dc:creator>
      <pubDate>Mon, 11 May 2026 21:17:49 +0000</pubDate>
      <link>https://dev.to/i_see_you/i-built-a-chrome-extension-to-track-how-long-you-actually-spend-on-each-tab-4k7k</link>
      <guid>https://dev.to/i_see_you/i-built-a-chrome-extension-to-track-how-long-you-actually-spend-on-each-tab-4k7k</guid>
      <description>&lt;h2&gt;
  
  
  The Problem
&lt;/h2&gt;

&lt;p&gt;You open a tab to "quickly check" something. Forty minutes later you're still there.&lt;/p&gt;

&lt;p&gt;Browser history tells you &lt;em&gt;what&lt;/em&gt; you visited. It never tells you &lt;em&gt;how long&lt;/em&gt; you stayed. I kept losing track of time across research sessions, YouTube rabbit holes, and work dashboards — so I built something to fix it.&lt;/p&gt;




&lt;h2&gt;
  
  
  Introducing Tab Timer
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Tab Timer&lt;/strong&gt; is a Chrome extension that tracks time spent on any website and shows it live via a small floating widget directly on the page — no need to click anything, it's just always there.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://chromewebstore.google.com/detail/tab-timer-website-time-tr/jecijahceghcehppgdadndecenoajpkc?authuser=0&amp;amp;hl=en" rel="noopener noreferrer"&gt;Install on Chrome Web Store&lt;/a&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  Key Features
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Floating On-Page Widget
&lt;/h3&gt;

&lt;p&gt;A draggable timer widget lives right on the page. Choose from 4 sizes (Extra Compact to Large). You can customize which buttons show — pause, reset, and lock — or hide them entirely.&lt;/p&gt;

&lt;h3&gt;
  
  
  Focus Mode
&lt;/h3&gt;

&lt;p&gt;When enabled, only the &lt;strong&gt;currently active tab's timer runs&lt;/strong&gt;. Switch tabs, and the previous one pauses automatically. This gives you an honest measure of time actually spent looking at something, not just time it sat open.&lt;/p&gt;

&lt;h3&gt;
  
  
  Lock Timers
&lt;/h3&gt;

&lt;p&gt;Refreshing a page normally resets a timer. Lock a tab's timer and it survives reloads. New timers start locked by default — so a page refresh doesn't wipe your session time.&lt;/p&gt;

&lt;h3&gt;
  
  
  Per-Site Control
&lt;/h3&gt;

&lt;p&gt;Enable Tab Timer only on sites you want to track, or flip on "enable all sites" to track everything. You stay in control of what gets monitored.&lt;/p&gt;

&lt;h3&gt;
  
  
  Analytics
&lt;/h3&gt;

&lt;p&gt;Tab Timer records your time locally and gives you:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Daily time breakdowns per site&lt;/li&gt;
&lt;li&gt;Top sites by time spent&lt;/li&gt;
&lt;li&gt;Trends over time&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;em&gt;(Insert analytics screenshot here)&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;All data is stored in Chrome's local storage. &lt;strong&gt;Nothing is ever sent to any server.&lt;/strong&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  How I Built It
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Manifest V3&lt;/strong&gt; — built on the latest Chrome extension platform&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Service Worker&lt;/strong&gt; for background timer tracking&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Chrome Storage API&lt;/strong&gt; for persisting timers and analytics locally&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Content Scripts&lt;/strong&gt; for injecting the floating widget into pages&lt;/li&gt;
&lt;li&gt;No frameworks, no build tools — plain JS, HTML, and CSS&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The trickiest part was handling the Focus Mode logic: pausing timers across all tabs when the active tab changes, while making sure timers survive tab reloads and browser restarts without drifting.&lt;/p&gt;




&lt;h2&gt;
  
  
  Privacy
&lt;/h2&gt;

&lt;p&gt;No accounts. No servers. No tracking of your data by me.&lt;/p&gt;

&lt;p&gt;Everything Tab Timer records stays in your browser's local storage and never leaves your device.&lt;/p&gt;




&lt;h2&gt;
  
  
  What's Next
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Time limits and alerts (e.g. notify after 30 min on a site)&lt;/li&gt;
&lt;li&gt;Weekly email/export reports&lt;/li&gt;
&lt;li&gt;Dark mode widget theme&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  Try It
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://chromewebstore.google.com/detail/tab-timer-website-time-tr/jecijahceghcehppgdadndecenoajpkc?authuser=0&amp;amp;hl=en" rel="noopener noreferrer"&gt;Install Tab Timer from the Chrome Web Store&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;I'd love feedback, bug reports, or feature ideas — drop them in the comments below!&lt;/p&gt;

</description>
      <category>showdev</category>
      <category>productivity</category>
      <category>webdev</category>
      <category>extensions</category>
    </item>
  </channel>
</rss>
