<?xml version="1.0" encoding="utf-8"?>
<!--Published:920014D5-5E5A-442D-934A-437E4FB0A4DA-->
<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:ov="http://schemas.microsoft.com/office/taskpaneappversionoverrides" xsi:type="TaskPaneApp">
    <!-- Begin Basic Settings: Add-in metadata, used for all versions of Office unless override provided. -->
    <!-- IMPORTANT! Id must be unique for your add-in, if you reuse this manifest ensure that you change this id to a new GUID. -->
    <Id>f1abd87f-a3ba-42fb-91d5-100000000000</Id>
    <!--Version. Updates from the store only get triggered if there is a version change. -->
    <Version>1.0.0.7</Version>
    <ProviderName>Templafy</ProviderName>
    <DefaultLocale>en-US</DefaultLocale>
    <!-- The display name of your add-in. Used on the store and various places of the Office UI such as the add-ins dialog. -->
    <DisplayName DefaultValue="Templafy Company Templates" />
    <Description DefaultValue="Access best practice professional templates and digital assets within your Office applications" />
    <!-- Icon for your add-in. Used on installation screens and the add-ins dialog. -->
    <IconUrl DefaultValue="https://app.templafy.com/client/images/logo32x32.png" />
    <SupportUrl DefaultValue="http://support.templafy.com"></SupportUrl>
    <!-- Domains that will be allowed when navigating. For example, if you use ShowTaskpane and then have an href link, navigation will only be allowed if the domain is on this list. -->
    <AppDomains>
        <AppDomain>https://app.templafy.com</AppDomain>
        <AppDomain>https://tenantname.templafy.com</AppDomain>
        <AppDomain>https://account.activedirectory.windowsazure.com/</AppDomain>
        <AppDomain>https://login.windows.net/</AppDomain>
        <AppDomain>https://login.microsoftonline.com/</AppDomain>
        <AppDomain>https://secure.aadcdn.microsoftonline-p.com</AppDomain>
        <AppDomain>https://accounts.google.com</AppDomain>
        <AppDomain>https://www.google.com</AppDomain>
        <AppDomain>https://google.com</AppDomain>
    </AppDomains>
    <!--End Basic Settings. -->
    <Hosts>
        <Host Name="Presentation" />
        <Host Name="Document" />
        <Host Name="Workbook" />
    </Hosts>
    <Requirements>
        <Sets DefaultMinVersion="1.1">
            <Set Name="ImageCoercion" MinVersion="1.1" />
        </Sets>
        <Methods>
            <Method Name="Document.setSelectedDataAsync" />
        </Methods>
    </Requirements>
    <!--Begin TaskPane Mode integration. This section is used if there are no VersionOverrides or if the Office client version does not support add-in commands. -->
    <DefaultSettings>
        <SourceLocation DefaultValue="https://tenantname.templafy.com" />
    </DefaultSettings>
    <!-- End TaskPane Mode integration.  -->
    <Permissions>ReadWriteDocument</Permissions>
    <!-- Begin Add-in Commands Mode integration. -->
    <VersionOverrides
        xmlns="http://schemas.microsoft.com/office/taskpaneappversionoverrides" xsi:type="VersionOverridesV1_0">
        <!-- The Hosts node is required. -->
        <Hosts>
            <!-- Each host can have a different set of commands. -->
            <!-- Excel host is Workbook, Word host is Document, and PowerPoint host is Presentation. -->
            <!-- Make sure the hosts you override match the hosts declared in the top section of the manifest. -->
            <Host xsi:type="Presentation">
                <!-- Form factor. Currently only DesktopFormFactor is supported. -->
                <DesktopFormFactor>
                    <!--"This code enables a customizable message to be displayed when the add-in is loaded successfully upon individual install."-->
                    <GetStarted>
                        <!-- Title of the Getting Started callout. resid points to a ShortString resource -->
                        <Title resid="Templafy.GetStarted.Title" />
                        <!-- Description of the Getting Started callout. resid points to a LongString resource -->
                        <Description resid="Templafy.GetStarted.Description" />
                        <!-- Point to a url resource which details how the add-in should be used. -->
                        <LearnMoreUrl resid="Templafy.GetStarted.LearnMoreUrl" />
                    </GetStarted>
                    <!-- PrimaryCommandSurface is the main Office Ribbon. -->
                    <ExtensionPoint xsi:type="PrimaryCommandSurface">
                        <!-- Use OfficeTab to extend an existing Tab. Use CustomTab to create a new tab. -->
                        <OfficeTab id="TabHome">
                            <!-- Ensure you provide a unique id for the group. Recommendation for any IDs is to namespace using your company name. -->
                            <Group id="Templafy.Group1">
                                <!-- Label for your group. resid must point to a ShortString resource. -->
                                <Label resid="Templafy.Group1Label" />
                                <!-- Icons. Required sizes 16,32,80, optional 20, 24, 40, 48, 64. Strongly recommended to provide all sizes for great UX. -->
                                <!-- Use PNG icons. All URLs on the resources section must use HTTPS. -->
                                <Icon>
                                    <bt:Image size="16" resid="Templafy.tpicon_16x16" />
                                    <bt:Image size="32" resid="Templafy.tpicon_32x32" />
                                    <bt:Image size="80" resid="Templafy.tpicon_80x80" />
                                </Icon>
                                <!-- Control. It can be of type "Button" or "Menu". -->
                                <Control xsi:type="Button" id="Templafy.TaskpaneButton">
                                    <Label resid="Templafy.TaskpaneButton.Label" />
                                    <Supertip>
                                        <!-- ToolTip title. resid must point to a ShortString resource. -->
                                        <Title resid="Templafy.TaskpaneButton.Label" />
                                        <!-- ToolTip description. resid must point to a LongString resource. -->
                                        <Description resid="Templafy.TaskpaneButton.Tooltip" />
                                    </Supertip>
                                    <Icon>
                                        <bt:Image size="16" resid="Templafy.tpicon_16x16" />
                                        <bt:Image size="32" resid="Templafy.tpicon_32x32" />
                                        <bt:Image size="80" resid="Templafy.tpicon_80x80" />
                                    </Icon>
                                    <!-- This is what happens when the command is triggered (E.g. click on the Ribbon). Supported actions are ExecuteFunction or ShowTaskpane. -->
                                    <Action xsi:type="ShowTaskpane">
                                        <TaskpaneId>Office.AutoShowTaskpaneWithDocument</TaskpaneId>
                                        <!-- Provide a url resource id for the location that will be displayed on the task pane. -->
                                        <SourceLocation resid="Templafy.Taskpane.Url" />
                                    </Action>
                                </Control>
                            </Group>
                        </OfficeTab>
                    </ExtensionPoint>
                </DesktopFormFactor>
            </Host>
            <Host xsi:type="Workbook">
                <!-- Form factor. Currently only DesktopFormFactor is supported. -->
                <DesktopFormFactor>
                    <!--"This code enables a customizable message to be displayed when the add-in is loaded successfully upon individual install."-->
                    <GetStarted>
                        <!-- Title of the Getting Started callout. resid points to a ShortString resource -->
                        <Title resid="Templafy.GetStarted.Title" />
                        <!-- Description of the Getting Started callout. resid points to a LongString resource -->
                        <Description resid="Templafy.GetStarted.Description" />
                        <!-- Point to a url resource which details how the add-in should be used. -->
                        <LearnMoreUrl resid="Templafy.GetStarted.LearnMoreUrl" />
                    </GetStarted>
                    <!-- PrimaryCommandSurface is the main Office Ribbon. -->
                    <ExtensionPoint xsi:type="PrimaryCommandSurface">
                        <!-- Use OfficeTab to extend an existing Tab. Use CustomTab to create a new tab. -->
                        <OfficeTab id="TabHome">
                            <!-- Ensure you provide a unique id for the group. Recommendation for any IDs is to namespace using your company name. -->
                            <Group id="Templafy.Group1">
                                <!-- Label for your group. resid must point to a ShortString resource. -->
                                <Label resid="Templafy.Group1Label" />
                                <!-- Icons. Required sizes 16,32,80, optional 20, 24, 40, 48, 64. Strongly recommended to provide all sizes for great UX. -->
                                <!-- Use PNG icons. All URLs on the resources section must use HTTPS. -->
                                <Icon>
                                    <bt:Image size="16" resid="Templafy.tpicon_16x16" />
                                    <bt:Image size="32" resid="Templafy.tpicon_32x32" />
                                    <bt:Image size="80" resid="Templafy.tpicon_80x80" />
                                </Icon>
                                <!-- Control. It can be of type "Button" or "Menu". -->
                                <Control xsi:type="Button" id="Templafy.TaskpaneButton">
                                    <Label resid="Templafy.TaskpaneButton.Label" />
                                    <Supertip>
                                        <!-- ToolTip title. resid must point to a ShortString resource. -->
                                        <Title resid="Templafy.TaskpaneButton.Label" />
                                        <!-- ToolTip description. resid must point to a LongString resource. -->
                                        <Description resid="Templafy.TaskpaneButton.Tooltip" />
                                    </Supertip>
                                    <Icon>
                                        <bt:Image size="16" resid="Templafy.tpicon_16x16" />
                                        <bt:Image size="32" resid="Templafy.tpicon_32x32" />
                                        <bt:Image size="80" resid="Templafy.tpicon_80x80" />
                                    </Icon>
                                    <!-- This is what happens when the command is triggered (E.g. click on the Ribbon). Supported actions are ExecuteFunction or ShowTaskpane. -->
                                    <Action xsi:type="ShowTaskpane">
                                        <TaskpaneId>Office.AutoShowTaskpaneWithDocument</TaskpaneId>
                                        <!-- Provide a url resource id for the location that will be displayed on the task pane. -->
                                        <SourceLocation resid="Templafy.Taskpane.Url" />
                                    </Action>
                                </Control>
                            </Group>
                        </OfficeTab>
                    </ExtensionPoint>
                </DesktopFormFactor>
            </Host>
            <Host xsi:type="Document">
                <!-- Form factor. Currently only DesktopFormFactor is supported. -->
                <DesktopFormFactor>
                    <!--"This code enables a customizable message to be displayed when the add-in is loaded successfully upon individual install."-->
                    <GetStarted>
                        <!-- Title of the Getting Started callout. resid points to a ShortString resource -->
                        <Title resid="Templafy.GetStarted.Title" />
                        <!-- Description of the Getting Started callout. resid points to a LongString resource -->
                        <Description resid="Templafy.GetStarted.Description" />
                        <!-- Point to a url resource which details how the add-in should be used. -->
                        <LearnMoreUrl resid="Templafy.GetStarted.LearnMoreUrl" />
                    </GetStarted>
                    <!-- PrimaryCommandSurface is the main Office Ribbon. -->
                    <ExtensionPoint xsi:type="PrimaryCommandSurface">
                        <!-- Use OfficeTab to extend an existing Tab. Use CustomTab to create a new tab. -->
                        <OfficeTab id="TabHome">
                            <!-- Ensure you provide a unique id for the group. Recommendation for any IDs is to namespace using your company name. -->
                            <Group id="Templafy.Group1">
                                <!-- Label for your group. resid must point to a ShortString resource. -->
                                <Label resid="Templafy.Group1Label" />
                                <!-- Icons. Required sizes 16,32,80, optional 20, 24, 40, 48, 64. Strongly recommended to provide all sizes for great UX. -->
                                <!-- Use PNG icons. All URLs on the resources section must use HTTPS. -->
                                <Icon>
                                    <bt:Image size="16" resid="Templafy.tpicon_16x16" />
                                    <bt:Image size="32" resid="Templafy.tpicon_32x32" />
                                    <bt:Image size="80" resid="Templafy.tpicon_80x80" />
                                </Icon>
                                <!-- Control. It can be of type "Button" or "Menu". -->
                                <Control xsi:type="Button" id="Templafy.TaskpaneButton">
                                    <Label resid="Templafy.TaskpaneButton.Label" />
                                    <Supertip>
                                        <!-- ToolTip title. resid must point to a ShortString resource. -->
                                        <Title resid="Templafy.TaskpaneButton.Label" />
                                        <!-- ToolTip description. resid must point to a LongString resource. -->
                                        <Description resid="Templafy.TaskpaneButton.Tooltip" />
                                    </Supertip>
                                    <Icon>
                                        <bt:Image size="16" resid="Templafy.tpicon_16x16" />
                                        <bt:Image size="32" resid="Templafy.tpicon_32x32" />
                                        <bt:Image size="80" resid="Templafy.tpicon_80x80" />
                                    </Icon>
                                    <!-- This is what happens when the command is triggered (E.g. click on the Ribbon). Supported actions are ExecuteFunction or ShowTaskpane. -->
                                    <Action xsi:type="ShowTaskpane">
                                        <TaskpaneId>Office.AutoShowTaskpaneWithDocument</TaskpaneId>
                                        <!-- Provide a url resource id for the location that will be displayed on the task pane. -->
                                        <SourceLocation resid="Templafy.Taskpane.Url" />
                                    </Action>
                                </Control>
                            </Group>
                        </OfficeTab>
                    </ExtensionPoint>
                </DesktopFormFactor>
            </Host>
        </Hosts>
        <!-- You can use resources across hosts and form factors. -->
        <Resources>
            <bt:Images>
                <bt:Image id="Templafy.tpicon_16x16" DefaultValue="https://app.templafy.com/client/images/logo16x16.png" />
                <bt:Image id="Templafy.tpicon_32x32" DefaultValue="https://app.templafy.com/client/images/logo32x32.png" />
                <bt:Image id="Templafy.tpicon_80x80" DefaultValue="https://app.templafy.com/client/images/logo80x80.png" />
            </bt:Images>
            <bt:Urls>
                <bt:Url id="Templafy.Taskpane.Url" DefaultValue="https://tenantname.templafy.com" />
                <bt:Url id="Templafy.GetStarted.LearnMoreUrl" DefaultValue="http://www.templafy.com/" />
            </bt:Urls>
            <!-- ShortStrings max characters==125. -->
            <bt:ShortStrings>
                <bt:String id="Templafy.TaskpaneButton.Label" DefaultValue="Templates and Digital Assets" />
                <bt:String id="Templafy.Group1Label" DefaultValue="Templafy" />
                <bt:String id="Templafy.GetStarted.Title" DefaultValue="Templafy – your company templates and digital assets" />
            </bt:ShortStrings>
            <!-- LongStrings max characters==250. -->
            <bt:LongStrings>
                <bt:String id="Templafy.TaskpaneButton.Tooltip" DefaultValue="Access best practice templates and digital assets here so you can quickly create professional looking documents" />
                <bt:String id="Templafy.GetStarted.Description" DefaultValue="Create on-brand business documents and professional presentations in seconds" />
            </bt:LongStrings>
        </Resources>
        <EquivalentAddins>
            <EquivalentAddin>
                <ProgId>Templafy.OfficeVstoAddIns.Word</ProgId>
                <Type>COM</Type>
            </EquivalentAddin>
            <EquivalentAddin>
                <ProgId>Templafy.OfficeVstoAddIns.PowerPoint</ProgId>
                <Type>COM</Type>
            </EquivalentAddin>
            <EquivalentAddin>
                <ProgId>Templafy.OfficeVstoAddIns.Excel</ProgId>
                <Type>COM</Type>
            </EquivalentAddin>
        </EquivalentAddins>
    </VersionOverrides>
    <!-- End Add-in Commands Mode integration. -->
</OfficeApp>
