-
Notifications
You must be signed in to change notification settings - Fork 3
/
addon.xml
24 lines (24 loc) · 1.13 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
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="script.suitability" name="Suitability" version="1.2.2" provider-name="robwebset">
<requires>
<import addon="xbmc.python" version="2.20.0"/>
<import addon="script.module.beautifulsoup" version="3.2.1"/>
</requires>
<extension point="xbmc.python.script" library="default.py"/>
<extension point="xbmc.service" library="service.py" start="login"/>
<extension point="kodi.context.item" library="default.py">
<item>
<label>32001</label>
<visible>IsEmpty(Window(videos).Property("SuitabilityHideContextMenu")) + [Container.Content(movies) | Container.Content(tvshows)]</visible>
</item>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en">Check if a movie or TV show is family friendly</summary>
<description lang="en">Supplies details for how suitable a movie or TV show is for children.</description>
<language></language>
<platform>all</platform>
<license>See LICENSE.txt</license>
<forum>http://forum.kodi.tv/showthread.php?tid=292724</forum>
<source>https://github.com/robwebset/script.suitability</source>
</extension>
</addon>