Proxy

proxy
High RiskCategory: Web Traffic ControlView Official Docs

Install Warning

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

Technical Context

Grants full control over Chrome's proxy settings, allowing the extension to route all browser traffic through specified proxy servers. This affects all network requests from all tabs.

What This Means For You

The extension can redirect all your internet traffic through a different server before it reaches websites. This is powerful for privacy but means the proxy server sees all your browsing.

Related APIs

This permission enables access to these Chrome APIs:

chrome.proxy

Common Use Cases

  • VPN extensions
  • Privacy tools
  • Network debugging

⚠ Red Flags When Combined With

How to Declare in manifest.json

Add the "proxy" permission to your extension manifest:

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

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."

Related Permissions