Version 1.2.0 • June 9, 2025
Measure, visualize & optimize your page-load performance—live, right from your browser toolbar.
Load Time Tracker is a lightweight Chrome extension crafted for developers and QA teams to monitor real-world page-load durations. With one click, you can track any site, see a live badge timer as your page loads, and review historical aggregates over the last hour, day, week, month, and year. All data is stored locally—no external servers or third-party analytics.
- One-click tracking: Add the current domain to your watch list with the “+” button in the popup.
- Live badge timer: See a millisecond-precision timer counting up on your extension icon while the page loads.
- Accurate final measurements: Captures precise load durations via the Performance Timing API, with a timestamp fallback.
- Sliding-window aggregates: Automatically compute total load time over the last hour, day, week, month, and year; windows reset at each rollover.
- Per-site insights: In the popup, view for each domain:
- Now: live or most recent load duration (aggregates across multiple tabs for the same domain).
- Avg: average load time across recorded loads.
- Reloads: total number of logged load events.
- H / D / W / M / Y: total load time over sliding windows (Hour, Day, Week, Month, Year).
- Global totals: Combined H/D/W/M summary for all monitored domains.
- Favicon scraping: Displays each site’s real favicon (harvested from
<link rel="icon">
). - Automatic pruning: Logs older than 1 year are cleared to keep storage usage minimal.
- Robust multi-tab handling:
- Tracks multiple tabs for the same domain independently.
- Automatically stops tracking when the last tab for a domain is closed.
- Dead tab cleanup: Automatically clears stuck counters for tabs that no longer exist.
- Privacy-first storage: Everything lives in
chrome.storage.local
under your profile.
You can install Load Time Tracker in two ways:
- Visit the Chrome Web Store page.
- Click Add to Chrome.
- The Load Time Tracker icon will appear in your toolbar—click to open the popup and start tracking.
- Download the latest release ZIP (
application.zip
) from this repository’s Releases. - Unzip the file to a local folder.
- In Chrome, navigate to chrome://extensions and enable Developer mode.
- Click Load unpacked and select the
application/
folder. - The Load Time Tracker icon will appear in your toolbar—click to open the popup and start tracking.
YourRepo/
├── application/ # Chrome extension source files
│ ├── background.js # Service worker: navigation event handlers & logging
│ ├── content.js # Content script: favicon scraping
│ ├── manifest.json # Extension manifest (MV3)
│ ├── popup.html # Popup UI markup
│ ├── popup.css # Popup styles
│ ├── popup.js # Popup logic: live loop & UI rendering
│ ├── icon-48.png # Toolbar icon
│ └── icon-128.png # Store/install icon
├── docs/ # GitHub Pages (privacy policy)
│ └── privacy.html # Hosted privacy policy
├── application.zip # Packaged extension for releases
└── README.md # This documentation
- Click the toolbar icon and press + to add the current site’s domain.
- Refresh the page—observe the live badge timer increment in real time.
- Open the popup to see:
- Now: current in-flight or last load duration (aggregates across all tabs for the same domain).
- H / D / W / M / Y: total load time over sliding windows.
- Avg and Reloads counts per domain.
- Remove a site by clicking the × next to its entry—this deletes all associated logs.
- Clone the repository:
git clone https://github.com/YourUser/YourRepo.git cd YourRepo/application
- Open Chrome’s Extensions page (
chrome://extensions
) in Developer mode. - Click Load unpacked and select this directory.
- Modify source files as needed, then click Reload under the extension entry.
- Use the browser DevTools console under Service Worker (background.js) or Popup to debug.
- Local-only storage: All timing data and favicons are stored in
chrome.storage.local
. - No external sharing: No data is transmitted beyond your browser.
- Minimal permissions:
storage
webNavigation
activeTab
scripting
- Host access to
<all_urls>
for pages you choose to track.
See our full Privacy Policy for details.
Contributions, issues, and feature requests are welcome! Please open an issue or submit a pull request on GitHub.
This project is licensed under the MIT License. See LICENSE for details.
© 2025 Nikkolas Diehl. All rights reserved.