forked from firsttris/plugin.video.sendtokodi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
addon.xml
25 lines (25 loc) · 1.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
<?xml version='1.0' encoding='UTF-8'?>
<addon id="plugin.video.sendtokodi" name="SendToKodi" version="100.0.0" provider-name="firsttris">
<requires>
<import addon="xbmc.python" version="3.0.0" />
</requires>
<extension point="xbmc.python.pluginsource" library="service.py">
<provides>video</provides>
</extension>
<!-- Export lib so that youtube-dl and yt-dlp can be accessed by other addons. -->
<extension point="xbmc.python.module" library="lib" />
<extension point="xbmc.addon.metadata">
<summary lang="en">SendToKodi</summary>
<description lang="en">SendToKodi</description>
<description lang="de">SendToKodi</description>
<disclaimer lang="en">The sent URLs are resolved with an external library. In case a website/stream does not work, check if youtube-dl or youtube-dlp can download them outside of kodi before opening a bug.</disclaimer>
<platform>all</platform>
<license>MIT License</license>
<website>https://teufel-it.de/</website>
<email>info@teufel-it.de</email>
<source>https://github.com/firsttris/</source>
<assets>
<icon>icon.png</icon>
</assets>
</extension>
</addon>