2022-06-30 22:10:14 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<Package
|
|
|
|
|
xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10"
|
|
|
|
|
xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10"
|
|
|
|
|
xmlns:uap2="http://schemas.microsoft.com/appx/manifest/uap/windows10/2"
|
|
|
|
|
xmlns:uap3="http://schemas.microsoft.com/appx/manifest/uap/windows10/3"
|
|
|
|
|
xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities"
|
|
|
|
|
xmlns:desktop="http://schemas.microsoft.com/appx/manifest/desktop/windows10"
|
|
|
|
|
xmlns:desktop4="http://schemas.microsoft.com/appx/manifest/desktop/windows10/4"
|
|
|
|
|
xmlns:desktop5="http://schemas.microsoft.com/appx/manifest/desktop/windows10/5"
|
|
|
|
|
xmlns:uap10="http://schemas.microsoft.com/appx/manifest/uap/windows10/10"
|
|
|
|
|
xmlns:com="http://schemas.microsoft.com/appx/manifest/com/windows10"
|
|
|
|
|
IgnorableNamespaces="uap uap2 uap3 rescap desktop desktop4 desktop5 uap10 com">
|
|
|
|
|
<Identity Name="Microsoft.PowerToys.ImageResizerContextMenu" ProcessorArchitecture="neutral" Publisher="CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US" Version="1.0.0.0" />
|
|
|
|
|
<Properties>
|
2022-09-28 12:40:11 +02:00
|
|
|
<DisplayName>PowerToys ImageResizer Context Menu</DisplayName>
|
2022-06-30 22:10:14 +02:00
|
|
|
<PublisherDisplayName>Microsoft</PublisherDisplayName>
|
|
|
|
|
<Logo>Assets\storelogo.png</Logo>
|
|
|
|
|
<uap10:AllowExternalContent>true</uap10:AllowExternalContent>
|
|
|
|
|
</Properties>
|
|
|
|
|
<Resources>
|
|
|
|
|
<Resource Language="en-us" />
|
|
|
|
|
</Resources>
|
|
|
|
|
<Dependencies>
|
|
|
|
|
<TargetDeviceFamily Name="Windows.Desktop" MinVersion="10.0.18950.0" MaxVersionTested="10.0.19000.0" />
|
|
|
|
|
</Dependencies>
|
|
|
|
|
<Capabilities>
|
|
|
|
|
<rescap:Capability Name="runFullTrust" />
|
|
|
|
|
<rescap:Capability Name="unvirtualizedResources"/>
|
|
|
|
|
</Capabilities>
|
|
|
|
|
<Applications>
|
2022-09-28 12:40:11 +02:00
|
|
|
<Application Id="Microsoft.PowerToys.ImageResizerContextMenu" Executable="ImageResizer.exe" uap10:TrustLevel="mediumIL" uap10:RuntimeBehavior="win32App">
|
|
|
|
|
<uap:VisualElements AppListEntry="none" DisplayName="PowerToys ImageResizer Context Menu" Description="ImageResizerContextMenu" BackgroundColor="transparent" Square150x150Logo="Assets\Square150x150Logo.png" Square44x44Logo="Assets\Square44x44Logo.png">
|
2022-06-30 22:10:14 +02:00
|
|
|
<uap:DefaultTile Wide310x150Logo="Assets\Wide310x150Logo.png" Square310x310Logo="Assets\LargeTile.png" Square71x71Logo="Assets\SmallTile.png"></uap:DefaultTile>
|
|
|
|
|
<uap:SplashScreen Image="Assets\SplashScreen.png" />
|
|
|
|
|
</uap:VisualElements>
|
|
|
|
|
<Extensions>
|
|
|
|
|
<desktop4:Extension Category="windows.fileExplorerContextMenus">
|
|
|
|
|
<desktop4:FileExplorerContextMenus>
|
|
|
|
|
<desktop5:ItemType Type="*">
|
|
|
|
|
<desktop5:Verb Id="ImageResizerCommand" Clsid="8F491918-259F-451A-950F-8C3EBF4864AF" />
|
|
|
|
|
</desktop5:ItemType>
|
|
|
|
|
</desktop4:FileExplorerContextMenus>
|
|
|
|
|
</desktop4:Extension>
|
2022-07-11 16:40:21 +01:00
|
|
|
<com:Extension Category="windows.comServer" uap10:RuntimeBehavior="packagedClassicApp">
|
2022-06-30 22:10:14 +02:00
|
|
|
<com:ComServer>
|
2022-07-11 16:40:21 +01:00
|
|
|
<com:SurrogateServer DisplayName="Context menu verb handler">
|
2022-06-30 22:10:14 +02:00
|
|
|
<com:Class Id="8F491918-259F-451A-950F-8C3EBF4864AF" Path="PowerToys.ImageResizerContextMenu.dll" ThreadingModel="STA"/>
|
|
|
|
|
</com:SurrogateServer>
|
|
|
|
|
</com:ComServer>
|
|
|
|
|
</com:Extension>
|
|
|
|
|
</Extensions>
|
|
|
|
|
</Application>
|
|
|
|
|
</Applications>
|
|
|
|
|
</Package>
|