If your package includes files beyond the standard HTML extension (such as additional assets or installation instructions), you must provide a configuration .mxi file. This file specifies installation destinations, supported products, and file types. The .mxi file is used by the installer to manage the deployment of the extension and associated files.
<?xml version="1.0" encoding="UTF-8"?>
<macromedia-extension
id="id"
icon="icon.png"
name="Example Package"
requires-restart="true"
version="1.0.0">
<author name="AUTHOR NAME"/>
<description>
<![CDATA[YOUR DESCRIPTION]]>
</description>
<ui-access>
<![CDATA[YOUR INSTRUCTION]]>
</ui-access>
<license-agreement>
<![CDATA[YOUR LICENSE AGREEMENT]]>
</license-agreement>
<products>
<product familyname="Photoshop" version="13"/>
</products>
<files>
<file source="Extension/html.zxp"
destination=""
file-type="CSXS"
products="Photoshop,Photoshop32,Photoshop64"
minVersion="14.0" />
<file source="PSD/"
destination="$Downloads"
file-type="ordinary"
products="Photoshop,Photoshop32,Photoshop64"
minVersion="14.0" />
</files>
</macromedia-extension>