Mihata
Work Efficiency (DX)2026.07.13

Online Stopwatch With Laps: 4 Free Tools Compared (2026)

Looking for a free online stopwatch that actually saves your lap times? Several browser-based stopwatches offer lap and split recording with 0.01-second precision, work on both phone and desktop with zero installs, and cost nothing. The catch: they don't all let you get the data back out. Whether you can export laps to CSV, run more than one timer at once, or trust the count while the tab is in the background varies a lot from tool to tool.

We checked four free options directly on their official pages — lap/split saving, CSV or clipboard export, multiple simultaneous timers, 0.01-second precision, and no-install support for phone and PC — and we're flagging what we couldn't confirm rather than guessing. We also cover the one behavior most people never think to test: what happens to the count when you switch tabs or lock your phone mid-timing.

The Quick Answer: Pick by Whether You Need to Export Laps

Any of the tools below can record a lap. The real decision point is what you do with the data afterward. If you're going to paste laps into a spreadsheet for averages or a chart, pick a tool with confirmed CSV or clipboard export — don't assume it exists just because a stopwatch has a "Lap" button. If you just need to glance at a split and move on, the fastest option wins instead.

If you need to time more than one thing at once — say, two runners or two batches in the oven — check whether the tool supports multiple concurrent stopwatches before you start. Most free online stopwatches are built for one timer per page, so the reliable workaround is simply opening a separate browser tab per subject rather than forcing one page to do double duty.

Free Online Stopwatch With Laps: Comparison (2026)

This reflects what each official page states. Where a feature isn't documented, we mark it "unconfirmed" rather than assuming it's missing.

Tool

Lap Saving

Export (CSV/Copy)

Multiple Timers

0.01s Precision

No Install, Phone/PC

Online Stopwatch (online-stopwatch.com) — Split Lap Timer

Yes — records laps and splits

Unconfirmed

Unconfirmed

Yes — selectable display format

Yes

vClock

Yes — autosaves to the browser

Unconfirmed

Unconfirmed

Yes — choose .00 or .000 display

Yes

miniwebtool Online Stopwatch

Yes — unlimited laps

Yes — Copy (tab-separated) and CSV download

Unconfirmed

Yes — built on performance.now()

Yes

Google's built-in search stopwatch

No lap function

No

No — one timer only

Yes — hundredths of a second

Yes — just search for it

The short version: pick an export-ready tool if you plan to analyze the data later, and reach for Google's built-in stopwatch if you just want a number, fast. Details on each below.

How Each Tool Performs (Checked on the Official Pages)

Online Stopwatch (online-stopwatch.com) — Split Lap Timer

A long-running free stopwatch site with a dedicated Split Lap Timer page built specifically for recording laps and splits. It supports a fullscreen view and switchable display formats, and it runs with no install on both phone and desktop. What we couldn't confirm on the official page is whether recorded laps can be exported as CSV or copied out — if your workflow depends on getting the data into a spreadsheet, test that on the live page before you commit to it for anything important.

vClock

A clean, no-frills online clock and stopwatch. The "Lap" button adds the current time to a running lap list, and both the value and the lap list are automatically saved in your browser — so an accidental reload doesn't wipe your session. It measures in milliseconds and lets you choose the display precision, from whole seconds down to .000 (milliseconds). CSV export and running multiple stopwatches at once aren't documented on the official page, so treat those as unconfirmed if you need them.

miniwebtool Online Stopwatch

The clearest option for exporting data. It records unlimited laps and splits (segment time and cumulative time together), and you can send the data out two ways: "Copy" puts it on your clipboard as a tab-separated table, and "CSV" downloads a file you can open directly in a spreadsheet. The timer runs on the browser's high-resolution performance.now() API with absolute-time calculations, and the tool's own documentation states it stays accurate across tab switches, system sleep, and CPU load, with no drift or skipped ticks. If you plan to crunch the numbers in Excel or Google Sheets afterward, this is the one built for that.

Google's Built-In Search Stopwatch

Nothing beats it for sheer convenience: type "stopwatch" into Google Search and a stopwatch with start/stop, reset, and fullscreen appears instantly, ticking down to the hundredth of a second. The catch is that it has no lap function as of mid-2026 — it only tracks one running total. There's no export and no way to run more than one at a time, so use it for a single quick timing and reach for a dedicated tool the moment you need splits.

At Mihata, we also build free browser-based clocks and timers for focused work — if you're already shopping for a quick tool you can open in one tab, it's worth a look.

How to Use a Lap Stopwatch for Real Tasks

Running and Swimming Intervals

Interval training gets much easier to review when you capture both the per-rep time (lap) and the running total (split). Start the timer, then hit "Lap" at the end of each rep or length — the segment times stack up automatically. A tool that color-codes faster and slower laps makes it obvious at a glance where you faded in the back half. If you want averages or a standard deviation later, export-ready tools save you from retyping numbers by hand.

Lab Experiments and Kitchen Timing

Chemistry procedures, cooking, fermentation, and curing all have "time since start" moments that matter down to the hundredth of a second. Logging a lap at each milestone gives you a clean record of exactly how long each stage took. For messy-hands situations, fullscreen mode and a stopwatch that keeps counting correctly while you're away from the screen (more on that below) both come in handy.

Workflow Time-and-Motion Studies

Process improvement usually starts with a simple question: which step is actually eating the time? The method is just as simple — start the timer when the task begins, and hit "Lap" every time the step changes. Pack → label → inspect, for example, each becomes its own lap. Export that to CSV and you can spot the bottleneck step in the numbers instead of guessing. Run the same task a few times and average the laps to see how much of the time is noise versus a real bottleneck.

Does It Keep Counting When the Tab Is Hidden or the Phone Is Locked?

Every tool above runs with no install, on the same URL, whether you're on a phone or a desktop — no app updates, no account. But because they're all running in a browser, there's one behavior worth understanding: does the count stay accurate when you switch away from the tab or lock your phone's screen mid-timing?

The technical reason this matters: browsers deliberately throttle background-tab timers like setInterval and setTimeout. Chrome, starting in version 88, checks short-interval timers in hidden tabs about once per second, and throttles chained timers down to roughly once per minute once a tab has been hidden for more than five minutes. Firefox and Safari apply similar limits. In other words, a naive stopwatch that simply "adds a tick every 0.01 seconds" can lose ticks in the background and undercount the actual elapsed time.

The fix most well-built stopwatches use is to store the start timestamp and calculate elapsed time as "now minus start" on every display update, rather than accumulating ticks. With that approach, even if the on-screen number stops refreshing while the tab is hidden, it snaps back to the correct elapsed time the moment you return (miniwebtool's documentation explicitly states it uses this absolute-time method to stay accurate through tab switches). The visible number may freeze temporarily, but the underlying math — a wall-clock difference — never drifts.

That said, this varies by tool. Implementations that don't use the timestamp method, or phones where locking the screen suspends the browser entirely, can behave differently. Before relying on any of these for a measurement that actually matters, test it yourself: leave it running in the background for a minute or two, come back, and check it against a real clock. Where a feature isn't documented, treat it as unconfirmed and verify by hand — that's the safest habit for anything time-critical.

When a Different Timer Tool Fits Better

If you don't need laps or splits and just want to watch time tick up, an online count-up timer gives you a cleaner screen than a full stopwatch. Going the other direction — counting down to a deadline — a guide to picking a free timer app covers that comparison.

For task-specific needs, a few more purpose-built options: presenting or running a meeting where people need to read the time from across the room calls for a full-screen online timer, and cycling focused work in 25-minute blocks is a better fit for a browser-based Pomodoro timer than a general stopwatch.

FAQ

What's the difference between a lap and a split time?

A lap is the time for one segment since the previous lap. A split is the cumulative time since the timer started. Most online stopwatches with a lap feature record both in the same row each time you tap the button.

Does an online stopwatch keep timing correctly if my phone locks or I switch tabs?

Tools that calculate elapsed time as the difference between the current time and a stored start timestamp will show the correct total the moment you return, even if the display froze while hidden. This varies by tool, though, so test any stopwatch you rely on by leaving it running in the background for a minute and checking it against a real clock.

Can I export recorded laps to a spreadsheet?

It depends on the tool. Of the four covered here, miniwebtool supports both clipboard copy (tab-separated) and direct CSV download. The others don't document an export feature, so check the live page if that's a requirement.

Do any of these require an app install?

No. All four run in the browser at a single URL and work the same way on phone or desktop, with nothing to install and no account needed.

Can Google's built-in stopwatch record laps?

Not as of mid-2026 — it only tracks a single running total. For lap or split recording, use one of the dedicated free online stopwatches covered above instead.

Feel free to contact us

Whether you have questions about AI, IT, or design, need a consultation,
or want to request a quote — don't hesitate to reach out.

Contact Us