-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.xml
78 lines (78 loc) · 3.37 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
73
74
75
76
77
78
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<ExtensionManifest xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" ExtensionBundleId="typescript.webpack.wakatime" ExtensionBundleVersion="1.0" Version="6.0">
<ExtensionList>
<Extension Id="typescript.webpack.wakatime.panel" Version="1.0"/>
</ExtensionList>
<ExecutionEnvironment>
<HostList>
<!-- Uncomment the two next lines if you want to be loaded by Photoshop -->
<!--<Host Name="PHSP" Version="[0.0,99.9]"/>-->
<!--<Host Name="PHXS" Version="[0.0,99.9]"/>-->
<Host Name="IDSN" Version="[0.0,99.9]"/>
<Host Name="AICY" Version="[0.0,99.9]"/>
<Host Name="ILST" Version="[0.0,99.9]"/>
<Host Name="PPRO" Version="[0.0,99.9]"/>
<Host Name="PRLD" Version="[0.0,99.9]"/>
<Host Name="AEFT" Version="[0.0,99.9]"/>
<Host Name="FLPR" Version="[0.0,99.9]"/>
<Host Name="AUDT" Version="[0.0,99.9]"/>
<Host Name="DRWV" Version="[0.0,99.9]"/>
<Host Name="KBRG" Version="[0.0,99.9]"/>
<Host Name="RUSH" Version="[0.0,99.9]"/>
</HostList>
<LocaleList>
<Locale Code="All"/>
</LocaleList>
<RequiredRuntimeList>
<RequiredRuntime Name="CSXS" Version="11.0" />
</RequiredRuntimeList>
</ExecutionEnvironment>
<DispatchInfoList>
<Extension Id="typescript.webpack.wakatime.panel">
<DispatchInfo>
<Resources>
<MainPath>./index.html</MainPath>
<CEFCommandLine>
<Parameter>--enable-nodejs</Parameter>
<Parameter>--mixed-context</Parameter>
</CEFCommandLine>
</Resources>
<Lifecycle>
<AutoVisible>true</AutoVisible>
<StartOn>
<!--
Will be annoying on startup but will ensure the extension is properly loaded even if it's collapsed.
-->
<Event>applicationActivate</Event>
<!--
Not recommended. This will launch a NEW WINDOW of the extension on Premiere Pro at startup
<Event>com.adobe.csxs.events.ApplicationActivate</Event>
-->
</StartOn>
</Lifecycle>
<UI>
<Type>Panel</Type>
<Menu>Wakatime</Menu>
<Geometry>
<Size>
<Height>400</Height>
<Width>350</Width>
</Size>
<MinSize>
<Height>1</Height>
<Width>1</Width>
</MinSize>
<MaxSize>
<Height>2000</Height>
<Width>2000</Width>
</MaxSize>
</Geometry>
<Icons>
<Icon Type="Normal">./icons/light.png</Icon>
<Icon Type="DarkNormal">./icons/dark.png</Icon>
</Icons>
</UI>
</DispatchInfo>
</Extension>
</DispatchInfoList>
</ExtensionManifest>