AppXManifest.xml 1.5 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.1.0.0" />
  4. <Properties>
  5. <DisplayName>Edge Full Screen</DisplayName>
  6. <PublisherDisplayName>Zhizhou Technology Co.,Ltd.</PublisherDisplayName>
  7. <Logo>Assets\icon_50.png</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="zh-cn" />
  14. </Resources>
  15. <Applications>
  16. <Application Id="App">
  17. <uap:VisualElements AppListEntry="none" DisplayName="Edge Full Screen" Square150x150Logo="Assets\icon_150.png" Square44x44Logo="Assets\icon_44.png" Description="实现 Edge 全屏启动。"
  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="Edge Full Screen"></uap3:AppExtension>
  22. </uap3:Extension>
  23. </Extensions>
  24. </Application>
  25. </Applications>
  26. </Package>