forked from XvBMC/repository.xvbmc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathxvbmc-addons.xml
1357 lines (1285 loc) · 67.6 KB
/
xvbmc-addons.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addons>
<addon
id="inputstream.rtmp"
version="1.0.4.20170223~ksv"
name="RTMP Input"
provider-name="spiff">
<requires>
<import addon="kodi.inputstream" version="1.0.6"/>
</requires>
<extension
point="kodi.inputstream"
name="rtmp"
protocols="rtmp|rtmpt|rtmpe|rtmpte|rtmps"
library_windows="inputstream.rtmp.dll" />
<extension point="xbmc.addon.metadata">
<summary lang="en">InputStream Client for RTMP streams</summary>
<description lang="en">InputStream Client for RTMP streams using librtmp</description>
<platform>windows</platform>
</extension>
</addon>
<addon id="net.rieter.xot"
version="4.1.7~alpha10"
name="Retrospect"
provider-name="Bas Rieter">
<requires>
<import addon="xbmc.metadata" version="1.0"/>
<import addon="xbmc.python" version="2.14.0"/>
<import addon="script.module.simplejson" version="3.3.0"/>
</requires>
<extension point="xbmc.python.pluginsource"
library="default.py"
id="net.rieter.xot.plugin">
<provides>video</provides>
</extension>
<extension point="xbmc.addon.metadata">
<platform>all</platform>
<minversion>29000</minversion>
<summary>Retrospect (previously XBMC Online TV) is a plugin that allows the playback of a lot of TV shows that are available (legally) via the broadcasters websites.</summary>
<description>Retrospect uses the official websites of a lot of different broadcasting companies (mainly Dutch, Belgian, British and Swedish) to make their re-run episodes available on the Kodi platform. More information can be found at www.rieter.net.[CR][CR]Retrospect reports back usage statistics to our servers. This option can be disabled from the add-on settings.</description>
<disclaimer>Retrospect is provided as is. We do not take any responsibility for possible (but highly unlikely) damage cause to your system. Nor do we take responsibility for the content that can be watched via this add-on.</disclaimer>
<nofanart>false</nofanart>
<language>en nl de se no lt lv fi</language>
</extension>
</addon>
<addon id="plugin.audio.ctrl-radio"
name=" [COLOR pink].:C.T.R.L:.[/COLOR][COLOR hotpink] Radio[/COLOR][COLOR red] [8bit][/COLOR]"
version="1.0.0"
provider-name="XvBMC-NL">
<requires>
<import addon="repository.xvbmc" version="4.2"/>
<import addon="xbmc.python" version="2.14.0"/>
</requires>
<extension point="xbmc.python.pluginsource" library="default.py">
<provides>audio</provides>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en">.:C.T.R.L:. Radio</summary>
<description lang="en">XvBMC-NL presents .:C.T.R.L:. radio</description>
<disclaimer lang="en">.:C.T.R.L:. Radio by XvBMC-NL, see: https://bit.ly/XvBMC-Gaming</disclaimer>
<platform>all</platform>
<license>GNU GENERAL PUBLIC LICENSE. Version 3, June 2007</license>
<forum>http://bit.ly/XvBMC-NL</forum>
<website>https://bit.ly/XvBMC-Android</website>
<source>http://bit.ly/XvBMC-Pi</source>
<news>v1.0.0: initial release</news>
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
<screenshot></screenshot>
</assets>
</extension>
</addon>
<addon id="plugin.audio.mp3streams" name="MP3 Streams" version="2017.09.09" provider-name="qahanik, kinkin, art by Marquerite">
<requires>
<import addon="xbmc.python" version="2.1.0"/>
<import addon="script.module.t0mm0.common" version="1.1.0"/>
<import addon="script.module.mutagen"/>
<import addon="script.module.requests" version="1.1.0"/>
</requires>
<extension point="xbmc.python.pluginsource" library="default.py">
<provides>audio</provides>
</extension>
<extension point="xbmc.service" library="playerMP3.py" start="startup" />
<extension point="xbmc.addon.metadata">
<platform>all</platform>
<summary>A music streaming collection</summary>
<description>Browse, stream or download your favourite songs and albums</description>
<news>fixed by qahanik (thank you very much!) / changed versioning to date-format / fixed album downloading / minor cosmetic cleanups</news>
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
</assets>
</extension>
</addon>
<addon id="plugin.audio.partyvibe" name="Party Vibe" version="1.0.0" provider-name="XvBMC">
<requires>
<import addon="xbmc.python" version="2.1.0"/>
<import addon="script.module.addon.common" version="2.0.0"/>
</requires>
<extension point="xbmc.python.pluginsource" library="startaudio.py">
<provides>audio</provides>
</extension>
<extension point="xbmc.addon.metadata">
<platform>all</platform>
<summary lang="nl">Party Vibe</summary>
<description lang="nl">Party Vibe Radio Addon, several high quality streams.</description>
<disclaimer>None</disclaimer>
<language>nl</language>
<platform>all</platform>
</extension>
</addon>
<addon id="plugin.audio.slam" name="Slam!" version="1.2.0" provider-name="XvBMC">
<requires>
<import addon="xbmc.python" version="2.1.0"/>
<import addon="script.module.addon.common" version="2.0.0"/>
</requires>
<extension point="xbmc.python.pluginsource" library="startaudio.py">
<provides>audio</provides>
</extension>
<extension point="xbmc.addon.metadata">
<platform>all</platform>
<summary lang="nl">Slam!</summary>
<description lang="nl">Slam! Addon</description>
<disclaimer>None</disclaimer>
<language>nl</language>
<platform>all</platform>
</extension>
</addon>
<addon id="plugin.program.super.favourites" name="Super Favourites" version="1.0.59" provider-name="spoyser">
<requires>
<import addon="xbmc.python" version="2.14.0"/>
<import addon="script.module.metahandler" optional="true" />
</requires>
<extension point="xbmc.python.pluginsource" library="default.py">
<provides>video audio image executable</provides>
</extension>
<extension point="xbmc.service" library="service.py" start="startup" />
<extension point="xbmc.addon.metadata">
<summary lang="en">Put all your favourites bits of all your favourites addons into one easy to use addon.</summary>
<description lang="en">Super Favourites is a better way of managing your Kodi Favourites.[CR][CR]Virtually any menu item within Kodi can be added to Super Favourites, even from addons that don't normally provide this feature.[CR][CR]Super Favourites allows you to better manage your Kodi favourites, including the creation of sub-folders, into which your Kodi favourites can then be copied or moved into.[CR][CR]This allows you to create you own custom addon with just the best bits of your favourite addons. Search your favourite addons, play your favourite music, read your favourite comic strips, select your favourite playlists, browse your favourite movies, listen to your favourite radio stations, watch your favourite cartoons, the possibilities are endless, all from within one easy to use addon.</description>
<platform>all</platform>
<language>en</language>
<license>GNU GENERAL PUBLIC LICENSE. Version 2, June 1991</license>
<forum>http://forum.xbmc.org/showthread.php?tid=192662</forum>
<website></website>
<source>https://github.com/spoyser/spoyser-repo/tree/master/plugin.program.super.favourites</source>
<email>seanpoyser at gmail.com</email>
<news>
1.0.59: 29th May 2017
- 'Now playing' text now defined by SF due to skin variations
</news>
</extension>
<extension point="kodi.context.item">
<menu id="kodi.core.main">
<item library="capture.py">
<label>$ADDON[plugin.program.super.favourites 30002]</label>
<visible>!IsEmpty(Window(Home).Property(SF_STD_CONTEXTMENU_ENABLED)) + !StringCompare(Container.PluginName,plugin.program.super.favourites)</visible>
</item>
<item library="menu_addtofaves.py">
<label>$ADDON[plugin.program.super.favourites 30047]</label>
<visible>!IsEmpty(Window(Home).Property(SF_STD_ADDTOFAVES_ENABLED)) + !StringCompare(Container.PluginName,plugin.program.super.favourites)</visible>
</item>
<item library="menu_download.py">
<label>$ADDON[plugin.program.super.favourites 30259]</label>
<visible>!IsEmpty(Window(Home).Property(SF_STD_DOWNLOAD_ENABLED)) + Player.IsInternetStream</visible>
</item>
</menu>
</extension>
</addon>
<addon id="plugin.program.xvbmcinstaller.nl" name=" [COLOR lime][B]X[/B][/COLOR]vBMC-[COLOR white]NL[/COLOR] wizard/installer" version="1.0.5" provider-name="XvBMC-NL">
<requires>
<import addon="repository.xvbmc" version="4.2" optional="true"/>
<import addon="xbmc.python" version="2.1.0"/>
</requires>
<extension point="xbmc.python.pluginsource" library="default.py">
<provides>executable</provides>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en">XvBMC-NL installer (Wizard)</summary>
<description lang="en">easy install XvBMC with KODI / XBMC Wizard \ Kodi Wizard / XvBMC Nederland \ NL</description>
<disclaimer lang="en">! USE AT YOUR OWN RISK ! ! MORE iNFO @ http://bit.ly/XvBMC-NL !</disclaimer>
<platform>all</platform>
<license>GNU GENERAL PUBLIC LICENSE. Version 3, June 2007</license>
<forum>http://bit.ly/XvBMC-Pi</forum>
<website>https://bit.ly/XvBMC-Android</website>
<source>http://bit.ly/XvBMC-NL</source>
<news>XvBMC-NL vOoDoO</news>
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
<screenshot></screenshot>
</assets>
</extension>
</addon>
<addon id="plugin.video.Allesin1NL!"
name="Alles in [COLOR orange][B]1[/B][/COLOR] NL [COLOR dimgray](by[/COLOR] [COLOR lime]X[/COLOR][COLOR dimgray]v[/COLOR][COLOR white]BMC[/COLOR] [COLOR dimgray][B]NL[/B])[/COLOR]"
version="1.0.12"
provider-name="XvBMC-NL">
<requires>
<import addon="repository.xvbmc" version="4.2"/>
<import addon="xbmc.python" version="2.1.0" />
<import addon="plugin.video.youtube" version="5.4"/>
</requires>
<extension point="xbmc.python.pluginsource" library="default.py">
<provides>video</provides>
</extension>
<extension point="xbmc.addon.metadata">
<summary>diverse (nl) streams</summary>
<description>Diverse youtube Streams muziek, NL series/films/docu's, Nl kids, NL Cabaret, XvBMC handleidingen, Vlaams, .:C.T.R.L:. Gaming Room, Cirque Du Soleil, Nl racing, DanceTrippin TV, Van Alles Wat NL, Muziek uit Limburg. Door en Voor de XvBMC community, Heb je zelf een Youtube stream gespot die hier wel in zou passen, meld het ons dan even op onze FB pagina Films/series/muziek chat by XvBMC Nederland (xbmc nl Dutch)</description>
<disclaimer>Alles-in-1-NL more info @ http://bit.ly/XvBMC-NL (USE_AT_YOUR_OWN!_RISK!)</disclaimer>
<platform>all</platform>
<license>GNU GENERAL PUBLIC LICENSE. Version 3, June 2007</license>
<forum>https://www.fb.com/groups/XvBMCnederland/</forum>
<website>http://bit.ly/XvBMC-NL</website>
<source>http://bit.ly/XvBMC-Pi</source>
<news>[B]Version 1.0.12[/B]: CodeCosmetics+VoOdOo (no mo' evil sheit)</news>
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
<screenshot></screenshot>
</assets>
</extension>
</addon>
<addon id="plugin.video.arrowtv"
name="ARROW.TV"
version="1.0.4"
provider-name="DSS">
<requires>
<import addon="xbmc.python" version="2.1.0"/>
</requires>
<extension point="xbmc.python.pluginsource" library="default.py">
<provides>video</provides>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en">ARROW.TV</summary>
<description lang="en">ARROW.TV</description>
<platform>all</platform>
</extension>
</addon>
<addon id="plugin.video.avp" name="Alien vs Predator" version="1.0.1" provider-name="Morpheus">
<requires>
<import addon="xbmc.python" version="2.1.0"/>
<import addon="script.module.urlresolver" version="3.0.12"/>
<import addon="script.module.metahandler" version="2.5.1"/>
</requires>
<extension point="xbmc.python.pluginsource" library="default.py">
<provides>video</provides>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en"></summary>
<description lang="en"></description>
<disclaimer lang="en"></disclaimer>
<language>en</language>
<platform>all</platform>
<website></website>
<email></email>
</extension>
</addon>
<addon id="plugin.video.bonanza"
name="IPTV BONANZA"
version="1.0.0"
provider-name="BONANZA">
<requires>
<import addon="xbmc.python" version="2.1.0"/>
<import addon="script.video.F4mProxy" version="2.5.7" />
</requires>
<extension point="xbmc.python.pluginsource"
library="default.py">
<provides>video</provides>
</extension>
<extension point="xbmc.addon.metadata">
<platform>all</platform>
<license>GPL 2.0</license>
<summary lang="en">IPTV BONANZA</summary>
<description lang="en">Find and play daily IPTV lists in blogs and websites.</description>
</extension>
</addon>
<addon id="plugin.video.carpool-karaoke"
name="Carpool Karaoke"
version="1.0.4"
provider-name="Scott Marten">
<requires>
<import addon="xbmc.python" version="2.1.0"/>
<import addon="script.module.addon.common" version="2.0.0"/>
<import addon="plugin.video.youtube" version="5.0.0"/>
</requires>
<extension point="xbmc.python.pluginsource" library="default.py">
<provides>video</provides>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en">The Late Late Show with James Corden</summary>
<description lang="en"> </description>
<platform>all</platform>
<forum>n/a</forum>
<website>n/a</website>
</extension>
</addon>
<addon id="plugin.video.covenant" version="1.1.30" name="Covenant" provider-name="Covenant">
<requires>
<import addon="xbmc.python" version="2.19.0" />
<import addon="repository.xvbmc" version="4.2"/> <!--Temp.mirror -->
<!-- <import addon="repository.colossus" optional="true"/> !!stopped!! -->
<import addon="script.module.covenant" />
<import addon="script.covenant.artwork" version="1.0.0" />
<import addon="script.covenant.metadata" version="1.0.0" />
<import addon="script.module.urlresolver" version="3.0.0" />
<import addon="script.module.requests" />
<import addon="script.module.metahandler" version="1.0.0" />
</requires>
<extension point="xbmc.python.pluginsource" library="covenant.py">
<provides>video</provides>
</extension>
<extension point="xbmc.service" library="service.py" start="startup" />
<extension point="xbmc.addon.metadata">
<summary lang="en">Covenant</summary>
<description lang="en">[I]A New Generation[/I][CR][CR][B]Covenant Movies and TV[/B][CR][CR]This addon does not form part of the Kodi Media Centre. Please do not seek assistance with this addon from any of the Official Kodi Support Channels.[CR][CR]The author does not host any of the content in this addon and takes no responsibility for content found.</description>
<description lang="hr">[I]Nova generacija[/I][CR][CR][B]Covenant Filmova i TV serija[/B][CR][CR]Ovaj dodatak ne sadrži dijelove Kodi Medijskog Centra. Ne tažite pomoć za ovaj dodatak na službenim kanalima podrške za Kodi.[CR][CR]Autor ne posjeduje bilo kakav sadržaj u ovom dodatku i ne preuzima bilo kakvu odgovornost za pronađeni sadržaj.</description>
<description lang="he">[I]הדור החדש[/I][CR][CR][B]Covenant סרטים וסדרות[/B][CR][CR]ההרחבה הזו אינה חלק של Kodi Media Center. אנא אל תבקש עזרה עם ההרחבה זה מכל אחד מערוצי התמיכה הרשמיים של Kodi [CR][CR]. אין למחבר תוכן בהרחבה הזו והמחבר אינו אחראי לתוכן שנמצא.</description>
<platform>all</platform>
<license>GNU GENERAL PUBLIC LICENSE. Version 3, 29 June 2007</license>
<forum></forum>
<website></website>
<source></source>
<disclaimer lang="en">The author of this addon do not host any of the content which is found and have no affiliation with any of the content providers. This addon simply searches websites for content. Use at your own risk!</disclaimer>
<disclaimer lang="hr">Autor ovog dodatka ne posjeduje bilo kakav sadržaj koji je pronađen i nije povezan sa bilo kojim izvorom sadržaja. Ovaj dodatak samo pretražuje sadržaj na web stranicama. Koristite ga na vlastitu odgovornost!</disclaimer>
<disclaimer lang="he">מחבר ההרחבה זה אינו מארח את התוכן שיתכן ויימצא ואין לו זיקה לאף אחד מספקי התוכן. הרחבה רק מחפשת תוכן שקיים באתרי אינטרנט. השימוש בהרחבה הוא על אחריותך בלבד!</disclaimer>
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
<screenshot>resources/screenshots/screenshot-01.jpg</screenshot>
<screenshot>resources/screenshots/screenshot-02.jpg</screenshot>
<screenshot>resources/screenshots/screenshot-03.jpg</screenshot>
</assets>
<news></news>
</extension>
</addon>
<addon id="plugin.video.djRegard"
name="DjRegard Official"
version="1.0.4"
provider-name="Scott Marten">
<requires>
<import addon="xbmc.python" version="2.1.0"/>
<import addon="script.module.addon.common" version="2.0.0"/>
<import addon="plugin.video.youtube" version="5.0.0"/>
</requires>
<extension point="xbmc.python.pluginsource" library="default.py">
<provides>video</provides>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en">Best Of Vocal Deep House Music</summary>
<description lang="en"> </description>
<platform>all</platform>
<forum>n/a</forum>
<website>n/a</website>
</extension>
</addon>
<addon id="plugin.video.dss" version="12.0.1" name="DSS" provider-name="DSS">
<requires>
<import addon="xbmc.python" version="2.1.0"/>
<import addon="script.module.libtorrent" optional="true"/>
</requires>
<extension point="xbmc.python.pluginsource" library="default.py">
<provides>video</provides>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en">DSS Sport and More</summary>
<description lang="en">Kindly note that DSS is not an official part of the media player you are running, and therefore not to be mentioned within official support channels, this addon has nothing to do with the media player itself, nor it’s intended use, it is simply a third party plugin which has been added to your system.</description>
<platform>all</platform>
<license>GNU GPL v3</license>
</extension>
<extension point="xbmc.service" library="library_service.py" start="login|startup">
</extension>
</addon>
<addon id="plugin.video.elementum" name="Elementum" version="0.0.43" provider-name="elgatito">
<requires>
<import addon="xbmc.addon" version="16.0.0" />
<import addon="xbmc.python" version="2.24.0" />
<import addon="repository.elementum" optional="true" />
</requires>
<extension point="xbmc.python.pluginsource" library="navigation.py">
<provides>video</provides>
</extension>
<extension point="xbmc.service" library="service.py" start="startup" />
<extension point="xbmc.python.module" library="resources/site-packages" />
<extension point="xbmc.subtitle.module" library="navigation.py" />
<extension point="xbmc.addon.metadata">
<summary lang="en">Elementum: Media streaming</summary>
<summary lang="hr">Elementum: Medijsko strujanje</summary>
<description lang="en">Elementum is a torrent finding and streaming engine. It doesn't go on torrent websites for legal reasons. However, it calls specially crafted add-ons (called providers) that are installed separately.[CR]This project is a fork of the well known, but no longer maintained Pulsar/Quasar projects from steeve and scakemyer.</description>
<description lang="hr">Elementum je pogon pretraživanja i strujanja. Ne posjećuje torrent web stranice iz pravnih razloga. Ipak, koristi posebno napravljene dodatke (nazvane pružatelji usluge) koji su instalirani odvojeno.[CR]Ovaj projekt je ogranak dobro poznatih, ali više ne održavanih Pulsar/Quasar projekata od autora steevea i scakemyera.</description>
<disclaimer lang="en">The author does not own or host any content found within this Addon. The author is not connected to or in any other way affiliated with Kodi, Team Kodi, or the XBMC Foundation.</disclaimer>
<disclaimer lang="hr">Autor ovog dodatka ne posjeduje i ne distribuira bilo kakav sadržaj koji je pronađen. Autor nije povezan sa ili na bilo koji drugi način bilo sa Kodijem, Team Kodijem ili XBMC fundacijom.</disclaimer>
<language>en el es de fi fr he hr it nl pt ro sk</language>
<platform>all</platform>
<website>http://elementum.surge.sh/</website>
<source>https://github.com/elgatito/plugin.video.elementum</source>
<forum></forum>
<license>Non commercial. See https://github.com/elgatito/plugin.video.elementum/blob/master/LICENSE</license>
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
<screenshot></screenshot>
</assets>
</extension>
</addon>
<addon id="plugin.video.epicjijbuis"
name=" [B][COLOR white]EP[/B][COLOR dodgerblue]i[/COLOR][B]C[/B][/COLOR] JijBuis [COLOR dimgray]C.B.S.[/COLOR] [COLOR red][8bit][/COLOR] [COLOR dimgray]-MusicVideoChannel-[/COLOR]"
version="1.1.7"
provider-name="XvBMC-NL">
<requires>
<import addon="repository.xvbmc" version="4.2"/>
<import addon="xbmc.python" version="2.1.0" />
<import addon="plugin.video.youtube" version="5.4"/>
</requires>
<extension point="xbmc.python.pluginsource" library="default.py">
<provides>video</provides>
</extension>
<extension point="xbmc.addon.metadata">
<summary>[B]EPiC[/B] JijBuis [COLOR white][B]C[/B][/COLOR]an't [COLOR white][B]B[/B][/COLOR]e [COLOR white][B]S[/B][/COLOR]topped</summary>
<description>[B]EPiC[/B] JijBuis [COLOR white][B]C[/B][/COLOR]an't [COLOR white][B]B[/B][/COLOR]e [COLOR white][B]S[/B][/COLOR]topped [COLOR red][8bit][/COLOR] [COLOR dimgray]the[B] nr.1 [/B]Kodi music add-on[/COLOR]</description>
<disclaimer>[B]EPiC[/B] JijBuis [COLOR white]C.B.S.[/COLOR] [B]-[/B]info @ http://bit.ly/XvBMC-NL (USE_AT_YOUR_OWN!_RISK!)</disclaimer>
<platform>all</platform>
<license>GNU GENERAL PUBLIC LICENSE. Version 3, June 2007</license>
<forum>https://www.fb.com/groups/XvBMCnederland/</forum>
<website>http://bit.ly/XvBMC-NL</website>
<source>http://bit.ly/XvBMC-Pi</source>
<news>[B]Version 1.1.7[/B]: XvBMC-NL VoOdOo</news>
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
<screenshot></screenshot>
</assets>
</extension>
</addon>
<addon id="plugin.video.kidstime"
name="KidsTime"
version="1.1.4"
provider-name="KAOSbox+XvBMC-NL">
<requires>
<import addon="xbmc.python" version="2.1.0"/>
<import addon="repository.xvbmc" version="4.2"/>
<import addon="script.module.addon.common" version="2.0.0"/>
<import addon="plugin.video.youtube" version="5.4"/>
</requires>
<extension point="xbmc.python.pluginsource" library="default.py">
<provides>video</provides>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="nl">KidsTime</summary>
<description lang="nl">De beste en leukste YouTube kanalen voor kinderen.</description>
<disclaimer>By using this, you take reponsibility for anything that happens.</disclaimer>
<platform>all</platform>
<license>GNU GENERAL PUBLIC LICENSE. Version 3, June 2007</license>
<forum>https://www.fb.com/groups/XvBMCnederland/</forum>
<website>http://bit.ly/XvBMC-NL</website>
<source>http://bit.ly/XvBMC-Pi</source>
<news>[B]Version 1.1.4[/B]: VoOdOo+CodeCosmetics</news>
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
<screenshot></screenshot>
</assets>
</extension>
</addon>
<addon id="plugin.video.kindertube"
name="KinderTube"
version="1.0.2"
provider-name="Highway+KAOSbox+XvBMC-NL">
<requires>
<import addon="xbmc.python" version="2.1.0"/>
<import addon="repository.xvbmc" version="4.2"/>
<import addon="script.module.urlresolver" version="4.0.16"/>
<import addon="plugin.video.vimeo" optional="true"/>
<import addon="plugin.video.youtube" version="5.4"/>
<import addon="script.module.metahandler" optional="true" />
<import addon="script.module.addon.common" optional="true"/>
<import addon="script.common.plugin.cache" optional="true"/>
<import addon="script.module.t0mm0.common" optional="true"/>
</requires>
<extension point="xbmc.python.pluginsource" library="default.py">
<provides>video</provides>
</extension>
<extension point="xbmc.addon.metadata">
<summary></summary>
<description>De leukste kinderfilmpjes</description>
<disclaimer>By using this, you take reponsibility for anything that happens.</disclaimer>
<platform>all</platform>
<license>GNU GENERAL PUBLIC LICENSE. Version 3, June 2007</license>
<forum>https://www.fb.com/groups/XvBMCnederland/</forum>
<website>http://bit.ly/XvBMC-NL</website>
<source>http://bit.ly/XvBMC-Pi</source>
<news>[B]Version 1.0.2[/B]: CodeCosmetics+VoOdOo</news>
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
<screenshot></screenshot>
</assets>
</extension>
</addon>
<addon id="plugin.video.nederland24" name="Nederland 24" version="4.5.6" provider-name="bosel">
<requires>
<import addon="xbmc.python" version="2.24.0"/>
<import addon="script.module.beautifulsoup" version="3.0.8"/>
</requires>
<extension point="xbmc.python.pluginsource" library="nederland24.py">
<provides>video</provides>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en_GB">Dutch Public Broadcasting (NPO)- Live television, thematic digital channels and news broadcasts</summary>
<summary lang="nl_NL">De Nederlandse Publieke Omroep (NPO) - Live televisie, digitale themakanalen en het laatste Journaal.</summary>
<description lang="en_GB">Dutch Public Broadcasting (NPO) is anyone's and for everyone. We create programmes for radio, television and internet. These programmes connect you to the world around you.</description>
<description lang="nl_NL">De Nederlandse Publieke Omroep (NPO) is van iedereen en voor iedereen. We maken programma’s op radio, televisie en internet. Die programma’s verbinden je met de wereld om je heen.</description>
<platform>all</platform>
<language>nl</language>
<license>GPLv3</license>
<forum></forum>
<website>https://github.com/bosel/plugin.video.nederland24</website>
<email></email>
<source>https://github.com/bosel/plugin.video.nederland24</source>
<disclaimer lang="en_GB">Copyright 2011-2017 bosel.This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.</disclaimer>
<news>Fix journaal channels 2017-03-21</news>
</extension>
</addon>
<addon id="plugin.video.noxmusic"
name="Nox Music"
version="1.0.4"
provider-name="XvBMC-NL">
<requires>
<import addon="repository.xvbmc" version="4.2.0"/>
<import addon="xbmc.python" version="2.1.0"/>
<import addon="plugin.video.youtube" version="5.4"/>
</requires>
<extension point="xbmc.python.pluginsource" library="default.py">
<provides>video</provides>
</extension>
<extension point="xbmc.addon.metadata">
<summary>XvBMC MUZIEK COLLECTIE</summary>
<description>Youtube (Muziek) Streams</description>
<disclaimer>XvBMC Nederland Youtube Lekker Chillen Streams (USE_AT_YOUR!_OWN!_RISK!) ---> more info @ http://bit.ly/XvBMC-NL</disclaimer>
<platform>all</platform>
<license>GNU GENERAL PUBLIC LICENSE. Version 3, June 2007</license>
<forum>https://www.fb.com/groups/XvBMCnederland/</forum>
<website>http://bit.ly/XvBMC-NL</website>
<source>https://www.facebook.com/groups/XvBMCnederland/</source>
<news>[B]Version 1.0.4[/B]: Updates</news>
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
<screenshot></screenshot>
</assets>
</extension>
</addon>
<addon id="plugin.video.nys"
name="NYS Nederlandse YouTube Selectie"
version="1.1"
provider-name="XvBMC">
<requires>
<import addon="xbmc.python" version="2.1.0"/>
<import addon="script.module.t0mm0.common" version="2.0.0"/>
<import addon="script.module.simple.downloader" version="0.9.4"/>
<import addon="script.module.beautifulsoup" version="3.2.1"/>
<import addon="script.module.requests" />
<import addon="script.module.httplib2" />
<import addon="script.module.youtube.dl" optional="true"/>
<import addon="plugin.video.youtube" version="3.0.0"/>
<import addon="script.module.simplejson" />
</requires>
<extension point="xbmc.python.pluginsource" library="default.py">
<provides>video</provides>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en">NYS Nederlandse YouTube Selectie</summary>
<summary lang="nl">NYS Nederlandse YouTube Selectie</summary>
<description lang="en">A collection of mainly Dutch YouTube users and channels</description>
<description lang="nl">Een selectie van voornamelijk Nederlandse YouTube gebruikers en kanalen</description>
<platform>all</platform>
</extension>
</addon>
<addon id="plugin.video.party-time!"
name="Party Time!"
version="1.0.5"
provider-name="Scott Marten">
<requires>
<import addon="xbmc.python" version="2.1.0"/>
<import addon="script.module.addon.common" version="2.0.0"/>
<import addon="plugin.video.youtube" version="5.0.0"/>
</requires>
<extension point="xbmc.python.pluginsource" library="default.py">
<provides>video</provides>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en">Harderstylez Podcast and more!</summary>
<description lang="en">Great collection of Hardstyle and Hardcore youtube movies, and podcasts from Zany, Coone, Brennan Heart enz enz..</description>
<platform>all</platform>
<forum>n/a</forum>
<website>n/a</website>
</extension>
</addon>
<addon id="plugin.video.poker"
name="Poker"
version="1.0.2"
provider-name="XvBMC-NL">
<requires>
<import addon="repository.xvbmc" version="4.0.1"/>
<import addon="xbmc.python" version="2.1.0"/>
<!--<import addon="script.module.addon.common" version="2.0.0"/>-->
<import addon="plugin.video.youtube" version="5.3.12"/>
</requires>
<extension point="xbmc.python.pluginsource" library="default.py">
<provides>video</provides>
</extension>
<extension point="xbmc.addon.metadata">
<summary>XvBMC POKER COLLECTIE</summary>
<description>Youtube (Poker) Streams</description>
<disclaimer>XvBMC Nederland Youtube POKER COLLECTIE Streams (USE_AT_YOUR!_OWN!_RISK!) ---> more info @ http://bit.ly/XvBMC-NL</disclaimer>
<platform>all</platform>
<license>GNU GENERAL PUBLIC LICENSE. Version 3, June 2007</license>
<forum>https://www.fb.com/groups/XvBMCnederland/</forum>
<website>http://bit.ly/XvBMC-NL</website>
<source>https://www.facebook.com/groups/XvBMCnederland/</source>
<news>[B]Version 1.0.2[/B]: Updates</news>
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
<screenshot></screenshot>
</assets>
</extension>
</addon>
<addon id="plugin.video.quasar" name="Quasar" version="0.9.78" provider-name="scakemyer">
<requires>
<import addon="xbmc.addon" version="16.0.0" />
<import addon="xbmc.python" version="2.24.0" />
<import addon="repository.quasar" optional="true" />
<import addon="script.quasar.burst" optional="true" />
</requires>
<extension point="xbmc.python.pluginsource" library="navigation.py">
<provides>video</provides>
</extension>
<extension point="xbmc.service" library="service.py" start="startup" />
<extension point="xbmc.python.module" library="resources/site-packages" />
<extension point="xbmc.subtitle.module" library="navigation.py" />
<extension point="xbmc.addon.metadata">
<summary lang="en">Quasar: Torrent streaming</summary>
<description lang="en">Quasar is a torrent finding and streaming engine. It doesn't go on torrent websites for legal reasons. However, it calls specially crafted add-ons (called providers) that are installed separately.[CR]This project is a fork of the well known, but no longer maintained Pulsar project from steeve.</description>
<language>en el es de fi fr he hr it nl pt ro sk</language>
<platform>all</platform>
<website>https://github.com/scakemyer/plugin.video.quasar</website>
<source>https://github.com/scakemyer/plugin.video.quasar</source>
<forum>http://forum.kodi.tv/showthread.php?tid=257967</forum>
<license>Non commercial. See https://github.com/scakemyer/plugin.video.quasar/blob/master/LICENSE</license>
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
<screenshot>resources/screenshots/home.jpg</screenshot>
<screenshot>resources/screenshots/movies.jpg</screenshot>
<screenshot>resources/screenshots/webui.png</screenshot>
</assets>
</extension>
</addon>
<addon id="plugin.video.redmusic"
name="redmusic"
version="1.0.2"
provider-name="OneLoveCunt">
<requires>
<import addon="xbmc.python" version="2.14.0"/>
<import addon="script.module.addon.common" version="2.0.0"/>
<import addon="plugin.video.youtube" version="5.0.0"/>
</requires>
<extension point="xbmc.python.pluginsource" library="default.py">
<provides>video</provides>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en">RedMusic: HotMusicCharts</summary>
<description lang="en">Music Hits 2017 - Best Songs Playlist</description>
<platform>all</platform>
<license>GPL v2.0</license>
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
</assets>
<news>Updated with new artwork resources</news>
</extension>
</addon>
<addon id="plugin.video.relax"
name="Relax"
version="1.0.4"
provider-name="XvBMC-NL">
<requires>
<import addon="repository.xvbmc" version="4.1.0"/>
<import addon="xbmc.python" version="2.1.0"/>
<!--<import addon="script.module.addon.common" version="2.0.0"/>-->
<import addon="plugin.video.youtube" version="5.4.0"/>
</requires>
<extension point="xbmc.python.pluginsource" library="default.py">
<provides>video</provides>
</extension>
<extension point="xbmc.addon.metadata">
<summary>XvBMC RELAX COLLECTIE</summary>
<description>Youtube (Relax) Streams</description>
<disclaimer>XvBMC Nederland Youtube RELAX COLLECTIE Streams (USE_AT_YOUR!_OWN!_RISK!) ---> more info @ http://bit.ly/XvBMC-NL</disclaimer>
<platform>all</platform>
<license>GNU GENERAL PUBLIC LICENSE. Version 3, June 2007</license>
<forum>https://www.fb.com/groups/XvBMCnederland/</forum>
<website>http://bit.ly/XvBMC-NL</website>
<source>https://www.facebook.com/groups/XvBMCnederland/</source>
<news>[B]Version 1.0.4[/B]: Updates</news>
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
<screenshot></screenshot>
</assets>
</extension>
</addon>
<addon id="plugin.video.saltsrd.lite" version="2.0.238" name="Salts RD Lite" provider-name="XvBMC-NL">
<requires>
<import addon="xbmc.python" version="2.19.0"/>
<import addon="repository.xvbmc" version="4.2"/> <!-- RD Lite MOD -->
<import addon="script.module.futures" version="2.2.0"/> <!-- NEW -->
<import addon="script.module.metahandler" version="3.0.2" /> <!-- NEW -->
<import addon="script.module.pyxbmct" version="1.2.0"/> <!-- NEW -->
<!-- <import addon="repository.tknorris.beta" version="1.0.5" optional="true"/> !!stopped!! -->
<!-- <import addon="repository.k3l3vra" version="1.0.1"/ optional="true"/> !!stopped!! -->
<!-- <import addon="repository.Cypherslocker" version="1.0.2"/ optional="true"/> !!stopped!! -->
<import addon="script.module.dateutil" version="2.5.3"/>
<import addon="script.module.myconnpy" version="1.1.7"/>
<import addon="script.module.saltsrd.shared" version="0.0.23"/> <!-- script.module.tknorris.shared -->
<import addon="script.module.six" version="1.9.0"/>
<import addon="script.module.urlresolver" version="4.0.12"/>
<!-- <import addon="script.module.image_cache" version="0.0.8" optional="true"/> BROKEN !!! -->
</requires>
<extension point="xbmc.python.pluginsource" library="default.py">
<provides>video</provides>
</extension>
<extension point="xbmc.service" library="service.py" start="startup"/>
<extension point="xbmc.addon.metadata">
<summary>Stream video from many difference sources with XvBMC SALTs RD Lite (RealDebrid)</summary>
<description>This is the MOD version of SALTs by XvBMC -4- RealDebrid usage (also a big thx to: TKnorris/k3l3vra/Cypher/MR.Blamo)</description>
<disclaimer>MOD info @ http://bit.ly/XvBMC-NL (USE_AT_YOUR_OWN!_RISK!) ---> *C*R*E*D*I*T*S* TKnorris/k3l3vra/Cypher/MR.Blamo</disclaimer>
<platform>all</platform>
<license>GNU GENERAL PUBLIC LICENSE. Version 3, June 2007</license>
<forum>https://www.facebook.com/groups/XvBMCnederland/</forum>
<website>repository.xvbmc</website>
<source>http://bit.ly/XvBMC-NL</source>
<news>[B]Version 2.0.238[/B]: VoOdOo</news>
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
</assets>
</extension>
</addon>
<addon id="plugin.video.sport"
name="Sport"
version="1.0.6"
provider-name="XvBMC-NL">
<requires>
<import addon="repository.xvbmc" version="4.0.2"/>
<import addon="xbmc.python" version="2.1.0"/>
<import addon="plugin.video.youtube" version="5.4"/>
</requires>
<extension point="xbmc.python.pluginsource" library="default.py">
<provides>video</provides>
</extension>
<extension point="xbmc.addon.metadata">
<summary>XvBMC SPORT COLLECTIE</summary>
<description>Youtube (Sport) Streams</description>
<disclaimer>XvBMC Nederland Youtube SPORT COLLECTIE Streams (USE_AT_YOUR!_OWN!_RISK!) ---> more info @ http://bit.ly/XvBMC-NL</disclaimer>
<platform>all</platform>
<license>GNU GENERAL PUBLIC LICENSE. Version 3, June 2007</license>
<forum>https://www.fb.com/groups/XvBMCnederland/</forum>
<website>http://bit.ly/XvBMC-NL</website>
<source>https://www.facebook.com/groups/XvBMCnederland/</source>
<news>[B]Version 1.0.6[/B]: Updates</news>
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
<screenshot></screenshot>
</assets>
</extension>
</addon>
<addon
id="plugin.video.SportsDevil"
version="2018.01.19x"
name="SportsDevil"
provider-name="SportsDevil">
<requires>
<import addon="xbmc.python" version="2.14.0"/>
<import addon="repository.xvbmc" version="4.2"/>
<import addon="script.module.dateutil" />
<import addon="script.module.simplejson" />
<import addon="script.module.six" />
<import addon="script.module.requests" />
<import addon="script.module.streamlink.base" />
<import addon="script.video.F4mProxy" />
<import addon="plugin.video.f4mTester" />
<!-- <import addon="script.module.livestreamer" /> *Changed-2-StreamLink* -->
<!-- *broken* <import addon="repository.unofficialsportsdevil" version="1.0.0" optional="true"/> *broken* -->
</requires>
<extension
point="xbmc.python.pluginsource"
library="default.py">
<provides>video</provides>
</extension>
<!-- <extension point="xbmc.service" library="service/proxy_service.py" start="startup"/> *Changed-2-StreamLink* -->
<extension point="xbmc.service" library="service/streamlink_proxy.py" start="startup" />
<extension point="xbmc.addon.metadata">
<summary>Play videos of different ad-financed sports streaming sites (XvBMC-NL acts only as a mirror for SportsDevil).</summary>
<description>Play videos of different ad-financed sports streaming sites (XvBMC-NL acts only as a mirror for SportsDevil).</description>
<disclaimer>SportsDevil does not provide any streams of its own; stream quality, content and copyright are responsibility of the ad-financed source web site. For updates - check the readme (XvBMC-NL acts only as a mirror for SportsDevil).</disclaimer>
<license>GNU GENERAL PUBLIC LICENSE. Version 2, June 1991</license>
<platform>all</platform>
<forum>http://forums.koditips.com/index.php?topic=11.0</forum>
<website>http://forums.koditips.com/index.php?topic=11.0</website>
<source>http://forums.koditips.com/index.php?topic=11.0</source>
<news>version="2018.01.19x" (mirror@xvbmc)</news>
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
</assets>
</extension>
</addon>
<addon id="plugin.video.spotitube" name="Youtube Music" version="2.0.8" provider-name="LORE/realvito">
<requires>
<import addon="xbmc.python" version="2.14.0"/>
<import addon="script.module.simplejson" optional="true"/>
<import addon="plugin.video.youtube" version="5.2.1"/>
</requires>
<extension point="xbmc.python.pluginsource" library="default.py">
<provides>video audio</provides>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="de">Musik über Youtube abspielen</summary>
<summary lang="en">Play Music via Youtube</summary>
<description lang="de">@realvito[CR]Musik aus verschiedenen Quellen z.B. Billboard, iTunes, Spotify etc. auswählen und über Youtube abspielen.[CR][CR]Für mehr Informationen zu allen Neuerungen siehe - CHANGELOG.[CR] TEST IT AND LIKE IT</description>
<description lang="en">@realvito[CR]Choose Music from different sources e.g. Billboard, iTunes, Spotify etc. and play it via Youtube.[CR][CR]For more information about all new features see - CHANGELOG.[CR] TEST IT AND LIKE IT</description>
<disclaimer lang="de">Die von diesem Addon dargestellten Inhalte werden von den Erstellern des Addons weder gehostet oder verbreitet, noch stehen die Ersteller in irgendeiner Beziehung zu den Anbietern des Inhalts.</disclaimer>
<disclaimer lang="en">The author does not host or distribute any of the content displayed by this addon. The author does not have any affiliation with the content providers.</disclaimer>
<language></language>
<platform>all</platform>
<license>GNU GENERAL PUBLIC LICENSE. Version 2, June 1991</license>
<forum>http://www.kodinerds.net/index.php/Thread/47087-Release-YoutubeMusic-patched/</forum>
<website></website>
<email></email>
<source>https://github.com/kodinerds/repo/tree/master/plugin.video.spotitube</source>
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
</assets>
<news>[B][COLOR orangered]Version 2.0.8 (27.10.2017)[/COLOR][/B] by realvito[CR]
- fixed: Billboard - a few Links were changed
- fixed: Billboard - text errors and some folders are empty in "Billboard-Archive-Videos"
- fixed: Hypem - all clicked folders are empty
- * Hypem - NO Video-Images at the time/because they were removed completely *
- changed: Deezer-Search - apiURL and increase Searchlimit to "100" in settings
</news>
</extension>
</addon>
<addon id="plugin.video.theyidrh" version="6.5.1" name="Release [COLOR powderblue][B]HUB[/B][/COLOR]" provider-name="@MrEntertainRepo">
<requires>
<import addon="xbmc.python" version="2.1.0"/>
<import addon="script.module.TheYid.common" version="0.1.2"/>
<import addon="script.module.urlresolver" version="5.0.09"/>
<import addon="script.module.simplejson" version="3.3.0"/>
</requires>
<extension point="xbmc.python.pluginsource" library="default.py">
<provides>video</provides>
</extension>
<extension point="xbmc.addon.metadata">
<summary>Release [B][I][COLOR powderblue]HUB[/COLOR][/B][/I]</summary>
<description>Release [B][I][COLOR powderblue]HUB[/COLOR][/B][/I] 30+ scene release sites all in one place.... [COLOR lime][B]SUPER ADDON[/B][/COLOR] [COLOR red][B][I]YOU will need a debrid premium account to get the best out of this addon. NOT FOR NOOBS[/B][/I][/COLOR] [COLOR mintcream][B][I]For more info go to @MrEntertainRepo[/B][/I][/COLOR] PLEASE REMOVE THIS ADDON FROM BEST OF YOUTUBE VIDEOS AND ADDON OF THE MONTH BALLSHIT BLOG POSTS - SHOW SOME RESPECT AND ASK THE ADDED DEV IF THEY WOULD LIKE THE ADDON TO BE IN VIDS OR BLOGS.</description>
<platform>all</platform>
<disclaimer lang="en">[COLOR red][B][I] Mr Entertainment. [/B][/I][/COLOR] [COLOR red][B][I]YOU will need a debrid premium account for this addon[/B][/I][/COLOR]</disclaimer>
<license>GNU GENERAL PUBLIC LICENSE. Version 3, June 2007</license>
<forum>Removed: Indigo</forum>
<website>Removed: Indigo</website>
<source>Removed: Indigo</source>
<news>last official v6.1.1 from @MrEntertainRepo (so without Indigo)</news>
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
<screenshot></screenshot>
</assets>
</extension>
</addon>
<addon id="plugin.video.top40nl"
name="Top40.nl"
version="1.0.4"
provider-name="DSS">
<requires>
<import addon="xbmc.python" version="2.19.0"/>
<import addon="script.module.simplejson" version="2.0.10" optional="true"/>
</requires>
<extension point="xbmc.python.pluginsource"
library="default.py">
<provides>video</provides>
</extension>
<extension point="xbmc.addon.metadata">
<platform>all</platform>
<license>GPL 2.0</license>
<summary lang="en">Nederlandse top40 hitlijsten</summary>
<description lang="en">Nederlandse top40 hitlijsten</description>
</extension>
</addon>
<addon id="plugin.video.torrenter" name="Torrenter" version="2.4.4" provider-name="DiMartino">
<requires>
<import addon="xbmc.python" version="2.1.0"/>
<import addon="script.module.libtorrent"/>
<import addon="script.module.torrent.ts"/>
<import addon="script.module.requests"/>
<import addon="script.module.torrent2http"/>
</requires>
<extension point="xbmc.python.pluginsource" provides="video" library="default.py">
<provides>video</provides>
</extension>
<extension point="xbmc.addon.metadata">
<platform>all</platform>
<summary lang='en'>Plugin helps you to watch videos from p2p torrent-networks, without full predownload.
</summary>
<description lang='en'>It also can add, control torrents and play downloaded files with external torrent-client (uTorrent, Transmisson, Vuse, Deluge, qBittorrent) or python-libtorrent.
</description>
<disclaimer lang='en'>GNU GPLv3 http://www.gnu.org/licenses/</disclaimer>
<summary lang='ru'>Плагин позволяет просматривать видео из пиринговых торрент-сетей, не дожидаясь полного скачивания.
</summary>
<description lang='ru'>Так же плагин может добавлять, проигрывать и управлять скачками в торрент клиентах (uTorrent, Transmisson, Deluge и Vuse, qBittorrent) или средставми python-libtorrent.
</description>
<disclaimer lang='ru'>GNU GPLv3 http://www.gnu.org/licenses/</disclaimer>
<forum>https://forums.tvaddons.ag/addon-releases/29224-torrenter-v2.html</forum>
<website>http://xbmc.ru/forum/showthread.php?t=6837</website>
<email>skype:kyonkodura</email>
<source>https://github.com/DiMartinoXBMC/plugin.video.torrenter</source>
</extension>
</addon>
<addon id="plugin.video.wildhitz"
name="WildHitz"
version="2.0.3"
provider-name="DSS">
<requires>
<import addon="xbmc.python" version="2.1.0"/>
</requires>
<extension point="xbmc.python.pluginsource" library="default.py">
<provides>video</provides>
</extension>
<extension point="xbmc.addon.metadata">