Path: blob/main/files/en-us/mozilla/add-ons/webextensions/api/alarms/onalarm/index.md
6581 views
------{{AddonSidebar()}}
Fired when any alarm set by the extension goes off.
Syntax
Events have three functions:
addListener(listener): Adds a listener to this event.
removeListener(listener): Stop listening to this event. The
listenerargument is the listener to remove.
hasListener(listener): Check whether
listeneris registered for this event. Returnstrueif it is listening,falseotherwise.
addListener syntax
Parameters
listener: Function that will be called when this event occurs. The function will be passed the following arguments:
alarm: {{WebExtAPIRef('alarms.Alarm')}}. The alarm that fired. Use
Alarm.nameto figure out which alarm fired.
Examples
Handle an alarm going off:
{{WebExtExamples}}
Browser compatibility
{{Compat}}
Note: This API is based on Chromium's
chrome.alarmsAPI.