alarms
Schedule code to run at a specific time in the future. This is like setTimeout()
and setInterval()
, except that those functions don't work with background pages that are loaded on demand.
Alarms do not persist across browser sessions. They are created globally across all contexts of a single extension. E.g. alarm created in background script will fire onAlarm
event in background script, options page, popup page and extension tabs (and vice versa). Alarms API is not available in Content scripts
.
To use this API you need to have the "alarms" permission.
Browser compatibility
|
Desktop |
Mobile |
|
Chrome |
Edge |
Firefox |
Internet Explorer |
Opera |
Safari |
WebView Android |
Chrome Android |
Firefox for Android |
Opera Android |
Safari on IOS |
Samsung Internet |
Alarm |
Yes |
79 |
45 |
? |
Yes |
14 |
? |
? |
48 |
? |
15 |
? |
clear |
Yes |
79 |
45 |
? |
Yes |
14 |
? |
? |
48 |
? |
15 |
? |
clearAll |
Yes |
79 |
45 |
? |
Yes |
14 |
? |
? |
48 |
? |
15 |
? |
create |
Yes |
79 |
45
45–64Alarms scheduled for a time in the past never fire.
|
? |
Yes |
14 |
? |
? |
48
48–64Alarms scheduled for a time in the past never fire.
|
? |
15 |
? |
get |
Yes |
79 |
45 |
? |
Yes |
14 |
? |
? |
48 |
? |
15 |
? |
getAll |
Yes |
79 |
45 |
? |
Yes |
14 |
? |
? |
48 |
? |
15 |
? |
onAlarm |
Yes |
79 |
45 |
? |
Yes |
14 |
? |
? |
48 |
? |
15 |
? |