Full Page Capture

a Chrome extension

Screenshots shouldn’t capture a page that’s still loading.

Most full-page screenshot tools scroll and shoot on a fixed timer. This one watches the page’s layout, network requests, and animations, and only takes the picture once they’ve actually gone still.

watching the page7s loop
  • LayoutDOM mutations
  • Networkfetch · XHR · resources
  • AnimationWeb Animations API

capture fires only when all three go quiet — or after the max-wait timeout, whichever comes first

A fixed delay doesn’t know if the page is ready. Only the page knows that.

timer-based capture

  • — scrolls, waits ~200ms, shoots
  • — catches CSS transitions mid-motion
  • — lazy images still show placeholders
  • — sticky headers repeat down the page

settle-detection capture

  • — scrolls, watches three live signals
  • — waits for animations to finish
  • — waits for images and fetches to land
  • — hides sticky headers after the first frame

How it decides

Three checks run in parallel at every scroll position. Capture only fires once all three agree — or a max-wait timeout is hit, so a page with a permanent spinner can’t stall the whole thing.

  1. 01

    Scroll

    Jumps to the next section instantly — no smooth-scroll animation to wait out.

  2. 02

    Watch

    A mutation observer, wrapped fetch/XHR calls, and the Web Animations API all report back until they've stayed quiet for a full beat.

  3. 03

    Capture

    Only then does it screenshot that section — then stitches every section into one image, accounting for device pixel ratio.

Two modes, your call

Quality

Full settle-detection on every section. Slower, but it’s the mode built to actually catch a fully-loaded page.

Fast

A fixed, adjustable delay between scrolls — for when you already know the page loads quickly and just want speed.

pricing

Try the slow, careful mode. Pay only if it’s worth it to you.

Fast mode and area selection are free forever — no account, no limit. Quality mode, the settle-detection capture, is free for your first three uses so you can see what it actually catches.

Free

$0

  • Fast mode — unlimited full-page captures
  • Area selection — unlimited
  • Quality mode (settle-detection) — first 3 captures
  • Sticky header hiding, DPR-aware stitching

Pro

$5 / 1 month

  • Everything in Free
  • Quality mode — unlimited
  • Priority fixes and new capture features
  • Supports continued development
Get Pro

Stop shipping half-loaded screenshots.

Add to Chrome — free

Chrome, Edge, and other Chromium browsers · Manifest V3