forked from Sandmann79/xbmc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaddon.xml
42 lines (42 loc) · 2.14 KB
/
addon.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
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="plugin.video.amazon-test"
name="Amazon VOD"
version="0.8.7~beta"
provider-name="Sandmann79, Varstahl">
<requires>
<import addon="xbmc.python" version="2.24.0"/>
<import addon="script.module.beautifulsoup4" version="4.6.2"/>
<import addon="script.module.mechanicalsoup" version="0.12.0"/>
<import addon="script.module.pydes" version="2.0.1"/>
<import addon="script.module.pyxbmct" version="1.1.7"/>
<import addon="script.module.inputstreamhelper" version="0.4.4"/>
<import addon="script.module.requests" version="2.9.1"/>
<import addon="script.module.kodi-six" version="0.0.5"/>
<import addon="script.module.pyautogui" version="0.9.49"/>
</requires>
<extension point="xbmc.python.pluginsource"
library="default.py">
<provides>video</provides>
</extension>
<extension point="xbmc.service" library="service.py" start="startup" />
<extension point="xbmc.addon.metadata">
<platform>all</platform>
<reuselanguageinvoker>true</reuselanguageinvoker>
<summary lang="en_GB">Amazon Prime Video Streaming</summary>
<summary lang="de_DE">Amazon Prime Instant Video</summary>
<description lang="en_GB">Movies and Television Shows for Prime Members</description>
<description lang="de_DE">Filme und Serien für Amazon Prime Mitglieder</description>
<disclaimer lang="en_GB">Some parts of this addon may not be legal in your country of residence - please check with your local laws before installing.
This Addon uses pyDes by Todd Whiteman</disclaimer>
<disclaimer lang="de_DE">Möglicherweise sind einge Teile dieses Addons in Ihrem Land illegal, Sie sollten dies unbedingt vor der Installation überprüfen.
Diese Addon verwendet pyDes von Todd Whiteman</disclaimer>
<forum>http://www.kodinerds.net/index.php/Thread/44211-Release-Amazon-Prime-Instant-Video</forum>
<source>https://github.com/Sandmann79/xbmc</source>
<license>GPL-3.0-or-later</license>
<assets>
<icon>icon.png</icon>
<fanart>fanart.png</fanart>
<clearlogo>clearlogo.png</clearlogo>
</assets>
</extension>
</addon>