-
Notifications
You must be signed in to change notification settings - Fork 2
/
addon.xml
29 lines (29 loc) · 1.18 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
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="plugin.video.quick.skip" name="QuickSkip" version="1.0.0" provider-name="mvestola">
<requires>
<import addon="xbmc.python" version="2.14.0"/>
</requires>
<extension point="xbmc.python.script" library="addon.py">
<provides>video</provides>
</extension>
<extension point="xbmc.addon.metadata">
<platform>all</platform>
<summary lang="en">Fast binary skipping</summary>
<summary lang="fi">Nopea puolitushaku</summary>
<description lang="en">Quickly skip commercials</description>
<description lang="fi">Hyppää nopeasti mainosten yli</description>
<license>MIT License</license>
<language>en fi</language>
<source>https://github.com/mvestola/plugin.video.quick.skip</source>
<website>http://mvestola.github.io/plugin.video.quick.skip/</website>
<email>[email protected]</email>
<assets>
<icon>icon.png</icon>
<screenshot>resources/screenshots/screenshot-01.jpg</screenshot>
<screenshot>resources/screenshots/screenshot-02.jpg</screenshot>
<screenshot>resources/screenshots/screenshot-03.jpg</screenshot>
</assets>
<news>v1.0.0 (2017-04-15)
- First stable release</news>
</extension>
</addon>