Web Request

webRequest
Medium RiskCategory: Web Traffic ControlView Official Docs

Technical Context

Enables access to the chrome.webRequest API for observing and analyzing network traffic in real-time. Without blocking permission, it provides read-only visibility into HTTP requests and responses.

What This Means For You

The extension can see the network requests your browser makes, like which images or scripts a page loads. By itself, it can only watch traffic, not change it.

Related APIs

This permission enables access to these Chrome APIs:

chrome.webRequest

Common Use Cases

  • Network analyzers
  • Debugging tools
  • Security monitors

⚠ Red Flags When Combined With

How to Declare in manifest.json

Add the "webRequest" permission to your extension manifest:

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

Related Permissions