chrome.power

Description: Use the chrome.power API to override the system's power management features.
Availability: Since Chrome 35.
Permissions: "power"

Usage

By default, operating systems dim the screen when users are inactive and eventually suspend the system. With the power API, an app or extension can keep the system awake.

Using this API, you can specify the Level to which power management is disabled. The "system" level keeps the system active, but allows the screen to be dimmed or turned off. For example, a communication app can continue to receive messages while the screen is off. The "display" level keeps the screen and system active. E-book and presentation apps, for example, can keep the screen and system active while users read.

When a user has more than one app or extension active, each with its own power level, the highest-precedence level takes effect; "display" always takes precedence over "system". For example, if app A asks for "system" power management, and app B asks for "display", "display" is used until app B is unloaded or releases its request. If app A is still active, "system" is then used.

Summary

Types
Level
Methods
requestKeepAwake chrome.power.requestKeepAwake( Level level)
releaseKeepAwake chrome.power.releaseKeepAwake()

Types

Level

Enum
"system"
Prevent the system from sleeping in response to user inactivity.
"display"
Prevent the display from being turned off or dimmed or the system from sleeping in response to user inactivity.

Methods

requestKeepAwake

chrome.power.requestKeepAwake( Level level)

Requests that power management be temporarily disabled. |level| describes the degree to which power management should be disabled. If a request previously made by the same app is still active, it will be replaced by the new request.

Parameters
Level level

releaseKeepAwake

chrome.power.releaseKeepAwake()

Releases a request previously made via requestKeepAwake().