forked from kodi-connect/kodi-connect-addon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
addon.xml
24 lines (24 loc) · 1.02 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
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="plugin.video.kodiconnect"
name="Kodi Connect"
version="<version>"
provider-name="Tomas Kislan">
<requires>
<import addon="xbmc.python" version="2.14.0"/>
</requires>
<!-- <extension point="xbmc.python.script" library="default.py" /> -->
<extension point="xbmc.python.pluginsource" library="plugin.py">
<provides>video</provides>
</extension>
<extension point="xbmc.service" library="service.py" start="startup"/>
<extension point="xbmc.addon.metadata">
<platform>all</platform>
<summary lang="en">Reverse proxy tunnel to the cloud</summary>
<description lang="en">Creates a connection with the cloud server, so that it can be controlled from anywhere</description>
<license>GPL 2.0</license>
<forum>https://forum.kodi.tv/showthread.php?tid=327562</forum>
<website></website>
<source>https://github.com/kodi-connect/kodi-connect-addon</source>
<email>[email protected]</email>
</extension>
</addon>