-
Notifications
You must be signed in to change notification settings - Fork 1
/
addon.xml
25 lines (25 loc) · 1.09 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" standalone="yes"?>
<addon id="plugin.video.piped" name="Piped" version="1.0.1" provider-name="Syhlx">
<requires>
<import addon="xbmc.python" version="3.0.0" />
<import addon="inputstream.adaptive" version="19.0.0" />
<import addon="script.module.requests" version="2.27.0" />
</requires>
<extension point="xbmc.python.pluginsource" library="default.py">
<provides>video</provides>
</extension>
<extension point="xbmc.service" library="service.py" />
<extension point="xbmc.addon.metadata">
<summary lang="en_GB">Piped Addon for Kodi</summary>
<description lang="en_GB">An addon which allows you to access any Piped instance, login and manage your playlists and watch history</description>
<disclaimer lang="en_GB">This plugin is neither affiliated with nor endorsed by TeamPiped</disclaimer>
<platform>all</platform>
<license>AGPL-3.0-only</license>
<source>https://github.com/syhlx/plugin.video.piped</source>
<news>None</news>
<assets>
<icon>resources/icon.png</icon>
<fanart>resources/fanart.jpg</fanart>
</assets>
</extension>
</addon>