chrome.system.cpu Stay organized with collections Save and categorize content based on your preferences.
Description
Use thesystem.cpu API to query CPU metadata.
Permissions
system.cpuTypes
CpuInfo
Properties
- archName
string
The architecture name of the processors.
- features
string[]
A set of feature codes indicating some of the processor's capabilities. The currently supported codes are "mmx", "sse", "sse2", "sse3", "ssse3", "sse4_1", "sse4_2", and "avx".
- modelName
string
The model name of the processors.
- numOfProcessors
number
The number of logical processors.
- processors
Information about each logical processor.
- temperatures
number[]
Chrome 60+List of CPU temperature readings from each thermal zone of the CPU. Temperatures are in degrees Celsius.
Currently supported on Chrome OS only.
CpuTime
Properties
- idle
number
The cumulative time spent idle by this processor.
- kernel
number
The cumulative time used by kernel programs on this processor.
- total
number
The total cumulative time for this processor. This value is equal to user + kernel + idle.
- user
number
The cumulative time used by userspace programs on this processor.
ProcessorInfo
Properties
- usage
Cumulative usage info for this logical processor.
Methods
Except as otherwise noted, the content of this page is licensed under theCreative Commons Attribution 4.0 License, and code samples are licensed under theApache 2.0 License. For details, see theGoogle Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2025-08-11 UTC.