Path: blob/main/files/en-us/mozilla/add-ons/webextensions/api/idle/querystate/index.md
6552 views
------{{AddonSidebar()}}
Returns "locked" if the system is locked, "idle" if the user has not generated any input for a specified number of seconds, or "active" otherwise.
This is an asynchronous function that returns a Promise.
Syntax
Parameters
detectionIntervalInSeconds:
integer. The system is considered idle ifdetectionIntervalInSecondsseconds have elapsed since the last user input detected.
Return value
A Promise that will be fulfilled with an {{WebExtAPIRef('idle.IdleState')}} string, indicating the current state.
Browser compatibility
{{Compat}}
Examples
In this simple snippet, we call queryState() and then check if the returned newState is idle or active, logging a message as appropriate. Because we have specified a detectionIntervalInSeconds of 15, an idle state will only be reported if there has been no user activity for at least 15 seconds
{{WebExtExamples}}
Note: This API is based on Chromium's
chrome.idleAPI. This documentation is derived fromidle.jsonin the Chromium code.