forked from zoreu/script.module.netunblock
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaddon.xml
More file actions
21 lines (21 loc) · 912 Bytes
/
addon.xml
File metadata and controls
21 lines (21 loc) · 912 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="script.module.netunblock" name="Net Unblock" version="0.0.1" provider-name="Joel">
<requires>
<import addon="script.module.six" />
<import addon="script.module.kodi-six" />
<import addon="script.module.requests" />
</requires>
<extension point="xbmc.python.module" library="lib" />
<extension point="xbmc.python.pluginsource" library="app.py">
<provides>executable</provides>
</extension>
<extension point="xbmc.addon.metadata">
<platform>all</platform>
<summary lang="en_GB">DNS OVER HTTPS (DoH) resolver for Kodi.</summary>
<description lang="en_GB">dns over https resolve globally in python script with socket</description>
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
</assets>
</extension>
</addon>