PlexKodiConnect/addon.xml

33 lines
1.6 KiB
XML
Raw Normal View History

2015-03-14 08:24:59 +11:00
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="plugin.video.plexkodiconnect"
name="PlexKodiConnect"
2017-02-04 04:43:17 +11:00
version="1.5.12"
2016-01-11 18:19:01 +11:00
provider-name="croneter">
2015-03-14 08:24:59 +11:00
<requires>
<import addon="xbmc.python" version="2.1.0"/>
<import addon="script.module.requests" version="2.3.0" />
2015-03-14 08:24:59 +11:00
</requires>
<extension point="xbmc.python.pluginsource"
2015-03-14 08:24:59 +11:00
library="default.py">
2016-01-18 09:27:25 +11:00
<provides>video audio image</provides>
2015-03-14 08:24:59 +11:00
</extension>
<extension point="xbmc.service" library="service.py" start="login">
</extension>
2016-10-23 02:15:10 +11:00
<extension point="kodi.context.item" library="contextmenu.py">
<item>
<label>30401</label>
<description>Settings for the Plex Server</description>
<visible>[!IsEmpty(ListItem.DBID) + !StringCompare(ListItem.DBID,-1) | !IsEmpty(ListItem.Property(plexid))] + !IsEmpty(Window(10000).Property(plex_context))</visible>
</item>
</extension>
2015-03-14 08:24:59 +11:00
<extension point="xbmc.addon.metadata">
<platform>all</platform>
<language>en</language>
<license>GNU GENERAL PUBLIC LICENSE. Version 2, June 1991</license>
2016-10-16 22:58:59 +11:00
<forum>https://forums.plex.tv</forum>
2016-01-11 18:19:01 +11:00
<website>https://github.com/croneter/PlexKodiConnect</website>
2016-10-16 22:58:59 +11:00
<source>https://github.com/croneter/PlexKodiConnect</source>
2017-02-03 23:20:15 +11:00
<summary lang="en">Native Integration of Plex into Kodi</summary>
2016-10-16 22:58:59 +11:00
<description lang="en">Connect Kodi to your Plex Media Server. This plugin assumes that you manage all your videos with Plex (and none with Kodi). You might lose data already stored in the Kodi video and music databases (as this plugin directly changes them). Use at your own risk!</description>
2015-03-14 08:24:59 +11:00
</extension>
</addon>