-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaddon.xml
19 lines (19 loc) · 853 Bytes
/
addon.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="script.user.notification" name="User Notification" version="1.0.0" provider-name="johnwillson">
<requires>
<import addon="xbmc.python" version="2.14.0"/>
</requires>
<extension point="xbmc.python.script" library="user.notification.py">
<provides>executable</provides>
</extension>
<extension point="xbmc.addon.metadata">
<platform>all</platform>
<summary lang="en">Popup user notification</summary>
<description lang="en">Very simple script to display a popup notification to user</description>
<license>GNU General Public License, v3</license>
<language></language>
<forum>http://forum.kodi.tv/showthread.php?tid=269962</forum>
<source>https://github.com/johnwillson/script.user.notification</source>
<email>kodi@johnwillson.com</email>
</extension>
</addon>