Configuring the add-on for a specific space. If this option is selected in the add-on settings and the corresponding function is defined in the initialize function, the add-on settings popover in the space will display the 'Add-on Settings' menu item.

Example :
settings: (settingsContext) => {
return settingsContext.openPopup({
title: 'Timer settings',
url: './settings.html',
height: 200,
width: 300
});
}Function argument - an object that provides all available functions of the web SDK.
Return value - void or any other value.
(Standard behavior - opening a popup with the necessary settings)