Movatterモバイル変換


[0]ホーム

URL:


  1. Mozilla
  2. Add-ons
  3. Browser extensions
  4. JavaScript APIs
  5. windows
  6. windows.onRemoved

windows.onRemoved

Fired when a window is closed.

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. Thelistener argument is the listener to remove.

hasListener(listener)

Checks whether alistener is registered for this event. Returnstrue if it is listening,false otherwise.

addListener syntax

Parameters

listener

The function called when this event occurs. The function is passed this argument:

windowId

integer. ID of the window that was closed.

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.

Help improve MDN

Learn how to contribute

This page was last modified on byMDN contributors.


[8]ページ先頭

©2009-2025 Movatter.jp