I'm developing Outlook AddIn and I have a taskpane for MessageReadCommandSurface with one button.
That works fine in Outlook Windows Desktop Classic, I see button on the ribbon.
However, on outlook webmail (i.e. https://outlook.office.com/) button is not obviously there. User has to click on the "Apps" button and then it is there.
But, I can see that some addins like ScriptLab and VivaInsights have buttons just next to the Reply/ReplyAll... buttons. How can we also achieve that?

Here is the excerpt from my manifest.xml:
<ExtensionPoint xsi:type="MessageReadCommandSurface">
<OfficeTab id="TabDefault">
<Group id="group.TB.MessageRead">
<Label resid="residGroupLabel"/>
<Control xsi:type="Button" id="btnShowTaskpaneTBRead">
<Label resid="residBtnLabelTB"/>
<Supertip>
<Title resid="residBtnLabelTB" />
<Description resid="residSupertipDescTB" />
</Supertip>
<Icon>
<bt:Image size="16" resid="Icon.16x16" />
<bt:Image size="32" resid="Icon.16x16" />
<bt:Image size="80" resid="Icon.16x16" />
</Icon>
<Action xsi:type="ShowTaskpane">
<SourceLocation resid="Trackingpane.Url"/>
</Action>
</Control>
</Group>
</OfficeTab>
</ExtensionPoint>
How does ScriptLab put a button (or Menu button) here ?



<SupportsPinning>true</SupportsPinning>after<SourceLocation resid="Trackingpane.Url"/>line in the manifest