-
Notifications
You must be signed in to change notification settings - Fork 10
/
addon.xml
42 lines (42 loc) · 2.15 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<?xml version="1.0" encoding="UTF-8"?>
<addon id="plugin.video.specialfeatures"
version="3.0.4"
name="Special Features"
provider-name="smitchell6879, evertiro">
<requires>
<import addon="xbmc.python" version="2.25.0"/>
<import addon="script.module.future" version="0.0.1"/>
<import addon="script.module.pymysql" version="0.8.0"/>
</requires>
<extension point="xbmc.python.pluginsource" library="plugin.py">
<provides>video</provides>
</extension>
<extension point="kodi.context.item">
<menu id="kodi.core.main">
<item library="context.py">
<label>30070</label>
<visible>String.IsEqual(Window(home).Property(SpecialFeatures.Visible),true)+String.IsEqual(Window(home).Property(SpecialFeatures.ContextMenu),true)+!String.StartsWith(Container.FolderPath,plugin://plugin.video.specialfeatures)</visible>
</item>
</menu>
</extension>
<extension point="xbmc.service" library="service.py" start="[login]"/>
<extension point="xbmc.python.script" library="script.py"/>
<extension point="xbmc.addon.metadata">
<summary lang="en_GB">Given a properly structured 'Extras' directory, this addon will present all of the bonus media in your library.</summary>
<description lang="en_GB">Special Features is inspired by the upcoming Blu-ray features being introduced in Kodi 18. Given a properly structured 'Extras' directory, this addon will present all of the bonus videos, discs and alternate versions of the movies and tv shows in your library.</description>
<disclaimer lang="en_GB">Kodi 17/18 Required</disclaimer>
<news></news>
<platform>all</platform>
<license>GNU GENERAL PUBLIC LICENSE. Version 3, June 2007</license>
<forum>https://forum.kodi.tv/showthread.php?tid=327042</forum>
<website>https://kasa.media</website>
<source>https://github.com/kasamedia/plugin.video.specialfeatures</source>
<assets>
<icon>resources/icon.png</icon>
<fanart>resources/fanart.jpg</fanart>
<screenshot>resources/screenshot001.png</screenshot>
<screenshot>resources/screenshot002.png</screenshot>
<screenshot>resources/screenshot003.png</screenshot>
</assets>
</extension>
</addon>