windows.onRemoved
Fired when a window is closed.
In this article
Syntax
js
browser.windows.onRemoved.addListener(listener)browser.windows.onRemoved.removeListener(listener)browser.windows.onRemoved.hasListener(listener)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)Checks whether a
listeneris registered for this event. Returnstrueif it is listening,falseotherwise.
addListener syntax
>Parameters
Examples
Log the IDs of windows as they are removed.
js
browser.windows.onRemoved.addListener((windowId) => { console.log(`Closed window: ${windowId}`);});Browser compatibility
Note:This API is based on Chromium'schrome.windows API. This documentation is derived fromwindows.json in the Chromium code.