System CPU Info

system.cpu
Low RiskCategory: System & PerformanceView Official Docs

Technical Context

Grants read-only access to the chrome.system.cpu API for querying CPU architecture, model, and usage statistics. This enables performance monitoring and optimization features.

What This Means For You

The extension can see basic information about your computer's processor, like how many cores it has. This helps it optimize its performance based on your hardware.

Related APIs

This permission enables access to these Chrome APIs:

chrome.system.cpu

Common Use Cases

  • System monitors
  • Performance optimizers

How to Declare in manifest.json

Add the "system.cpu" permission to your extension manifest:

{
  "manifest_version": 3,
  "name": "My Extension",
  "permissions": [
    "system.cpu"
  ]
}

Related Permissions