We’re improving how add-ins appear on the ribbon in Outlook on the web and the new Outlook on Windows. These Outlook ribbon updates make add-ins easier to find and align the experience across Outlook clients. Improvements include:
- Showing the group name specified in your manifest for the add-in’s ribbon button (instead of the add-in name from Microsoft Marketplace).
- Adding a dropdown next to the add-in button for quick access to the add-in’s commands.
- Adding a similar dropdown in the overflow menu.
To make sure your add-in shows the intended group name when these updates take effect, review your manifest and update the group label if needed. Where the group name is specified depends on the type of manifest your add-in uses.
- Unified manifest for Microsoft 365: The group name is specified in the label property of the relevant group in extensions.ribbons.tabs.groups. The following code is an example.
"extensions": [
{
…
"ribbons": [
{
…
"tabs": [
{
…
"groups": [
{
"id": "msgComposeCmdGroup",
"label": "Contoso Add-in",
…
}
]
}
]
}
]
}
]
- Add-in only manifest: The group name is specified in the relevant group’s child <Label> Its value is defined in the <ShortStrings> section of <Resources>. The following code is an example.
<ExtensionPoint xsi:type="MessageComposeCommandSurface">
<OfficeTab id="TabDefault">
<Group id="msgComposeCmdGroup">
<Label resid="GroupLabel"/>
…
</Group>
</OfficeTab>
</ExtensionPoint>
…
<Resources>
…
<bt:ShortStrings>
<bt:String id="GroupLabel" DefaultValue="Contoso Add-in"/>
</bt:ShortStrings>
</Resources>
To learn more about these ribbon updates, watch the February 2026 recording of the Office Add-ins community call.

0 comments
Be the first to start the discussion.