Page Capture

pageCapture
Medium RiskCategory: Browser UIView Official Docs

Install Warning

"Read and change all your data on all websites you visit."

Technical Context

Grants access to the chrome.pageCapture API for saving complete web pages as MHTML archives. This captures the full page content including images and styles in a single file.

What This Means For You

The extension can save entire web pages as files that you can open later, even offline. The saved pages include all images and formatting.

Related APIs

This permission enables access to these Chrome APIs:

chrome.pageCapture

Common Use Cases

  • Web archivers
  • Research tools
  • Offline readers

How to Declare in manifest.json

Add the "pageCapture" permission to your extension manifest:

{
  "manifest_version": 3,
  "name": "My Extension",
  "permissions": [
    "pageCapture"
  ]
}

What Users Will See

When users install your extension, Chrome will display this warning:

This extension can:

"Read and change all your data on all websites you visit."

Related Permissions