runtime.onInstalled

Fired when the extension is first installed, when the extension is updated to a new version, and when the browser is updated to a new version.

Note that runtime.onInstalled is not the same as management.onInstalled. The runtime.onInstalled event is fired only for your extension. The browser.management.onInstalled event is fired for any extensions.

Syntax

browser.runtime.onInstalled.addListener(listener)
browser.runtime.onInstalled.removeListener(listener)
browser.runtime.onInstalled.hasListener(listener)

Events have three functions:

addListener(callback)
Adds a listener to this event.
removeListener(listener)
Stop listening to this event. The listener argument is the listener to remove.
hasListener(listener)
Checks whether a listener is registered for this event. Returns true if it is listening, false otherwise.

addListener syntax

Parameters

function

Callback function that will be called when this event occurs. The function will be passed the following arguments:

details
An object with the following properties:
idOptional
string. The ID of the imported shared module extension that updated. This is present only if the reason value is shared_module_update.
previousVersionOptional
string. The previous version of the extension that was just updated. This is present only if the reason value is update.
reason
An runtime.OnInstalledReason value stating the reason that this event is being dispatched.
temporary
boolean. True if the add-on was installed temporarily (for example, using the "about:debugging" page in Firefox). False otherwise.

Browser compatibility

ChromeEdgeFirefoxFirefox for AndroidOpera
Basic support22Yes52 152 115
details.id22YesNoNo15
details.previousVersion22Yes555515
details.reason22Yes525215
details.temporaryNoNo5555No
1. Before version 55, this event is not triggered for temporarily installed add-ons.

Examples

When the extension is installed, log the install reason and open http://chilloutandwatchsomecatgifs.com/:

function handleInstalled(details) {
  console.log(details.reason);
  browser.tabs.create({
    url: "http://chilloutandwatchsomecatgifs.com/"
  });
}
browser.runtime.onInstalled.addListener(handleInstalled);

Acknowledgements

This API is based on Chromium's chrome.runtime API. This documentation is derived from runtime.json in the Chromium code.

Microsoft Edge compatibility data is supplied by Microsoft Corporation and is included here under the Creative Commons Attribution 3.0 United States License.

Document Tags and Contributors

 Contributors to this page: wbamberg, andrewtruongmoz, delete12345, Makyen, chrisdavidmills
 Last updated by: wbamberg,