-
Notifications
You must be signed in to change notification settings - Fork 5
/
addon.xml
35 lines (34 loc) · 1.35 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
30
31
32
33
34
35
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="service.shadowsocks" name="Shadowsocks" version="0.0.1" provider-name="netcon">
<requires>
<import addon="xbmc.python" version="2.24.0"/>
</requires>
<extension point="xbmc.service" library="main.py" start="startup"/>
<extension point="xbmc.addon.metadata">
<summary>Shadowsocks for Kodi</summary>
<description>
Usage:
1. Click `Configure` to fill in your server config
2. Click `Disable` to stop existing service
3. Click `Enable` to start service with the current config
You have already established a SOCKS5 proxy on your kodi!
Github: https://github.com/conwnet/shadowsocks-kodi
</description>
<language></language>
<platform>linux</platform>
<license>MIT</license>
<forum></forum>
<website>conw.net</website>
<email>netcon@live.com</email>
<source></source>
<news></news>
<disclaimer></disclaimer>
<assets>
<icon>resources/icon.png</icon>
<fanart>resources/fanart.jpg</fanart>
<screenshot>resources/screenshot-01.png</screenshot>
<screenshot>resources/screenshot-02.png</screenshot>
<screenshot>resources/screenshot-03.png</screenshot>
</assets>
</extension>
</addon>