-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaddon.xml
20 lines (18 loc) · 929 Bytes
/
addon.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="script.imdbratings"
name="IMDB Ratings" version="2.0" provider-name="cosmicr">
<requires>
<import addon="xbmc.python" version="2.1.0"/>
<import addon="xbmc.gui" version="4.0.0"/>
</requires>
<extension point="xbmc.python.script" library="default.py">
<provides>executable</provides>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en">Get movie ratings from IMDB instead of regular scraper.</summary>
<description lang="en">The default movie scraper, themoviedb, is lacking in the ratings. IMDB contains much better ratings for movies.
This script when run will go through your movie library and update the movies ratings whilst keeping all the other meta data from themoviedb.
This script is not affiliated with IMDB.</description>
<platform>all</platform>
</extension>
</addon>