forked from phil65/context.extendedinfo.dialog
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaddon.xml
More file actions
26 lines (26 loc) · 1.36 KB
/
addon.xml
File metadata and controls
26 lines (26 loc) · 1.36 KB
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
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="context.extendedinfo.dialog" name="ExtendedInfo Script - Open dialog" version="1.1.0" provider-name="3vtv | phil65">
<requires>
<import addon="xbmc.python" version="3.0.0"/>
<import addon="script.extendedinfo" version="6.0.1"/>
</requires>
<extension point="kodi.context.item">
<menu id="kodi.core.main">
<item library="addon.py">
<label>32000</label>
<visible>String.IsEqual(ListItem.dbtype,movie) | String.IsEqual(ListItem.dbtype,tvshow) | String.IsEqual(ListItem.dbtype,season) | String.IsEqual(ListItem.dbtype,episode) | String.IsEqual(ListItem.dbtype,actor) | String.IsEqual(ListItem.dbtype,director)</visible>
</item>
</menu>
</extension>
<extension point="kodi.addon.metadata">
<platform>all</platform>
<summary lang="en">Open ExtendedInfo dialog from Kodi context menu</summary>
<description lang="en">Open ExtendedInfo dialog from Kodi context menu. Needs script.extendedinfo installed and activated. Available for movies, tv shows, seasons, episodes and persons (actors, directors) currently.</description>
<license>GNU GENERAL PUBLIC LICENSE. Version 3, 29 June 2007</license>
<forum></forum>
<source>https://github.com/3vtv/context.extendedinfo.dialog</source>
<assets>
<icon>icon.png</icon>
</assets>
</extension>
</addon>