-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathaddon.xml
executable file
·20 lines (20 loc) · 971 Bytes
/
addon.xml
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="plugin.video.lynda" name="Lynda.com" version="2.0.0" provider-name="David Moodie">
<requires>
<import addon="xbmc.python" version="2.14.0"/>
<import addon="script.module.requests" version="2.12.4"/>
</requires>
<extension point="xbmc.python.pluginsource" library="addon.py">
<provides>video</provides>
</extension>
<extension point="xbmc.addon.metadata">
<platform>all</platform>
<summary lang="en">Watch Lynda.com courses</summary>
<description lang="en">Allows you to watch courses provided by Lynda.com</description>
<license>GNU General Public License, v2</license>
<language>en</language>
<source>https://github.com/davejm/plugin.video.lynda</source>
<website>http://www.davidmoodie.com</website>
<disclaimer lang="en">All video content streamed by this addon belongs to Lynda.com and an account is required to view premium content.</disclaimer>
</extension>
</addon>