-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathaddon.xml
More file actions
20 lines (20 loc) · 842 Bytes
/
Copy pathaddon.xml
File metadata and controls
20 lines (20 loc) · 842 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="context.show.runtime" name="Show Runtime" version="1.0.0" provider-name="curti">
<requires>
<import addon="xbmc.python" version="2.20.0" />
</requires>
<extension point="kodi.context.item" library="addon.py">
<item>
<label>Show Runtime</label>
<visible>StringCompare(ListItem.dbtype, tvshow)</visible>
</item>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en">Display runtime for television shows</summary>
<description lang="en">Display remaining/total runtime for television shows</description>
<platform>all</platform>
<language>en</language>
<license>GNU General Public License, v2</license>
<email></email>
</extension>
</addon>