Checks to see if an update for the extension is available.
This is an asynchronous function that returns a Promise
.
var requestingCheck = browser.runtime.requestUpdateCheck()
None.
A Promise
that will be fulfilled with two arguments:
status
runtime.RequestUpdateCheckStatus
value — the result of the update check.details
Optional
object
. If status
is update_available
, this contains more information about the update. It is an object containing a single property:version
string
. The update's version.Desktop | Mobile | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | WebView Android | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | |
requestUpdateCheck |
25 |
79 |
No |
? |
15 |
No |
? |
? |
No |
? |
? |
? |
Request an update, and log the new version if one is available:
function onRequested(status, details) { console.log(status); if (status === "update_available") { console.log(details.version); } } function onError(error) { console.log(`Error: ${error}`); } var requestingCheck = browser.runtime.requestUpdateCheck(onRequested); requestingCheck.then(onRequested, onError);
Note: 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.
© 2005–2021 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Mozilla/Add-ons/WebExtensions/API/runtime/requestUpdateCheck