固定 Outlook 任务窗格 - Outlook 网页版
Pinnable Outlook Task Pane - Outlook on the Web
我目前正在开发自定义 Outlook 加载项,但无法找到有关任务窗格固定支持的其他信息。我已经使用 https://docs.microsoft.com/en-us/outlook/add-ins/pinnable-taskpane 中提供的示例在项目清单中实现了 SupportsPinning
元素,其中版本覆盖支持架构版本 1.0 和 1.1。我目前可以在 Mac 客户端的 Outlook 中固定任务窗格,但无法找到有关固定在 Outlook 网页版上的任何信息。 "Outlook on the web" 在我上面链接的文档中被引用,但只是简短的引用。我已经使用免费和高级帐户测试固定,但没有成功。
我的问题是,除了上面链接的文档或我在下面包含的代码片段中提供的内容之外,是否需要额外的步骤来为 Outlook 网页版启用任务窗格固定。我觉得固定在桌面客户端有效,但在网络上无效。
<?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"
xsi:type="MailApp">
<Id>092ef841-4956-4ff0-ba08-6723f15583dd</Id>
<Version>1.0.0.0</Version>
<ProviderName>Client</ProviderName>
<DefaultLocale>en-US</DefaultLocale>
<DisplayName DefaultValue="Client CRM"/>
<Description DefaultValue="Client Microsoft Office Outlook Add-in"/>
<!-- Icons -->
<IconUrl DefaultValue="https://localhost:9001/assets/client-64.png"/>
<HighResolutionIconUrl DefaultValue="https://localhost:9001/assets/client-128.png"/>
<!-- URLS -->
<SupportUrl DefaultValue="https://client.test/support"/>
<!-- Domain Whitelist -->
<!-- https://docs.microsoft.com/en-us/outlook/add-ins/manifests#app-domains -->
<AppDomains>
<AppDomain>https://client.test/</AppDomain>
</AppDomains>
<!-- Hosts -->
<!-- https://docs.microsoft.com/en-us/outlook/add-ins/manifests#hosts -->
<Hosts>
<Host Name="Mailbox"/>
</Hosts>
<!-- Requirements -->
<!-- https://docs.microsoft.com/en-us/outlook/add-ins/manifests#requirements -->
<!-- https://docs.microsoft.com/en-us/office/dev/add-ins/reference/objectmodel/requirement-set-1.4/outlook-requirement-set-1.4 -->
<Requirements>
<Sets>
<Set Name="Mailbox" MinVersion="1.4"/>
</Sets>
</Requirements>
<!-- Form Settings -->
<!-- https://docs.microsoft.com/en-us/outlook/add-ins/manifests#form-settings -->
<FormSettings>
<Form xsi:type="ItemRead">
<DesktopSettings>
<SourceLocation DefaultValue="https://localhost:9001/taskpane.html"/>
<RequestedHeight>450</RequestedHeight>
</DesktopSettings>
</Form>
<Form xsi:type="ItemEdit">
<DesktopSettings>
<SourceLocation DefaultValue="https://localhost:9001/taskpane.html"/>
</DesktopSettings>
</Form>
</FormSettings>
<!-- Permissions -->
<!-- https://docs.microsoft.com/en-us/outlook/add-ins/manifests#permissions -->
<Permissions>ReadWriteItem</Permissions>
<!-- Activation Rules -->
<!-- https://docs.microsoft.com/en-us/outlook/add-ins/manifests#activation-rules -->
<Rule xsi:type="RuleCollection" Mode="Or">
<Rule xsi:type="ItemIs" ItemType="Message" FormType="Read"/>
<Rule xsi:type="ItemIs" ItemType="Message" FormType="Edit"/>
</Rule>
<DisableEntityHighlighting>false</DisableEntityHighlighting>
<!-- VersionOverrides for the v1.0 schema -->
<!-- https://docs.microsoft.com/en-us/office/dev/add-ins/reference/manifest/versionoverrides#attributes -->
<VersionOverrides xmlns="http://schemas.microsoft.com/office/mailappversionoverrides" xsi:type="VersionOverridesV1_0">
<Requirements>
<!-- https://docs.microsoft.com/en-us/office/dev/add-ins/reference/objectmodel/requirement-set-1.5/outlook-requirement-set-1.5 -->
<bt:Sets DefaultMinVersion="1.5">
<bt:Set Name="Mailbox"/>
</bt:Sets>
</Requirements>
<Hosts>
<Host xsi:type="MailHost">
<DesktopFormFactor>
<!-- Message read ribbon -->
<ExtensionPoint xsi:type="MessageReadCommandSurface">
<OfficeTab id="messageReadTab">
<Group id="messageReadTab.mainGroup">
<Label resid="GroupLabel"/>
<Control xsi:type="Button" id="openSidebarReadButton">
<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>
<!-- Message compose ribbon -->
<ExtensionPoint xsi:type="MessageComposeCommandSurface">
<OfficeTab id="messageComposeTab">
<Group id="messageComposeTab.mainGroup">
<Label resid="GroupLabel"/>
<Control xsi:type="Button" id="openSidebarComposeButton">
<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://localhost:9001/assets/client-16.png"/>
<bt:Image id="Icon.32x32" DefaultValue="https://localhost:9001/assets/client-32.png"/>
<bt:Image id="Icon.80x80" DefaultValue="https://localhost:9001/assets/client-80.png"/>
</bt:Images>
<bt:Urls>
<bt:Url id="Taskpane.Url" DefaultValue="https://localhost:9001/taskpane.html"/>
</bt:Urls>
<bt:ShortStrings>
<bt:String id="GroupLabel" DefaultValue="Client CRM"/>
<bt:String id="TaskpaneButton.Label" DefaultValue="Add a Journal Entry"/>
</bt:ShortStrings>
<bt:LongStrings>
<bt:String id="TaskpaneButton.Tooltip" DefaultValue="The Client CRM Add-In for Outlook"/>
</bt:LongStrings>
</Resources>
<!-- VersionOverrides for the v1.1 schema -->
<!-- https://docs.microsoft.com/en-us/office/dev/add-ins/reference/manifest/versionoverrides#attributes -->
<VersionOverrides xmlns="http://schemas.microsoft.com/office/mailappversionoverrides/1.1" xsi:type="VersionOverridesV1_1">
<Requirements>
<!-- https://docs.microsoft.com/en-us/office/dev/add-ins/reference/objectmodel/requirement-set-1.5/outlook-requirement-set-1.5 -->
<bt:Sets DefaultMinVersion="1.5">
<bt:Set Name="Mailbox"/>
</bt:Sets>
</Requirements>
<Hosts>
<Host xsi:type="MailHost">
<DesktopFormFactor>
<!-- Message read ribbon -->
<ExtensionPoint xsi:type="MessageReadCommandSurface">
<OfficeTab id="messageReadTab">
<Group id="messageReadTab.mainGroup">
<Label resid="GroupLabel"/>
<Control xsi:type="Button" id="openSidebarReadButton">
<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"/>
<!-- Support Pinning -->
<!-- https://docs.microsoft.com/en-us/outlook/add-ins/pinnable-taskpane#support-task-pane-pinning -->
<SupportsPinning>true</SupportsPinning>
</Action>
</Control>
</Group>
</OfficeTab>
</ExtensionPoint>
<!-- Message compose ribbon -->
<ExtensionPoint xsi:type="MessageComposeCommandSurface">
<OfficeTab id="messageComposeTab">
<Group id="messageComposeTab.mainGroup">
<Label resid="GroupLabel"/>
<Control xsi:type="Button" id="openSidebarComposeButton">
<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://localhost:9001/assets/client-16.png"/>
<bt:Image id="Icon.32x32" DefaultValue="https://localhost:9001/assets/client-32.png"/>
<bt:Image id="Icon.80x80" DefaultValue="https://localhost:9001/assets/client-80.png"/>
</bt:Images>
<bt:Urls>
<bt:Url id="Taskpane.Url" DefaultValue="https://localhost:9001/taskpane.html"/>
</bt:Urls>
<bt:ShortStrings>
<bt:String id="GroupLabel" DefaultValue="Client CRM"/>
<bt:String id="TaskpaneButton.Label" DefaultValue="Add a Journal Entry"/>
</bt:ShortStrings>
<bt:LongStrings>
<bt:String id="TaskpaneButton.Tooltip" DefaultValue="The Client CRM Add-In for Outlook"/>
</bt:LongStrings>
</Resources>
</VersionOverrides>
</VersionOverrides>
</OfficeApp>
感谢您报告有关在 Outlook Online 中将加载项固定到 free/consumer 帐户的问题。它已被放入我们的待办事项列表中。很遗憾,我们目前没有时间表可以分享
我目前正在开发自定义 Outlook 加载项,但无法找到有关任务窗格固定支持的其他信息。我已经使用 https://docs.microsoft.com/en-us/outlook/add-ins/pinnable-taskpane 中提供的示例在项目清单中实现了 SupportsPinning
元素,其中版本覆盖支持架构版本 1.0 和 1.1。我目前可以在 Mac 客户端的 Outlook 中固定任务窗格,但无法找到有关固定在 Outlook 网页版上的任何信息。 "Outlook on the web" 在我上面链接的文档中被引用,但只是简短的引用。我已经使用免费和高级帐户测试固定,但没有成功。
我的问题是,除了上面链接的文档或我在下面包含的代码片段中提供的内容之外,是否需要额外的步骤来为 Outlook 网页版启用任务窗格固定。我觉得固定在桌面客户端有效,但在网络上无效。
<?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"
xsi:type="MailApp">
<Id>092ef841-4956-4ff0-ba08-6723f15583dd</Id>
<Version>1.0.0.0</Version>
<ProviderName>Client</ProviderName>
<DefaultLocale>en-US</DefaultLocale>
<DisplayName DefaultValue="Client CRM"/>
<Description DefaultValue="Client Microsoft Office Outlook Add-in"/>
<!-- Icons -->
<IconUrl DefaultValue="https://localhost:9001/assets/client-64.png"/>
<HighResolutionIconUrl DefaultValue="https://localhost:9001/assets/client-128.png"/>
<!-- URLS -->
<SupportUrl DefaultValue="https://client.test/support"/>
<!-- Domain Whitelist -->
<!-- https://docs.microsoft.com/en-us/outlook/add-ins/manifests#app-domains -->
<AppDomains>
<AppDomain>https://client.test/</AppDomain>
</AppDomains>
<!-- Hosts -->
<!-- https://docs.microsoft.com/en-us/outlook/add-ins/manifests#hosts -->
<Hosts>
<Host Name="Mailbox"/>
</Hosts>
<!-- Requirements -->
<!-- https://docs.microsoft.com/en-us/outlook/add-ins/manifests#requirements -->
<!-- https://docs.microsoft.com/en-us/office/dev/add-ins/reference/objectmodel/requirement-set-1.4/outlook-requirement-set-1.4 -->
<Requirements>
<Sets>
<Set Name="Mailbox" MinVersion="1.4"/>
</Sets>
</Requirements>
<!-- Form Settings -->
<!-- https://docs.microsoft.com/en-us/outlook/add-ins/manifests#form-settings -->
<FormSettings>
<Form xsi:type="ItemRead">
<DesktopSettings>
<SourceLocation DefaultValue="https://localhost:9001/taskpane.html"/>
<RequestedHeight>450</RequestedHeight>
</DesktopSettings>
</Form>
<Form xsi:type="ItemEdit">
<DesktopSettings>
<SourceLocation DefaultValue="https://localhost:9001/taskpane.html"/>
</DesktopSettings>
</Form>
</FormSettings>
<!-- Permissions -->
<!-- https://docs.microsoft.com/en-us/outlook/add-ins/manifests#permissions -->
<Permissions>ReadWriteItem</Permissions>
<!-- Activation Rules -->
<!-- https://docs.microsoft.com/en-us/outlook/add-ins/manifests#activation-rules -->
<Rule xsi:type="RuleCollection" Mode="Or">
<Rule xsi:type="ItemIs" ItemType="Message" FormType="Read"/>
<Rule xsi:type="ItemIs" ItemType="Message" FormType="Edit"/>
</Rule>
<DisableEntityHighlighting>false</DisableEntityHighlighting>
<!-- VersionOverrides for the v1.0 schema -->
<!-- https://docs.microsoft.com/en-us/office/dev/add-ins/reference/manifest/versionoverrides#attributes -->
<VersionOverrides xmlns="http://schemas.microsoft.com/office/mailappversionoverrides" xsi:type="VersionOverridesV1_0">
<Requirements>
<!-- https://docs.microsoft.com/en-us/office/dev/add-ins/reference/objectmodel/requirement-set-1.5/outlook-requirement-set-1.5 -->
<bt:Sets DefaultMinVersion="1.5">
<bt:Set Name="Mailbox"/>
</bt:Sets>
</Requirements>
<Hosts>
<Host xsi:type="MailHost">
<DesktopFormFactor>
<!-- Message read ribbon -->
<ExtensionPoint xsi:type="MessageReadCommandSurface">
<OfficeTab id="messageReadTab">
<Group id="messageReadTab.mainGroup">
<Label resid="GroupLabel"/>
<Control xsi:type="Button" id="openSidebarReadButton">
<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>
<!-- Message compose ribbon -->
<ExtensionPoint xsi:type="MessageComposeCommandSurface">
<OfficeTab id="messageComposeTab">
<Group id="messageComposeTab.mainGroup">
<Label resid="GroupLabel"/>
<Control xsi:type="Button" id="openSidebarComposeButton">
<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://localhost:9001/assets/client-16.png"/>
<bt:Image id="Icon.32x32" DefaultValue="https://localhost:9001/assets/client-32.png"/>
<bt:Image id="Icon.80x80" DefaultValue="https://localhost:9001/assets/client-80.png"/>
</bt:Images>
<bt:Urls>
<bt:Url id="Taskpane.Url" DefaultValue="https://localhost:9001/taskpane.html"/>
</bt:Urls>
<bt:ShortStrings>
<bt:String id="GroupLabel" DefaultValue="Client CRM"/>
<bt:String id="TaskpaneButton.Label" DefaultValue="Add a Journal Entry"/>
</bt:ShortStrings>
<bt:LongStrings>
<bt:String id="TaskpaneButton.Tooltip" DefaultValue="The Client CRM Add-In for Outlook"/>
</bt:LongStrings>
</Resources>
<!-- VersionOverrides for the v1.1 schema -->
<!-- https://docs.microsoft.com/en-us/office/dev/add-ins/reference/manifest/versionoverrides#attributes -->
<VersionOverrides xmlns="http://schemas.microsoft.com/office/mailappversionoverrides/1.1" xsi:type="VersionOverridesV1_1">
<Requirements>
<!-- https://docs.microsoft.com/en-us/office/dev/add-ins/reference/objectmodel/requirement-set-1.5/outlook-requirement-set-1.5 -->
<bt:Sets DefaultMinVersion="1.5">
<bt:Set Name="Mailbox"/>
</bt:Sets>
</Requirements>
<Hosts>
<Host xsi:type="MailHost">
<DesktopFormFactor>
<!-- Message read ribbon -->
<ExtensionPoint xsi:type="MessageReadCommandSurface">
<OfficeTab id="messageReadTab">
<Group id="messageReadTab.mainGroup">
<Label resid="GroupLabel"/>
<Control xsi:type="Button" id="openSidebarReadButton">
<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"/>
<!-- Support Pinning -->
<!-- https://docs.microsoft.com/en-us/outlook/add-ins/pinnable-taskpane#support-task-pane-pinning -->
<SupportsPinning>true</SupportsPinning>
</Action>
</Control>
</Group>
</OfficeTab>
</ExtensionPoint>
<!-- Message compose ribbon -->
<ExtensionPoint xsi:type="MessageComposeCommandSurface">
<OfficeTab id="messageComposeTab">
<Group id="messageComposeTab.mainGroup">
<Label resid="GroupLabel"/>
<Control xsi:type="Button" id="openSidebarComposeButton">
<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://localhost:9001/assets/client-16.png"/>
<bt:Image id="Icon.32x32" DefaultValue="https://localhost:9001/assets/client-32.png"/>
<bt:Image id="Icon.80x80" DefaultValue="https://localhost:9001/assets/client-80.png"/>
</bt:Images>
<bt:Urls>
<bt:Url id="Taskpane.Url" DefaultValue="https://localhost:9001/taskpane.html"/>
</bt:Urls>
<bt:ShortStrings>
<bt:String id="GroupLabel" DefaultValue="Client CRM"/>
<bt:String id="TaskpaneButton.Label" DefaultValue="Add a Journal Entry"/>
</bt:ShortStrings>
<bt:LongStrings>
<bt:String id="TaskpaneButton.Tooltip" DefaultValue="The Client CRM Add-In for Outlook"/>
</bt:LongStrings>
</Resources>
</VersionOverrides>
</VersionOverrides>
</OfficeApp>
感谢您报告有关在 Outlook Online 中将加载项固定到 free/consumer 帐户的问题。它已被放入我们的待办事项列表中。很遗憾,我们目前没有时间表可以分享