-
Notifications
You must be signed in to change notification settings - Fork 1
/
addon.xml
18 lines (18 loc) · 828 Bytes
/
addon.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="service.backgroundmusic" name="Background Music Service" version="1.0.0" provider-name="phil65">
<requires>
<import addon="xbmc.python" version="2.1.0"/>
<import addon="script.module.simplejson" version="2.0.10"/>
</requires>
<extension point="xbmc.service" library="default.py" start="login"/>
<extension point="xbmc.addon.metadata">
<language/>
<summary lang="en">Script to play background music when no other media is playing.</summary>
<description lang="en">This service automatically starts a user-selected playlist whenever no media is playing.</description>
<platform>all</platform>
<license>GNU GENERAL PUBLIC LICENSE Version 2, June 1991</license>
<forum>-</forum>
<source>-</source>
<email>-</email>
</extension>
</addon>