-
Notifications
You must be signed in to change notification settings - Fork 2
/
addon.xml
23 lines (21 loc) · 1.02 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
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="script.module.webbrowser"
name="Web Browser"
version="1.0.0"
provider-name="corona">
<requires>
<import addon="xbmc.python" version="2.18.0" />
<import addon="script.module.futures" version="2.2.0" />
<!--<import addon="script.module.pyopenssl" version="1.0.0"/>-->
<import addon="script.module.requests" version="2.4.3"/>
<!--<import addon="script.module.pydevd" version="2.1.0" optional="true"/>-->
</requires>
<extension point="xbmc.python.module" library="lib" />
<extension point="xbmc.addon.metadata">
<platform>all</platform>
<summary>Module to provide control of a web browser</summary>
<description>Module to provide control of a web browser. See https://github.com/andrewleech/plugin.program.webdriver for more details</description>
<license>GNU GENERAL PUBLIC LICENSE. Version 2, June 1991</license>
<source>https://github.com/andrewleech/plugin.program.webdriver</source>
</extension>
</addon>