Fires when a theme supplied as a browser extension is applied or removed. Specifically:
theme.update() or theme.reset()
Note that this event is not fired for changes to the built-in themes.
browser.theme.onUpdated.addListener(listener) browser.theme.onUpdated.removeListener(listener) browser.theme.onUpdated.hasListener(listener)
Events have three functions:
addListener(listener)removeListener(listener)listener argument is the listener to remove.hasListener(listener)listener is registered for this event. Returns true if it is listening, false otherwise.callbackFunction that will be called when this event occurs. The function will be passed the following arguments:
updateInfoobject. An object containing two properties:
themeobject. If the event fired because an extension-supplied theme was removed, this will be an empty object. If it fired because an extension-supplied theme was applied, then it will be a theme.Theme object representing the theme that was applied.windowIdOptional
integer. The ID of the window for which theme has been updated. If this property is not present, it means that the theme was updated globally.| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | WebView Android | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | |
onUpdated |
No |
No |
58 |
? |
No |
No |
? |
? |
No |
? |
? |
? |
function handleUpdated(updateInfo) { if (updateInfo.theme.colors) { console.log(`Theme was applied: ${updateInfo.theme}`); } else { console.log(`Theme was removed`); } } browser.theme.onUpdated.addListener(handleUpdated);
© 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/theme/onUpdated