AppXManifest.xml 1.6 KB

1234567891011121314151617181920212223242526272829303132
  1. <?xml version="1.0" encoding="utf-8" ?>
  2. <Package xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10" xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10" xmlns:uap3="http://schemas.microsoft.com/appx/manifest/uap/windows10/3" IgnorableNamespaces="uap3">
  3. <Identity Name="2907385AAD3C7.FullScreen" Publisher="CN=00DC470D-9A91-4F5D-A194-4D2A14249801" Version="1.0.0.0" />
  4. <Properties>
  5. <DisplayName>FullScreen</DisplayName>
  6. <PublisherDisplayName>Zhizhou Technology Co.,Ltd.</PublisherDisplayName>
  7. <Logo>[REPLACE WITH RELATIVE PATH TO 50x50 ICON]</Logo>
  8. </Properties>
  9. <Dependencies>
  10. <TargetDeviceFamily Name="Windows.Desktop" MinVersion="10.0.14393.0" MaxVersionTested="10.0.14800.0" />
  11. </Dependencies>
  12. <Resources>
  13. <Resource Language="en-us" />
  14. </Resources>
  15. <Applications>
  16. <Application Id="App">
  17. <uap:VisualElements AppListEntry="none" DisplayName="[REPLACE WITH RESERVED STORE NAME]" Square150x150Logo="[REPLACE WITH RELATIVE PATH TO 150x150 ICON]" Square44x44Logo="[REPLACE WITH RELATIVE PATH TO 44x44 ICON]" Description="This is the description of the extension"
  18. BackgroundColor="white"></uap:VisualElements>
  19. <Extensions>
  20. <uap3:Extension Category="windows.appExtension">
  21. <uap3:AppExtension Name="com.microsoft.edge.extension" Id="EdgeExtension" PublicFolder="Extension" DisplayName="[REPLACE WITH RESERVED STORE NAME]"></uap3:AppExtension>
  22. </uap3:Extension>
  23. </Extensions>
  24. </Application>
  25. </Applications>
  26. </Package>