I developed a Chrome-Extension and want to know if it is possible to get CPU usage of any tab in Chrome (please see the image)? I saw a few questions which are very old. Maybe there is some new techniques to get the CPU usage for each tab.
It is possible. You need to request the permission: "processes" first in your manifest.json
with something like:
{
"name": "My extension...",
...
"permissions": [ "processes" ],
...
}
If you are on dev-channel you'll have chrome.processes available. On other channels the extensions will be rejected with an error saying:
'processes' requires dev channel or newer, but this is the stable channel.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With