<?xml version="1.0" encoding="UTF-8"?>
<!--
  Content add-in manifest for SparkSlides Embed V1.
  - xsi:type="ContentApp"  : makes this a content add-in (renders inside the slide).
  - Host Name="Presentation": targets PowerPoint.
  DO NOT convert this to the unified JSON manifest format - JSON manifests do not
  support ContentApp / content add-ins as of 2025.

  Sideloading: place this file in the same folder as your .pptx, then use
  PowerPoint > Insert > Get Add-ins > Shared Folder (or the equivalent
  sideloading flow for your platform).
-->
<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="ContentApp">

  <!-- Generate a fresh GUID if you fork this project. This one is unique to V1. -->
  <Id>7f3a2c14-e841-4b9f-a3d6-0c58b7e2f91d</Id>
  <Version>1.0.0.0</Version>
  <ProviderName>SparkSlides</ProviderName>
  <DefaultLocale>en-US</DefaultLocale>

  <DisplayName DefaultValue="SparkSlides Embed" />
  <Description DefaultValue="Embed any HTTPS web page as a live, interactive slide element in PowerPoint." />

  <!-- Icons: apple-touch-icon.png is 180x180 and serves the 80px slot fine. -->
  <IconUrl DefaultValue="https://sparkslides.com/images/apple-touch-icon.png" />
  <HighResolutionIconUrl DefaultValue="https://sparkslides.com/images/apple-touch-icon.png" />

  <SupportUrl DefaultValue="https://sparkslides.com/" />

  <AppDomains>
    <!-- Add any domains the add-in page itself loads resources from.
         The embedded site's domain does NOT need to be listed here. -->
    <AppDomain>https://sparkslides.com</AppDomain>
  </AppDomains>

  <Hosts>
    <!-- ContentApp in Presentation = content add-in for PowerPoint -->
    <Host Name="Presentation" />
  </Hosts>

  <Requirements>
    <Sets>
      <Set Name="Selection" MinVersion="1.1" />
    </Sets>
  </Requirements>

  <DefaultSettings>
    <!-- The page PowerPoint loads inside the slide region. -->
    <SourceLocation DefaultValue="https://sparkslides.com/embed/" />
    <!-- RequestedWidth and RequestedHeight are the initial dimensions in pixels.
         PowerPoint lets the user resize after insertion. -->
    <RequestedWidth>600</RequestedWidth>
    <RequestedHeight>400</RequestedHeight>
  </DefaultSettings>

  <Permissions>ReadWriteDocument</Permissions>

</OfficeApp>
