onStateChanged
Fires when the captive portal state changes.
Syntax
browser.captivePortal.onStateChanged.addListener(callback)
browser.captivePortal.onStateChanged.removeListener(listener)
browser.captivePortal.onStateChanged.hasListener(listener)
Events have three functions:
addListener(callback)-
Adds a listener to this event.
removeListener(listener)-
Stop listening to this event. The
listenerargument is the listener to remove. hasListener(listener)-
Check whether
listeneris registered for this event. Returnstrueif it is listening,falseotherwise.
addListener syntax
Parameters
callback-
Function that is called when this event occurs. The function is passed the following arguments:
details-
stringThe captive portal state, being one ofunknown,not_captive,unlocked_portal, orlocked_portal.
Examples
Handle a change in captive portal status:
function handlePortalStatus(portalstatusInfo) {
console.log("The portal status is now: " + portalstatusInfo.details);
}
browser.captivePortal.onStateChanged.addListener(handlePortalStatus)
Browser compatibility
BCD tables only load in the browser