Я очень новичок в создании надстроек Outlook в целом и только что начал пару дней go с Office. js.
Я поиграл с генератором Yeoman Office и сгенерированный манифест. xml в течение пары дней и начинает понимать его. Я пытаюсь создать надстройку, которая добавляет кнопку на вкладку «Главная» в Outlook, так же, как кнопки TeamViewer и команды.
Моя собственная группа / кнопка работает нормально, пока у меня выбрано сообщение / выделен, однако, возможно ли отобразить мою кнопку без необходимости делать это? Например, в пустом почтовом ящике / навсегда, et c.
Вот несколько изображений того, что я имею в виду:
https://i.imgur.com/lrEPCyP.png (сообщение выбрано)
https://i.imgur.com/eM0CL9U.png (пустой почтовый ящик)
Вот манифест. xml Я сейчас работаю.
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<OfficeApp xmlns="http://schemas.microsoft.com/office/appforoffice/1.1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:bt="http://schemas.microsoft.com/office/officeappbasictypes/1.0" xmlns:mailappor="http://schemas.microsoft.com/office/mailappversionoverrides/1.0" xsi:type="MailApp">
<Id>260e4f3c-61b9-485c-9c0c-525c46708848</Id>
<Version>1.0.0.0</Version>
<ProviderName>EasyMeeting</ProviderName>
<DefaultLocale>no-NB</DefaultLocale>
<DisplayName DefaultValue="EasyMeeting"/>
<Description DefaultValue="Lag møte-invitasjoner med EasyMeeting"/>
<IconUrl DefaultValue="https://i.imgur.com/dgjrg8m.png"/>
<HighResolutionIconUrl DefaultValue="https://i.imgur.com/ipFcRqx.png"/>
<SupportUrl DefaultValue="https://www.easymeeting.net/support/"/>
<AppDomains>
<AppDomain>easymeeting.net</AppDomain>
<AppDomain>localhost</AppDomain>
<AppDomain>imgur.com</AppDomain>
</AppDomains>
<Hosts>
<Host Name="Mailbox"/>
</Hosts>
<Requirements>
<Sets>
<Set Name="Mailbox" MinVersion="1.3"/>
</Sets>
</Requirements>
<FormSettings>
<Form xsi:type="ItemRead">
<DesktopSettings>
<SourceLocation DefaultValue="https://localhost:3000/taskpane.html"/>
<RequestedHeight>250</RequestedHeight>
</DesktopSettings>
</Form>
</FormSettings>
<Permissions>ReadWriteItem</Permissions>
<Rule xsi:type="RuleCollection" Mode="Or">
<Rule xsi:type="ItemIs" ItemType="Message" FormType="ReadOrEdit"/>
<Rule xsi:type="ItemIs" ItemType="Appointment" FormType="ReadOrEdit"/>
</Rule>
<DisableEntityHighlighting>false</DisableEntityHighlighting>
<VersionOverrides xmlns="http://schemas.microsoft.com/office/mailappversionoverrides" xsi:type="VersionOverridesV1_0">
<VersionOverrides xmlns="http://schemas.microsoft.com/office/mailappversionoverrides/1.1" xsi:type="VersionOverridesV1_1">
<Requirements>
<bt:Sets DefaultMinVersion="1.8">
<bt:Set Name="Mailbox"/>
</bt:Sets>
</Requirements>
<Hosts>
<Host xsi:type="MailHost">
<DesktopFormFactor>
<FunctionFile resid="Commands.Url"/>
<ExtensionPoint xsi:type="MessageReadCommandSurface">
<OfficeTab id="TabDefault">
<Group id="EasyMeeting">
<Label resid="GroupLabel"/>
<Control xsi:type="Button" id="myCustomButtonId">
<Label resid="TaskpaneButton.Label"/>
<Supertip>
<Title resid="TaskpaneButton.Label"/>
<Description resid="TaskpaneButton.Tooltip"/>
</Supertip>
<Icon>
<bt:Image size="16" resid="Icon.16x16"/>
<bt:Image size="32" resid="Icon.32x32"/>
<bt:Image size="80" resid="Icon.80x80"/>
</Icon>
<Action xsi:type="ShowTaskpane">
<SourceLocation resid="Taskpane.Url"/>
</Action>
</Control>
</Group>
</OfficeTab>
</ExtensionPoint>
</DesktopFormFactor>
</Host>
</Hosts>
<Resources>
<bt:Images>
<bt:Image id="Icon.16x16" DefaultValue="https://i.imgur.com/XZCSEzX.png" />
<bt:Image id="Icon.32x32" DefaultValue="https://i.imgur.com/dgjrg8m.png" />
<bt:Image id="Icon.80x80" DefaultValue="https://i.imgur.com/ipFcRqx.png" />
</bt:Images>
<bt:Urls>
<bt:Url id="Commands.Url" DefaultValue="https://localhost:3000/commands.html" />
<bt:Url id="Taskpane.Url" DefaultValue="https://localhost:3000/taskpane.html" />
</bt:Urls>
<bt:ShortStrings>
<bt:String id="GroupLabel" DefaultValue="EasyMeeting.net"/>
<bt:String id="TaskpaneButton.Label" DefaultValue="Planlegg møte" />
</bt:ShortStrings>
<bt:LongStrings>
<bt:String id="TaskpaneButton.Tooltip" DefaultValue="Planlegg et nytt møte med EasyMeeting og inviter kontakter."/>
</bt:LongStrings>
</Resources>
</VersionOverrides>
</VersionOverrides>
</OfficeApp>
https://i.imgur.com/eM0CL9U.png (пустой почтовый ящик)