March 6th, 2026
0 reactions

Prepare your add-in for Outlook ribbon improvements

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.

outlook ribbon improvements image

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.

"extensions": [
  {
    …
    "ribbons": [
      {
        …
        "tabs": [
          {
            …
            "groups": [
              {
                "id": "msgComposeCmdGroup",
                "label": "Contoso Add-in",
                …
              }
            ]
          }
        ]
      }
    ]
  }
]
<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