<?xml version="1.0" encoding="UTF-8"?>
<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>4ec26fec-ef7f-4794-bb2e-044106bc9d5c</Id>

  <!--Version. Updates from the store only get triggered if there is a version change. -->
  <Version>1.3.0</Version>
  <ProviderName>Clarivate</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="First To File® QA" />
  <Description DefaultValue="First To File® Trifold View"/>
  <IconUrl DefaultValue="https://office-addins.qaenv.firsttofile.com/shared/assets/Icon64.png"/>

  <SupportUrl DefaultValue="http://www.clarivate.com" />
  <!-- 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://office-addins.devenv.firsttofile.com</AppDomain>
    <AppDomain>https://office-addins.firsttofile.com</AppDomain>
    <AppDomain>https://office-addins.qaenv.firsttofile.com</AppDomain>
    <AppDomain>https://office-addins.stageenv.firsttofile.com</AppDomain>
    <AppDomain>https://containerdemos.firsttofile.com</AppDomain>
    <AppDomain>https://containerdev.firsttofile.com</AppDomain>
    <AppDomain>https://containerqa.firsttofile.com</AppDomain>
    <AppDomain>https://dev.firsttofile.com</AppDomain>
    <AppDomain>https://qa.firsttofile.com</AppDomain>
    <AppDomain>https://eu.firsttofile.cpaglobal.com</AppDomain>
    <AppDomain>https://euw.firsttofile.cpaglobal.com</AppDomain>
    <AppDomain>https://firsttofile.cpaglobal.com</AppDomain>
    <AppDomain>https://prod.firsttofile.com</AppDomain>
    <AppDomain>https://roche.firsttofile.com</AppDomain>
    <AppDomain>https://demo.firsttofile.com</AppDomain>
    <AppDomain>https://localhost:8443</AppDomain>
    <AppDomain>https://localhost:4200</AppDomain>
  </AppDomains>
  <!--End Basic Settings. -->

  <!--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. -->
  <Hosts>
    <Host Name="Workbook" />
  </Hosts>
  <DefaultSettings>
    <SourceLocation DefaultValue="https://office-addins.qaenv.firsttofile.com/shared/" />
  </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="Workbook">
        <DesktopFormFactor>
          <!-- Location of the Functions that UI-less buttons can trigger (ExecuteFunction Actions). -->
          <FunctionFile resid="functionFile" />

          <!-- Message Read -->
          <ExtensionPoint xsi:type="PrimaryCommandSurface">
            <!-- Use the default tab of the ExtensionPoint or create your own with <CustomTab id="myTab"> -->
            <OfficeTab id="TabHome">
              <!-- Up to 6 Groups added per Tab -->
              <Group id="CommandsGroup">
                <Label resid="idFirstToFileGroup" />
                <!-- Launch the add-in : task pane button -->
                <Icon>
                  <bt:Image size="16" resid="icon16" />
                  <bt:Image size="32" resid="icon32" />
                  <bt:Image size="80" resid="icon80" />
                </Icon>
                <Control xsi:type="Button" id="msgReadOpenPaneButton">
                  <Label resid="paneReadButtonLabel" />
                  <Supertip>
                    <Title resid="paneReadSuperTipTitle" />
                    <Description resid="paneReadSuperTipDescription" />
                  </Supertip>
                  <Icon>
                    <bt:Image size="16" resid="icon16" />
                    <bt:Image size="32" resid="icon32" />
                    <bt:Image size="80" resid="icon80" />
                  </Icon>
                  <Action xsi:type="ShowTaskpane">
                    <TaskpaneId>ButtonId1</TaskpaneId>
                    <SourceLocation resid="messageReadTaskPaneUrl" />
                  </Action>
                </Control>
                <!-- Go to http://aka.ms/ButtonCommands to learn how to add more Controls: ExecuteFunction and Menu -->
              </Group>
            </OfficeTab>
          </ExtensionPoint>
          <!-- Go to http://aka.ms/ExtensionPointsCommands to learn how to add more Extension Points: MessageRead, AppointmentOrganizer, AppointmentAttendee -->
        </DesktopFormFactor>
      </Host>
    </Hosts>

    <!-- You can use resources across hosts and form factors. -->
    <Resources>
      <bt:Images>
        <bt:Image id="icon16" DefaultValue="https://office-addins.qaenv.firsttofile.com/shared/assets/Icon16.png"/>
        <bt:Image id="icon32" DefaultValue="https://office-addins.qaenv.firsttofile.com/shared/assets/Icon32.png"/>
        <bt:Image id="icon80" DefaultValue="https://office-addins.qaenv.firsttofile.com/shared/assets/Icon80.png"/>
      </bt:Images>
      <bt:Urls>
        <!-- <bt:Url id="functionFile" DefaultValue="https://office-addins.qaenv.firsttofile.com/shared/FunctionFile.html"/> -->
        <bt:Url id="messageReadTaskPaneUrl" DefaultValue="https://office-addins.qaenv.firsttofile.com/shared/"/>
      </bt:Urls>
      <bt:ShortStrings>
        <bt:String id="idFirstToFileGroup" DefaultValue="First To File"/>
        <bt:String id="paneReadButtonLabel" DefaultValue="First To File® QA"/>
        <bt:String id="paneReadSuperTipTitle" DefaultValue="First To File® QA"/>
      </bt:ShortStrings>
      <bt:LongStrings>
        <bt:String id="paneReadSuperTipDescription" DefaultValue="First To File Excel integration."/>
      </bt:LongStrings>
    </Resources>
  </VersionOverrides>
  <!-- End Add-in Commands Mode integration. -->

</OfficeApp>
