How to Take a Scrolling / Full-Page Screenshot on Chromebook

ChromeOS still doesn't ship a native scrolling screenshot tool — the built-in Screen Capture only grabs what's currently visible. The good news: Chrome itself has a hidden full-page capture command, and there are a few solid extensions for trickier cases. Here's the full picture.

Why ChromeOS doesn't have native scrolling capture

The system-level Screen Capture tool runs at the compositor level — it sees pixels on screen, not page DOM. Capturing scrolling content requires the browser to render every part of the page, which only the browser process can do. That's why scrolling capture is a Chrome browser feature, not a ChromeOS feature.

Method 1: Chrome DevTools (no extension)

The fastest, safest way to grab a full-page screenshot on Chromebook — no extension needed, no permissions to grant. Works in regular Chrome and on managed Chromebooks where extensions are blocked.

  1. Step 1: Open DevTools on the target page

    Navigate to the webpage you want to capture. Press Ctrl + Shift + I to open Chrome DevTools. The dev panel docks to the side or bottom of the window.

    Chrome DevTools open on a webpage

    Chrome DevTools open on a webpage

  2. Step 2: Open the Command Menu

    Inside DevTools, press Ctrl + Shift + P to open the Command palette. A search box appears at the top of DevTools.

    Chrome DevTools Command palette

    Chrome DevTools Command palette

  3. Step 3: Run "Capture full size screenshot"

    Type "full size screenshot" — Chrome filters to the matching command. Press Enter. Chrome scrolls the page top-to-bottom, captures every section, and downloads a single PNG of the entire scrollable height to your Downloads folder.

    Running the Capture full size screenshot command

    Running the Capture full size screenshot command

Method 2: Browser extensions

Use an extension when DevTools fails (long pages with lazy loading, sticky headers, or scroll-jacking sites) or when you want extra features like annotation. Extensions to consider:

Extension Strength
GoFullPage Most popular full-page extension. One click captures the entire page, exports as PNG or PDF. No account required.
Awesome Screenshot & Screen Recorder Full-page capture plus inline annotation tools. Has a free tier and pushes paid cloud features.
Fireshot Captures full page or selected region, supports saving as PDF — useful for archiving long articles.

Install from the Chrome Web Store. Grant access only on the page you're capturing (right-click the extension → "On click" or "On this site") to limit data exposure.

DevTools vs extension — which to use

Situation Best option
One-off capture, simple pageDevTools (Ctrl + Shift + I)
Managed/school Chromebook, extensions blockedDevTools (always available)
Page with sticky headers or floating widgetsGoFullPage
Need PDF outputFireshot or Chrome Print to PDF
Captures multiple times per dayExtension with toolbar shortcut

Tips to avoid cut-off captures

Annotate your scrolling capture

A 6,000-pixel-tall full-page screenshot is hard to share without callouts. Drop it into our free in-browser annotator to add arrows, text, and blur — then export the marked-up version.

  • Add arrows, text, rectangles, and circles to any image
  • Blur sensitive information with the mosaic tool
  • All processing happens in your browser — no upload to any server
  • Download your annotated image as PNG or JPG
Try the Free Annotator — No Install Works in any browser, 100% private, no signup

Scrolling screenshot FAQ

Does Chromebook have a built-in scrolling screenshot tool?

No. The native Screen Capture tool only captures what's visible on screen at the moment of capture. For a full webpage including content below the fold, you have to use Chrome DevTools or a browser extension.

What's the easiest way to capture a full webpage on Chromebook?

Chrome DevTools has a built-in full-page screenshot feature that requires no extensions. Open the page, press <strong>Ctrl + Shift + I</strong>, then <strong>Ctrl + Shift + P</strong> to open the command menu, type "full size screenshot" and press Enter. Chrome captures the entire scrollable page and downloads it as a PNG.

Are scrolling-screenshot extensions safe on Chromebook?

Stick to extensions with high install counts (50,000+), recent updates, and reviews from the past year. Granting page-content permission is unavoidable for scrolling capture, but limit it to one trusted extension. The DevTools method has zero risk because it's part of Chrome itself.

Why is my full-page capture cut off?

Pages with infinite scroll (Twitter, Facebook feeds), lazy-loaded images, or sticky headers can confuse capture tools. Scroll to the bottom of the page once before capturing to force lazy-loaded content. For sticky headers, some extensions have a "hide fixed elements" toggle.

Can I capture a scrolling area inside a webpage (like a chat or table)?

DevTools' full-page capture grabs the whole document, not nested scroll containers. To capture an inner scroll area, expand the container by setting its CSS height to <code>auto</code> in DevTools, then capture, then revert. It's a manual workaround but works on most sites.

Related guides