-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathaddon.xml
More file actions
35 lines (32 loc) · 1.5 KB
/
addon.xml
File metadata and controls
35 lines (32 loc) · 1.5 KB
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="script.web.viewer" name="Web Viewer" version="0.9.21" provider-name="Rick Phillips (ruuk)">
<requires>
<import addon="xbmc.python" version="2.1.0" />
<import addon="script.module.mechanize" version="0.2.6" />
<import addon="script.module.youtube.dl" version="14.304.0"/>
</requires>
<extension point="xbmc.python.script" library="lib/webviewer/webviewer.py">
<provides>executable</provides>
</extension>
<extension point="xbmc.python.module" library="lib" />
<extension point="xbmc.addon.metadata">
<platform>all</platform>
<summary lang="en">Simple web browser</summary>
<description lang="en">
Web Viewer is a linear text web browser. It is linear because it doesn't render pages, it filters them and displays text in the order it is found in the original HTML.
Web viewer also allows addon developers to process application authorization (ie. facebook,flickr etc.) with little programming and without violating terms of use.
What it does:
*You can follow links, fill out forms, view images
*Stream video/audio links
*It has back/forward history
*Bookmarks
What it doesn't do:
*Handle style sheets, javascript, flash, etc.
*Make web pages look good :)
*Lots of other stuff
</description>
<license>GNU GENERAL PUBLIC LICENSE. Version 2, June 1991</license>
<forum>http://forum.xbmc.org/showthread.php?tid=90007</forum>
<source>http://github.com/ruuk/script.web.viewer</source>
</extension>
</addon>