This repository was archived by the owner on Nov 1, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathappxmanifest.xml
54 lines (50 loc) · 1.7 KB
/
appxmanifest.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
<?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:uap3="http://schemas.microsoft.com/appx/manifest/uap/windows10/3"
IgnorableNamespaces="uap3">
<Identity
Name="Better TTV for Twitch"
Publisher="CN=BTTV"
Version="0.0.6.9" /> <!-- UPDATE IDENTITY -->
<Properties>
<DisplayName>BetterTTV</DisplayName>
<PublisherDisplayName>BTTV</PublisherDisplayName> <!-- UPDATE PLUBLISHER DISPLAY NAME -->
<Logo>Assets\StoreLogo.png</Logo>
</Properties>
<Dependencies>
<TargetDeviceFamily Name="Windows.Desktop" MinVersion="10.0.14287.0" MaxVersionTested="12.0.0.0" />
</Dependencies>
<Resources>
<Resource Language="undefined" />
<Resource Language="en" />
</Resources>
<Applications>
<Application Id="App">
<uap:VisualElements
AppListEntry="none"
DisplayName="BetterTTV"
Square150x150Logo="Assets\Square150x150Logo.png"
Square44x44Logo="Assets\Square44x44Logo.png"
Description="Enhances Twitch with new features, bug fixes, and reduced clutter."
BackgroundColor="transparent">
</uap:VisualElements>
<Extensions>
<uap3:Extension Category="windows.appExtension">
<uap3:AppExtension
Name="com.microsoft.edge.extension"
Id="EdgeExtension"
PublicFolder="Extension"
DisplayName="BetterTTV">
<uap3:Properties>
<Capabilities>
<Capability Name="websiteContent"/>
</Capabilities>
</uap3:Properties>
</uap3:AppExtension>
</uap3:Extension>
</Extensions>
</Application>
</Applications>
</Package>