BrowserSetting.onChange
The BrowserSetting.onChange event is fired when the setting is changed.
On Firefox, it doesn't fire if the change has been made through about:config.
Syntax
BrowserSetting.onChange.addListener(listener)
BrowserSetting.onChange.removeListener(listener)
BrowserSetting.onChange.hasListener(listener)
Events have three functions:
addListener(listener)-
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
listener-
The function called when this event occurs. The function is passed these arguments:
details-
An
objectcontaining details of the change that occurred. Its properties are as follows:value-
The new value of the setting. The type of this property is determined by the particular setting.
levelOfControl-
string. This represents the way the setting is currently controlled. You can use it to check whether you can modify the setting. SeeBrowserSetting.set()for details. Its value may be any of the following:"not_controllable"Extensions are not allowed to modify this setting. "controlled_by_other_extensions"Another extension that was installed after this one has modified this setting. "controllable_by_this_extension"This extension is allowed to modify the setting. controlled_by_this_extension"This extension has already modified the setting.
Examples
>Browser compatibility
Note:
This API is based on Chromium's chrome.types API.