-
Notifications
You must be signed in to change notification settings - Fork 72
/
addon.xml
60 lines (58 loc) · 2.81 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<?xml version="1.0" encoding="UTF-8"?>
<addon id="plugin.googledrive" name="Google Drive" version="1.5.0" provider-name="Carlos Guzman (cguZZman)">
<requires>
<import addon="xbmc.python" version="3.0.0" />
<import addon="script.module.clouddrive.common" version="1.4.0"/>
</requires>
<extension point="xbmc.python.pluginsource" library="entrypoint.py">
<provides>image audio video</provides>
</extension>
<extension point="xbmc.service" library="service.py" start="login" />
<extension point="xbmc.addon.metadata">
<platform>all</platform>
<summary lang="en_GB">Google Drive for KODI</summary>
<description lang="en_GB">
Play all your media from Google Drive including Videos, Music and Pictures (including Google Photos).
- Unlimited number of accounts.
- Team Drives support
- Google Photos support
- Search over your drive.
- Auto-Refreshed slideshow.
- Export your videos to your library (.strm files)
- Use Google Drive as a source. **(Not currently working due to changes in the Google Drive API)
- This program is not affiliated with or sponsored by Google.
</description>
<summary lang="he_IL">כונן Google Drive של מיקרוסופט עבור קודי</summary>
<description lang="he_IL">
הפעל את כל המדיה שלך מ- Google Drive כולל וידאו, מוסיקה ותמונות.
- מספר בלתי מוגבל של חשבונות.
- חיפוש ומציאת הכונן שלך.
- ריענון מצגת אוטומטית.
- ייצוא קטעי הווידאו לספרייה שלך (קבצי .strm)
- תוכנית זו אינה קשורה או ממומנת על ידי Google.
</description>
<license>GPL-3.0-or-later</license>
<source>https://github.com/cguZZman/plugin.googledrive</source>
<forum>https://github.com/cguZZman/plugin.googledrive/issues</forum>
<website>https://addons.kodi.tv/show/plugin.googledrive</website>
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
</assets>
<news>
v1.5.0 released Jan 21, 2023:
- Kodi 20 fix
</news>
<disclaimer lang="en_GB">
This cloud drive addon uses a third-party authentication mechanism commonly known as OAuth 2.0.
If you want to know more about OAuth 2.0 you can visit the following pages:
- https://oauth.net/2/
- https://developers.google.com/identity/protocols/OAuth2
- https://docs.microsoft.com/en-us/onedrive/developer/rest-api/getting-started/msa-oauth
Kodi and myself take no responsibility or liability.
The authentication server URL is specified in Settings / Advanced / Sign-in Server. The Sign-in Server implements the OAuth 2.0 protocol.
The complete source code of the Sign-in Server can be download here: https://github.com/cguZZman/drive-login
You can clone the project and host it in your own server.
</disclaimer>
</extension>
</addon>