-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathmanifest.xml
72 lines (71 loc) · 3.28 KB
/
manifest.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<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">
<Id>00aeeb98-f4d9-4db0-a1e6-cdc652c08e34</Id>
<Version>1.0.0.0</Version>
<ProviderName>Chris Price & Robat Williams</ProviderName>
<DefaultLocale>en-GB</DefaultLocale>
<DisplayName DefaultValue="OpenAI API Functions for Excel"/>
<Description DefaultValue="Invoke the OpenAI API calls from formula."/>
<IconUrl DefaultValue="https://robatwilliams.github.io/openai-excel-functions/assets/icon-32.png"/>
<HighResolutionIconUrl DefaultValue="https://robatwilliams.github.io/openai-excel-functions/assets/icon-64.png"/>
<SupportUrl DefaultValue="https://github.com/robatwilliams/openai-excel-functions"/>
<AppDomains>
<AppDomain>https://robatwilliams.github.io</AppDomain>
</AppDomains>
<Hosts>
<Host Name="Workbook"/>
</Hosts>
<Requirements>
<Sets DefaultMinVersion="1.1">
<Set Name="SharedRuntime" MinVersion="1.1"/>
</Sets>
</Requirements>
<DefaultSettings>
<SourceLocation DefaultValue="https://robatwilliams.github.io/openai-excel-functions/shared.html"/>
</DefaultSettings>
<Permissions>ReadWriteDocument</Permissions>
<VersionOverrides xmlns="http://schemas.microsoft.com/office/taskpaneappversionoverrides" xsi:type="VersionOverridesV1_0">
<Hosts>
<Host xsi:type="Workbook">
<Runtimes>
<Runtime resid="Shared.Url" lifetime="long" />
</Runtimes>
<AllFormFactors>
<ExtensionPoint xsi:type="CustomFunctions">
<Script>
<SourceLocation resid="Functions.Script.Url"/>
</Script>
<Page>
<SourceLocation resid="Shared.Url"/>
</Page>
<Metadata>
<SourceLocation resid="Functions.Metadata.Url"/>
</Metadata>
<Namespace resid="Functions.Namespace"/>
</ExtensionPoint>
</AllFormFactors>
<DesktopFormFactor>
<FunctionFile resid="Shared.Url"/>
</DesktopFormFactor>
</Host>
</Hosts>
<Resources>
<bt:Images>
<bt:Image id="Icon.16x16" DefaultValue="https://robatwilliams.github.io/openai-excel-functions/assets/icon-16.png"/>
<bt:Image id="Icon.32x32" DefaultValue="https://robatwilliams.github.io/openai-excel-functions/assets/icon-32.png"/>
<bt:Image id="Icon.80x80" DefaultValue="https://robatwilliams.github.io/openai-excel-functions/assets/icon-80.png"/>
</bt:Images>
<bt:Urls>
<bt:Url id="Functions.Script.Url" DefaultValue="https://robatwilliams.github.io/openai-excel-functions/src/functions/functions.mjs"/>
<bt:Url id="Functions.Metadata.Url" DefaultValue="https://robatwilliams.github.io/openai-excel-functions/src/functions/functions.json"/>
<bt:Url id="Shared.Url" DefaultValue="https://robatwilliams.github.io/openai-excel-functions/shared.html"/>
</bt:Urls>
<bt:ShortStrings>
<bt:String id="Functions.Namespace" DefaultValue="OAI"/>
</bt:ShortStrings>
</Resources>
</VersionOverrides>
</OfficeApp>