Photoshop extension returns: extension could not be loaded because it was not properly signed.
Hi there,
I'm developing an extension for Photoshop CC 2015 and after configuring everything right, it still returns "extension could not be loaded because it was not properly signed." when I try to open it. This happens to every other development testing extensions.
What should I do in order to not bump into this error? My manifest.xml is as follows:
- <?xml version="1.0" encoding="UTF-8"?>
- <ExtensionManifest ExtensionBundleId="com.myscript.extension" ExtensionBundleName="MyScript" ExtensionBundleVersion="1.0" Version="5.0">
- <ExtensionList>
- <Extension Id="com.myscript.extension" Version="1.0"/>
- </ExtensionList>
- <ExecutionEnvironment>
- <HostList>
- <Host Name="PHXS" Version="[16.0,16.9]"/>
- <Host Name="PHSP" Version="[16.0,16.9]"/>
- </HostList>
- <LocaleList>
- <Locale Code="All"/>
- </LocaleList>
- <RequiredRuntimeList>
- <RequiredRuntime Name="CSXS" Version="6.0"/>
- </RequiredRuntimeList>
- </ExecutionEnvironment>
- <DispatchInfoList>
- <Extension Id="com.myscript.extension">
- <DispatchInfo>
- <Resources>
- <MainPath>./index.html</MainPath>
- <ScriptPath>./source.jsx</ScriptPath>
- </Resources>
- <UI>
- <Type>Panel</Type>
- <Menu>Extension</Menu>
- <Geometry>
- <MinSize>
- <Height>400</Height>
- <Width>400</Width>
- </MinSize>
- <Size>
- <Height>400</Height>
- <Width>400</Width>
- </Size>
- </Geometry>
- <Icons>
- <Icon Type="Normal">./icons/dark.png</Icon>
- <Icon Type="RollOver">./icons/dark.png</Icon>
- <Icon Type="DarkNormal">./icons/light.png</Icon>
- <Icon Type="DarkRollOver">./icons/light.png</Icon>
- </Icons>
- </UI>
- </DispatchInfo>
- </Extension>
- </DispatchInfoList>
- </ExtensionManifest>
Thanks in advance
