forked from jolumeay/repo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
addons.xml
executable file
·980 lines (930 loc) · 47.9 KB
/
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
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addons>
<addon id="plugin.audio.einslive_de" name="1LIVE.de" version="1.0.7" provider-name="AddonScriptorDE">
<requires>
<import addon="xbmc.python" version="2.1.0"/>
</requires>
<extension point="xbmc.python.pluginsource" library="default.py">
<provides>audio</provides>
</extension>
<extension point="xbmc.addon.metadata">
<platform>all</platform>
<summary lang="de">O-Ton-Charts, Comedy, Reportagen, Talks, Klubbing, letzte Sendungen und Livestream</summary>
<summary lang="en">O-Ton-Charts, Comedy, reports, talks, clubbing, last shows and livestream</summary>
<language>de</language>
<description lang="de">O-Ton-Charts, Comedy, Reportagen, Talks, Klubbing, letzte Sendungen und Livestream</description>
<description lang="en">O-Ton-Charts, Comedy, reports, talks, clubbing, last shows and livestream</description>
<disclaimer lang="en">Some parts of this addon may not be legal in your country of residence - please check with your local laws before installing.</disclaimer>
<license>GNU GENERAL PUBLIC LICENSE. Version 2, June 1991</license>
<source>https://github.com/kodinerds/repo/tree/master/addons/plugin.audio.einslive_de</source>
<forum>http://forum.xbmc.org/showthread.php?tid=132769</forum>
<email>AddonScriptorDE at yahoo dot de</email>
<website>http://www.einslive.de</website>
</extension>
</addon>
<addon id="plugin.video.7tv" name="7TV" version="3.1.4" provider-name="L0RE">
<requires>
<import addon="xbmc.python" version="2.14.0"/>
</requires>
<extension point="xbmc.python.pluginsource" library="addon.py">
<provides>video</provides>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en">ProSieben, Sat.1, Kabel 1 and Sixx media library</summary>
<summary lang="de">Mediathek für ProSieben, Sat.1, Kabel 1 and Sixx</summary>
<description lang="en">Experience with 7TV a majority of shipments of ProSieben, SAT.1, kabel eins and sixx directly after the TV broadcast for free and for at least 7 days in full length - and the round-the-clock!</description>
<description lang="de">Erleben Sie mit 7TV einen Großteil der Sendungen von ProSieben, SAT.1, kabel eins und sixx direkt nach der TV-Ausstrahlung kostenlos und für mindestens 7 Tage in voller Länge – und das rund um die Uhr!</description>
<disclaimer lang="en"></disclaimer>
<language>de</language>
<platform>all</platform>
<license>GNU General Public License v2.0</license>
<forum>http://forum.kodi.tv/showthread.php?tid=198550</forum>
<website>www.7tv.de</website>
<email>kodi at bromix dot org</email>
<source>https://github.com/bromix/plugin.video.7tv</source>
</extension>
</addon>
<addon id="plugin.video.animexx" name="Animexx Videos" version="0.8.3" provider-name="L0RE">
<extension point="xbmc.python.pluginsource" library="default.py">
<provides>video</provides>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en">Videos from Animexx</summary>
<summary lang="de">Videos von Animexx</summary>
<description lang="en">Animexx is one of the biggest german Anime Comunity. This Are Videos from this Comunity</description>
<description lang="de">Animexx ist einer der groessten deutschen Anime Comunitys. Dies sind die Videos der Seite</description>
<website></website>
<source>http://repo.l0re.com/data/plugin.video.animexx/</source>
<forum>http://www.animexx.de</forum>
<email>andreas at vogler dot name</email>
<platform>all</platform>
</extension>
</addon>
<addon id="plugin.video.aod" name="Anime on Demand" version="0.4.5" provider-name="L0RE">
<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">Videos von Bayrischen Fernsehen</summary>
<summary lang="de">Videos of Bavarian Television</summary>
<description lang="en">Videos der Mediathek von Bayrischen Fernsehen</description>
<description lang="de">Video From Bavarian Television</description>
<website></website>
<source>https://github.com/kodinerds/repo/tree/master/addons/plugin.video.br3</source>
<forum>http://www.kodinerds.net/index.php/Thread/46598-Bayrisches-Fernsehen/</forum>
<email>andreas at vogler dot name</email>
<platform>all</platform>
</extension>
</addon>
<addon id="plugin.video.arte_tv" name="Arte.tv" version="2.9.6" provider-name="PUR3">
<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">
<platform>all</platform>
<summary lang="de">ARTE Mediathek (DE/FR)</summary>
<summary lang="en">ARTE Media Library (DE/FR)</summary>
<summary lang="fr">ARTE médiathèque (DE/FR)</summary>
<language>de fr</language>
<description lang="de">Ermöglicht es Videos aus der ARTE+7 Mediathek oder Live-TV zu schauen. Außerdem ist eine Vorschau des TV-Programms einsehbar.</description>
<description lang="en">Watch Videos from the ARTE Media Library + Livestream (DE/FR)</description>
<description lang="fr">Regarder des vidéos de la ARTE médiathèque + Livestream (DE/FR)</description>
<license>GNU GENERAL PUBLIC LICENSE. Version 2, June 1991</license>
<source>http://repo.l0re.com/data/plugin.video.arte_tv/</source>
<website>http://www.arte.tv</website>
</extension>
</addon>
<addon id="plugin.video.atv_at" name="ATV.at" version="2.0.7" provider-name="AddonScriptorDE">
<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">
<platform>all</platform>
<summary lang="de">ATV.at Mediathek</summary>
<summary lang="en">ATV.at media library</summary>
<language>de</language>
<description lang="de">ATV.at Mediathek</description>
<description lang="en">ATV.at media library</description>
<platform>all</platform>
</extension>
</addon>
<addon id="plugin.video.bild_bundesliga" name="Bundesliga bei Bild" version="1.0.8" provider-name="PUR3">
<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">
<platform>all</platform>
<summary lang="de">Zusammenfassungen von Bundesligaspielen</summary>
<description lang="de">Zusammenfassungen von Bundesligaspielen</description>
</extension>
</addon>
<addon id="plugin.video.br3" name="Bayrisches Fernsehen" version="0.7.6" provider-name="L0RE">
<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">Videos von Bayrischen Fernsehen</summary>
<summary lang="de">Videos of Bavarian Television</summary>
<description lang="en">Videos der Mediathek von Bayrischen Fernsehen</description>
<description lang="de">Video From Bavarian Television</description>
<website></website>
<license>GNU GENERAL PUBLIC LICENSE. Version 2, June 1991</license>
<source>https://github.com/kodinerds/repo/tree/master/addons/plugin.video.br3</source>
<forum>http://www.kodinerds.net/index.php/Thread/46598-Bayrisches-Fernsehen/</forum>
<email>andreas at vogler dot name</email>
<platform>all</platform>
</extension>
</addon>
<addon id="plugin.video.bundesliga3" name="3 Bundesliga" version="0.3.8" provider-name="L0RE">
<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">
<platform>all</platform>
<summary lang="de">Livestreams der 3. Bundesliga</summary>
<summary lang="en">Livestreams of 3. Bundesliga</summary>
<language>de</language>
<description lang="de">Livestreams der 3. Bundesliga</description>
<description lang="en">Livestreams of 3. Bundesliga</description>
<license>GNU GENERAL PUBLIC LICENSE. Version 2, June 1991</license>
<source>://github.com/kodinerds/repo/tree/master/addons/plugin.video.bundesliga3</source>
<forum>http://www.kodinerds.net/index.php/Thread/47175-Suche-guten-Browser-f%C3%BCr-die-fire-Box/</forum>
<email>andreas at vogler dot name</email>
<website>http://www.liga3-online.de/live-spiele/</website>
</extension>
</addon>
<addon id="plugin.video.chefkoch_de" name="Chefkoch.de" version="2.0.7" provider-name="L0RE">
<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">
<platform>all</platform>
<summary lang="en">Cooking videos</summary>
<summary lang="de">Video Kochrezepte</summary>
<language>de</language>
<description lang="en">Cooking videos</description>
<description lang="de">Video Kochrezepte</description>
<website>http://www.chefkoch.de</website>
<source>https://github.com/kodinerds/repo/tree/master/addons/plugin.video.chefkoch_de</source>
<forum>http://forum.xbmc.org/showthread.php?tid=132563</forum>
<email>andreas at vogler dot name</email>
</extension>
</addon>
<addon id="plugin.video.dfb_tv" name="DFB TV" version="1.0.4" provider-name="PUR3">
<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="de">DFB TV</summary>
<description lang="de">Zusammenfassungen von Spielen aus dem deutschen Männer- und Frauenfußball, Livestreams, sonstige Videos mit Bezug zum DFB.</description>
<language>de</language>
<platform>all</platform>
<license>GNU GENERAL PUBLIC LICENSE. Version 2, June 1991</license>
<website>www.tv.dfb.de</website>
</extension>
</addon>
<addon id="plugin.video.disneychannel_de" name="DisneyChannel.de" version="1.1.3" provider-name="L0RE">
<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">
<platform>all</platform>
<summary lang="de">DisneyChannel Mediathek</summary>
<summary lang="en">DisneyChannel media library</summary>
<language>de</language>
<description lang="de">DisneyChannel Mediathek</description>
<description lang="en">DisneyChannel media library</description>
<license>GNU GENERAL PUBLIC LICENSE. Version 2, June 1991</license>
<source>http://repo.l0re.com/data/plugin.video.disneychannel_de/</source>
<forum>http://www.kodinerds.net/index.php/Thread/11527-AddonScriptorDE-s-Addon-Sammlung/</forum>
<email>andreas at vogler dot name</email>
<website>http://www.disneychannel.de</website>
</extension>
</addon>
<addon id="plugin.video.dmax_de" name="DMAX.de" version="1.1.6" provider-name="L0RE">
<requires>
<import addon="xbmc.python" version="2.1.0"/>
<import addon="script.module.pyamf" version="0.6.1"/>
</requires>
<extension point="xbmc.python.pluginsource" library="default.py">
<provides>video</provides>
</extension>
<extension point="xbmc.addon.metadata">
<platform>all</platform>
<summary lang="en">DMAX-Videotheke</summary>
<language></language>
<description lang="en">DMAX-Videotheke</description>
<license>GNU GENERAL PUBLIC LICENSE. Version 2, June 1991</license>
<source>https://github.com/kodinerds/repo/tree/master/addons/plugin.video.dmax_de</source>
<forum>http://forum.xbmc.org/showthread.php?tid=132563</forum>
<email>andreas at vogler dot name</email>
<website>http://www.dmax.de/videos</website>
</extension>
</addon>
<addon id="plugin.video.eurosport" name="Eurosport" version="1.0.1" provider-name="PUR3">
<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">Eurosport media library</summary>
<summary lang="de">Eurosport Mediathek</summary>
<description lang="en">Watch highlights, interviews, analysis and other videos from Eurosport</description>
<description lang="de">Schauen Sie Zusammenfassungen, Interviews, Analysen und sonstige Videos von Eurosport</description>
<disclaimer lang="en"></disclaimer>
<language>de</language>
<platform>all</platform>
<license>GNU General Public License v2.0</license>
<website>www.video.eurosport.com</website>
</extension>
</addon>
<addon id="plugin.video.fernsehkritik_tv" name="Fernsehkritik.tv" version="2.1.4" provider-name="AddonScriptorDE">
<requires>
<import addon="xbmc.python" version="2.19.0"/>
</requires>
<extension point="xbmc.python.pluginsource" library="default.py">
<provides>video</provides>
</extension>
<extension point="xbmc.addon.metadata">
<platform>all</platform>
<summary lang="en">The satirical-crucial TV magazin</summary>
<summary lang="de">Das satirisch-kritische TV Magazin</summary>
<language>de</language>
<description lang="en">The satirical-crucial TV magazin</description>
<description lang="de">Das satirisch-kritische TV Magazin</description>
<license>GNU GENERAL PUBLIC LICENSE. Version 2, June 1991</license>
<source>https://github.com/AddonScriptorDE/plugin.video.fernsehkritik_tv</source>
<forum>http://forum.xbmc.org/showthread.php?tid=</forum>
<email>AddonScriptorDE at yahoo dot de</email>
<website>http://www.fernsehkritik.tv</website>
</extension>
</addon>
<addon id="plugin.video.giga_de" name="GIGA.de" version="2.2.1" provider-name="L0RE">
<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">
<platform>all</platform>
<summary lang="de">Technik, Games und Entertainment Videos</summary>
<summary lang="en">Technical, Games and Entertainment Videos</summary>
<language>de</language>
<description lang="de">Technik, Games und Entertainment Videos</description>
<description lang="en">Technical, Games and Entertainment Videos</description>
<website></website>
<source>http://repo.l0re.com/data/plugin.video.giga_de/</source>
<forum>http://www.kodinerds.net/index.php/Thread/11527-AddonScriptorDE-s-Addon-Sammlung/</forum>
<email>andreas at vogler dot name</email>
</extension>
</addon>
<addon id="plugin.video.helloworld" name="Helo World" version="0.0.1" provider-name="L0RE">
<extension point="xbmc.python.pluginsource" library="default.py">
<provides>video</provides>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en">Test Plugin von L0RE</summary>
<summary lang="de">Test Plugin von L0RE</summary>
<description lang="en">Test Plugin von L0RE</description>
<description lang="de">Test Plugin von L0RE</description>
<website></website>
<email>andreas at vogler dot name</email>
<platform>all</platform>
</extension>
</addon>
<addon id="plugin.video.kicker_tv" name="Kicker.tv" version="1.0.1" provider-name="PUR3">
<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="de">Kicker.tv</summary>
<description lang="de">Videos mit Bezug zum Fussball und anderen Sportarten</description>
<language>de</language>
<platform>all</platform>
<license>GNU GENERAL PUBLIC LICENSE. Version 2, June 1991</license>
<website>www.kicker.tv</website>
</extension>
</addon>
<addon id="plugin.video.kika_de" name="KIKA+" version="1.0.7" provider-name="AddonScriptorDE">
<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">
<platform>all</platform>
<summary lang="de">KIKA Mediathek</summary>
<summary lang="en">KIKA media library</summary>
<language>de</language>
<description lang="de">KiKA - der Kinderkanal von ARD und ZDF</description>
<description lang="en">KiKA - the kids channel from ARD and ZDF</description>
<disclaimer lang="en">Some parts of this addon may not be legal in your country of residence - please check with your local laws before installing.</disclaimer>
<license>GNU GENERAL PUBLIC LICENSE. Version 2, June 1991</license>
<source>https://github.com/kodinerds/repo/tree/master/addons/plugin.video.kika_de</source>
<forum>http://forum.xbmc.org/showthread.php?tid=132563</forum>
<email>AddonScriptorDE at yahoo dot de</email>
<website>http://kikaplus.net/clients/kika/kikaplus/</website>
</extension>
</addon>
<addon id="plugin.video.kikaninchen" name="KIKANINCHEN" version="1.0.6" provider-name="Tombstone">
<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">
<platform>all</platform>
<source>https://github.com/kodinerds/repo/tree/master/addons/plugin.video.kikaninchen</source>
<forum>http://www.kodinerds.net/index.php/Thread/11527-AddonScriptorDE-s-Addon-Sammlung/</forum>
<summary lang="de">Kikaninchen Mediathek</summary>
<summary lang="en">Kikaninchen media library</summary>
<language>de</language>
<description lang="de">Kikaninchen - der U3 Kinderkanal von ARD und ZDF</description>
<description lang="en">Kikaninchen - the U3 kids channel from ARD and ZDF</description>
</extension>
</addon>
<addon id="plugin.video.mediatheken" name="Mediatheken" version="1.0.13" provider-name="L0RE">
<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">
<platform>all</platform>
<summary lang="en">German media libraries</summary>
<summary lang="de">Deutsche Mediatheken</summary>
<language>de</language>
<description lang="en">German media libraries</description>
<description lang="de">Deutsche Mediatheken</description>
<source>https://github.com/AddonScriptorDE/plugin.video.mediatheken</source>
<forum>http://forum.xbmc.org/showthread.php?tid=</forum>
<email>AddonScriptorDE at yahoo dot de</email>
<website></website>
</extension>
</addon>
<addon id="plugin.video.mtv_de" name="MTV.de" version="3.3.8" provider-name="L0RE">
<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">
<platform>all</platform>
<summary lang="de">TV-Shows, Deutsche Charts, Videosuche, Playlisten, Favoriten</summary>
<summary lang="en">TV-Shows, german charts, clip search, playlists, favorites</summary>
<language>de</language>
<description lang="de">TV-Shows, Deutsche Charts, Videosuche, Playlisten, Favoriten</description>
<description lang="en">TV-Shows, German charts, clip search, playlists, favorites</description>
<disclaimer lang="en">Some parts of this addon may not be legal in your country of residence - please check with your local laws before installing.</disclaimer>
<platform>all</platform>
</extension>
</addon>
<addon id="plugin.video.myvideo_de" name="MyVideo.de" version="1.0.2" provider-name="L0RE">
<requires>
<import addon="xbmc.python" version="2.1.0"/>
<import addon="script.module.requests" version="2.3.0"/>
</requires>
<extension point="xbmc.python.pluginsource" library="default.py">
<provides>video</provides>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en">Free television with MyVideo.de: Music, Shows and Movies</summary>
<summary lang="de">Gratis fernsehen mit MyVideo.de: Musik, Serien und Filme</summary>
<description lang="en">Free television with MyVideo.de: music, tv shows and movies. The best series, shows, music videos, movies, anime series, TV shows and gaming live streams for free. The most popular TV highlights of ProSieben, Sat.1, kabel eins and Sixx free and legal.</description>
<description lang="de">Gratis fernsehen mit MyVideo.de: Musik, Serien und Filme. Die besten Serien, Shows, Musik-Videos, Filme, Anime-Serien, TV-Sendungen und Gaming-live-Streams kostenlos. Die beliebtesten TV-Highlights von ProSieben, Sat.1, kabeleins und Sixx gratis und legal.</description>
<disclaimer lang="en"></disclaimer>
<language>de</language>
<platform>all</platform>
<license>GNU GENERAL PUBLIC LICENSE. Version 2, June 1991</license>
<forum></forum>
<website>http://www.myvideo.de/</website>
<email>andreas at vogler dot name</email>
<source>https://github.com/kodinerds/repo/tree/master/addons/plugin.video.myvideo_de</source>
</extension>
</addon>
<addon id="plugin.video.n24_de" name="N24.de" version="2.0.11" provider-name="AddonScriptorDE">
<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">
<platform>all</platform>
<summary lang="de">N24 Mediathek und Livestream</summary>
<summary lang="en">N24 Media Library and Livestream</summary>
<language>de</language>
<description lang="de">N24 Mediathek und Livestream</description>
<description lang="en">N24 Media Library and Livestream</description>
<disclaimer lang="en">Some parts of this addon may not be legal in your country of residence - please check with your local laws before installing.</disclaimer>
<platform>all</platform>
</extension>
</addon>
<addon id="plugin.video.nick_de" name="Nickelodeon.de" version="1.1.5" provider-name="L0RE">
<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">
<platform>all</platform>
<summary lang="de">Nickelodeon und Nick Jr. Mediathek</summary>
<summary lang="en">Nickelodeon and Nick Jr. media library</summary>
<language>de</language>
<description lang="de">Nick.de ist die kostenlose Website von Nickelodeon.</description>
<description lang="en">Nick.de ist die kostenlose Website von Nickelodeon.</description>
<disclaimer lang="en">Some parts of this addon may not be legal in your country of residence - please check with your local laws before installing.</disclaimer>
<license>GNU GENERAL PUBLIC LICENSE. Version 2, June 1991</license>
<source>http://repo.l0re.com/data/plugin.video.nick_de/</source>
<forum>http://forum.xbmc.org/showthread.php?tid=132563</forum>
<email>andreas at vogler dot name</email>
<website>http://www.nick.de</website>
</extension>
</addon>
<!--
Document : addon.xml
Package : OTR Integration to XBMC
Author : Frank Epperlein
Copyright : 2012, Frank Epperlein, DE
License : Gnu General Public License 2
Description: XBMC Addon for OTR integration
-->
<addon id="plugin.video.onlinetvrecorder_com" version="0.7" name="onlinetvrecorder.com" provider-name="Frank Epperlein">
<extension point="xbmc.python.pluginsource" library="otr.py">
<provides>video</provides>
</extension>
<extension point="xbmc.addon.metadata">
<summary>onlinetvrecorder.com integration</summary>
<summary lang="de">onlinetvrecorder.com integration</summary>
<description>Provides the ability to show onlinetvrecorder.com recordings within XBMC.</description>
<description lang="de">Ermoeglicht es Aufnahmen von onlinetvrecorder.com in XBMC anzuschauen.</description>
<platform>all</platform>
</extension>
<requires>
<import addon="xbmc.python" version="2.1.0"/>
<import addon="script.common.plugin.cache" version="2.0.0"/>
<import addon="script.module.parsedom" version="1.0.0"/>
</requires>
</addon>
<addon id="plugin.video.orftvthek4de" name="ORF TVthek 4 de" version="0.4.8" provider-name="L0RE">
<requires>
<import addon="xbmc.python" version="2.1.0"/>
<import addon="script.module.parsedom" version="0.9.1"/>
<import addon="script.common.plugin.cache" version="0.9.1"/>
</requires>
<extension point="xbmc.python.pluginsource" library="default.py">
<provides>video</provides>
</extension>
<extension point="xbmc.addon.metadata">
<platform>all</platform>
<language>de en</language>
<summary lang="de">ORF TVthek</summary>
<summary lang="en">ORF TVthek</summary>
<language>de</language>
<description lang="de">ORF TVthek - Ermöglicht Ihnen den Zugriff auf die ORF TVthek Video Platform. Modifiziert Version so das die Livestreams auch in deutschland gehen (im Settings) Orginal bei sofaking</description>
<description lang="en">ORF TVthek - This plugin provides access to the Austrian "ORF TVthek". Modified Version for non austria (Settings) Orginal by sofaking </description>
<license>GNU GENERAL PUBLIC LICENSE. Version 2, June 1991</license>
<email>andreas at vogler dot name</email>
<website>http://repo.l0re.com</website>
<source>http://repo.l0re.com/data/plugin.video.orftvthek4de</source>
</extension>
</addon>
<addon id="plugin.video.putpat" name="Putpat.tv" version="0.8" provider-name="Johannes">
<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">
<platform>all</platform>
<summary lang="de">Putpat.tv Musikvideos</summary>
<summary lang="en">Putpat.tv music videos</summary>
<description lang="de">Dieses Plugin spielt Musikvideos von putpat.tv ab.</description>
<description lang="en">This plugin plays music videos from putpat.tv.</description>
</extension>
</addon>
<addon id="plugin.video.ran_de" name="ran" version="2.0.2" provider-name="PUR3">
<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">
<platform>all</platform>
<summary lang="de">Livestreams und Videos von ran.de</summary>
<summary lang="en">Livestreams and videos from ran.de</summary>
<description lang="de">Dieses Addon ermöglicht es euch, die neusten Videos und Livestreams von ran.de zu schauen.</description>
<description lang="en">Watch livestreams and the latest videos from ran.de.</description>
</extension>
</addon>
<addon id="plugin.video.servustv_com" name="ServusTV.com" version="1.0.7" provider-name="L0RE">
<requires>
<import addon="xbmc.python" version="2.1.0"/>
<import addon="script.module.pyamf" version="0.6.1"/>
<import addon="script.module.simple.downloader" version="0.9.5"/> # Add this
</requires>
<extension point="xbmc.python.pluginsource" library="default.py">
<provides>video</provides>
</extension>
<extension point="xbmc.addon.metadata">
<platform>all</platform>
<summary lang="en">Watch videos from the ServusTV media library</summary>
<language>de</language>
<description lang="en">Watch videos from the ServusTV media library</description>
<disclaimer lang="en">Some parts of this addon may not be legal in your country of residence - please check with your local laws before installing.</disclaimer>
<license>GNU GENERAL PUBLIC LICENSE. Version 2, June 1991</license>
<source>https://github.com/AddonScriptorDE/plugin.video.servustv_com</source>
<forum>http://forum.xbmc.org/showthread.php?tid=</forum>
<email>AddonScriptorDE at yahoo dot de</email>
<website>http://www.servustv.com</website>
</extension>
</addon>
<addon id="plugin.video.sesamstrasse_de" name="Sesamstrasse.de" version="1.0.6" provider-name="L0RE">
<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">
<platform>all</platform>
<summary lang="de">Sesamstrasse Mediathek</summary>
<summary lang="en">Sesamstrasse media library</summary>
<language>de</language>
<description lang="de">Ganze Folgen Sesamstrasse ansehen</description>
<description lang="en">Watch full episodes of Sesamstrasse</description>
<license>GNU GENERAL PUBLIC LICENSE. Version 2, June 1991</license>
<source>https://github.com/kodinerds/repo/tree/master/addons/plugin.video.sesamstrasse_de</source>
<forum>http://forum.xbmc.org/showthread.php?tid=132563</forum>
<email>andreas at vogler dot name</email>
<website>http://www.sesamstrasse.de</website>
</extension>
</addon>
<addon id="plugin.video.sky_mediathek" name="Sky Mediathek" version="1.0.1" provider-name="PUR3">
<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="de">Sky Mediathek</summary>
<description lang="de">Neueste Videos aus der Sky Mediathek anschauen.</description>
<language>de</language>
<platform>all</platform>
<license>GNU GENERAL PUBLIC LICENSE. Version 2, June 1991</license>
<website>www.sky.de/mediathek</website>
</extension>
</addon>
<addon id="plugin.video.spiegel_tv" name="Spiegel.tv" version="1.1.4" provider-name="L0RE">
<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">
<platform>all</platform>
<summary lang="de">Spiegel TV Mediathek (Reportagen/Dokumentationen)</summary>
<summary lang="en">Spiegel TV media library</summary>
<language>de</language>
<description lang="de">Spiegel TV Mediathek (Reportagen/Dokumentationen)</description>
<description lang="en">Spiegel TV media library</description>
<disclaimer lang="en">Some parts of this addon may not be legal in your country of residence - please check with your local laws before installing.
Orginal Code was from AddonScriptorDE</disclaimer>
<license>GNU GENERAL PUBLIC LICENSE. Version 2, June 1991</license>
<source>http://repo.l0re.com/data/plugin.video.spiegel_tv/</source>
<forum>http://www.kodinerds.net/index.php/Thread/11527-AddonScriptorDE-s-Addon-Sammlung/</forum>
<email>lore at vogler dot name</email>
<website>http://www.spiegel.tv</website>
</extension>
</addon>
<addon id="plugin.video.spotitube" name="Youtube Music" version="1.0.7" provider-name="AddonScriptorDE">
<requires>
<import addon="xbmc.python" version="2.1.0"/>
<import addon="plugin.video.youtube" version="3.0.0"/>
</requires>
<extension point="xbmc.python.pluginsource" library="default.py">
<provides>video audio</provides>
</extension>
<extension point="xbmc.addon.metadata">
<platform>all</platform>
<summary lang="en">Play music videos via Youtube</summary>
<language></language>
<description lang="en">Play music videos via Youtube</description>
<license>GNU GENERAL PUBLIC LICENSE. Version 2, June 1991</license>
<source>https://github.com/AddonScriptorDE/plugin.video.spotitube</source>
<forum>http://forum.xbmc.org/showthread.php?tid=</forum>
<email>AddonScriptorDE at yahoo dot de</email>
<website></website>
</extension>
</addon>
<addon id="plugin.video.tele5_de" name="Tele5.de" version="1.0.5" provider-name="AddonScriptorDE">
<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">
<platform>all</platform>
<summary lang="de">Tele5 Mediathek</summary>
<summary lang="en">Tele5 media library</summary>
<language>de</language>
<description lang="de">Tele5 Mediathek</description>
<description lang="en">Tele5 media library</description>
<disclaimer lang="en">Some parts of this addon may not be legal in your country of residence - please check with your local laws before installing.</disclaimer>
<license>GNU GENERAL PUBLIC LICENSE. Version 2, June 1991</license>
<source>https://github.com/AddonScriptorDE/plugin.video.tele5_de</source>
<forum>http://forum.xbmc.org/showthread.php?tid=132563</forum>
<email>AddonScriptorDE at yahoo dot de</email>
<website>http://www.tele5.de</website>
</extension>
</addon>
<addon id="plugin.video.tivi_de" name="ZDF tivi" version="1.0.3" provider-name="L0RE">
<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">
<platform>all</platform>
<summary lang="de">ZDF tivi Mediathek</summary>
<summary lang="en">ZDF tivi media library</summary>
<language>de</language>
<description lang="de">ZDF tivi Mediathek</description>
<description lang="en">ZDF tivi media library</description>
<disclaimer lang="en">Some parts of this addon may not be legal in your country of residence - please check with your local laws before installing.</disclaimer>
<license>GNU GENERAL PUBLIC LICENSE. Version 2, June 1991</license>
<source>https://github.com/AddonScriptorDE/plugin.video.tivi_de</source>
<forum>http://forum.xbmc.org/showthread.php?tid=132563</forum>
<email>andreas at vogler dot name</email>
<website>http://www.tivi.de</website>
</extension>
</addon>
<addon id="plugin.video.tvtoday_de" name="TV Today - Best of Mediatheken" version="1.1.4" provider-name="L0RE">
<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">
<platform>all</platform>
<summary lang="en">Best of german media libraries</summary>
<language>de</language>
<description lang="en">Best of german media libraries</description>
<license>GNU GENERAL PUBLIC LICENSE. Version 2, June 1991</license>
<source>https://github.com/AddonScriptorDE/plugin.video.tvtoday_de</source>
<forum>http://forum.xbmc.org/showthread.php?tid=132563</forum>
<email>andreas at vogler dot name</email>
<website>http://www.tvtoday.de/mediathek</website>
</extension>
</addon>
<addon id="plugin.video.vevo_tv" name="VEVO TV" version="1.1.4" provider-name="AddonScriptorDE">
<requires>
<import addon="xbmc.python" version="2.19.0"/>
</requires>
<extension point="xbmc.python.pluginsource" library="default.py">
<provides>video audio</provides>
</extension>
<extension point="xbmc.addon.metadata">
<platform>all</platform>
<summary lang="en">Watch music videos 24/7 - Official mode is currently available in the US, Canada, and Germany. Custom mode is currently available in Australia, Brazil, Canada, France, Germany, Ireland, Italy, The Netherlands, New Zealand, Poland, Spain, UK and US.</summary>
<language></language>
<description lang="en">Watch music videos 24/7 - Official mode is currently available in the US, Canada, and Germany. Custom mode is currently available in Australia, Brazil, Canada, France, Germany, Ireland, Italy, The Netherlands, New Zealand, Poland, Spain, UK and US.</description>
<disclaimer lang="en">Some parts of this addon may not be legal in your country of residence - please check with your local laws before installing.</disclaimer>
<license>GNU GENERAL PUBLIC LICENSE. Version 2, June 1991</license>
<source>https://github.com/AddonScriptorDE/plugin.video.vevo_tv</source>
<forum>http://forum.xbmc.org/showthread.php?tid=178369</forum>
<email>AddonScriptorDE at yahoo dot de</email>
<website>http://www.vevo.com</website>
</extension>
</addon>
<addon id="plugin.video.welt_der_wunder" name="Welt der Wunder" version="1.1.6" provider-name="L0RE">
<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">
<platform>all</platform>
<summary lang="de">Welt der Wunder Livestream und Mediathek</summary>
<summary lang="en">Welt der Wunder livestream and media library</summary>
<language>de</language>
<description lang="de">Welt der Wunder Livestream und Mediathek</description>
<description lang="en">Welt der Wunder livestream and media library</description>
<license>GNU GENERAL PUBLIC LICENSE. Version 2, June 1991</license>
<source>http://repo.l0re.com/data/plugin.video.welt_der_wunder/</source>
<forum>http://forum.xbmc.org/showthread.php?tid=132563</forum>
<email>andreas at vogler dot name</email>
<website>http://www.weltderwunder.tv</website>
</extension>
</addon>
<addon id="plugin.video.zattoo_com" name="Zattoo Live TV" version="1.0.0" provider-name="PUR3">
<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">
<platform>all</platform>
<summary lang="de">Über 75 TV-Sender als Livestreams auf dem Gerät deiner Wahl ansehen.</summary>
<description lang="de">Fußball, Serien, Filme, Dokus und Reportagen laufen mit Zattoo im Livestream. Alles was du brauchst, ist eine Internetverbindung und schon läuft das Fernsehprogramm mit mehr als 75-TV-Sendern kostenlos auf dem Gerät deiner Wahl.</description>
<license>GNU GENERAL PUBLIC LICENSE. Version 2, June 1991</license>
<website>http://www.zattoo.com</website>
</extension>
</addon>
<addon id="plugin.video.zdf_de_lite" name="ZDF Mediathek" version="2.2.2" provider-name="L0RE">
<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">
<platform>all</platform>
<summary lang="de">ZDF, ZDFneo, ZDFkultur, ZDFinfo und 3sat Mediathek</summary>
<summary lang="en">ZDF, ZDFneo, ZDFkultur, ZDFinfo and 3sat Media Library</summary>
<language>de</language>
<description lang="de">ZDF, ZDFneo, ZDFkultur, ZDFinfo und 3sat Mediathek</description>
<description lang="en">ZDF, ZDFneo, ZDFkultur, ZDFinfo and 3sat Media Library</description>
<disclaimer lang="en">Some parts of this addon may not be legal in your country of residence - please check with your local laws before installing.</disclaimer>
<license>GNU GENERAL PUBLIC LICENSE. Version 2, June 1991</license>
<source>https://github.com/AddonScriptorDE/plugin.video.zdf_de_lite</source>
<forum>http://forum.xbmc.org/showthread.php?tid=132563</forum>
<email>andreas at vogler dot name</email>
<website>http://www.zdf.de/ZDFmediathek</website>
</extension>
</addon>
<addon id="repository.lost-and-found" name="Repo Lost and Found" version="1.1.5" provider-name="L0RE">
<extension point="xbmc.addon.repository" name="L0RE">
<info compressed="true">https://raw.githubusercontent.com/kodinerds/repo/master/addons.xml</info>
<checksum>https://raw.githubusercontent.com/kodinerds/repo/master/addons.xml.md5</checksum>
<datadir zip="true">https://raw.githubusercontent.com/kodinerds/repo/master/addons/</datadir>
</extension>
<extension point="xbmc.addon.metadata">
<summary>Most of the addon have been abandoned, and Patched by someone new. Or have been Found without someone loosing them</summary>
<description>Most of the addon have been abandoned, and Patched by someone new. Or have been Found without someone loosing them</description>
<disclaimer></disclaimer>
<platform>all</platform>
</extension>
</addon>
<addon id="script.screensaver.animexx" name="Anime Fanartsaver" version="0.9.3" provider-name="L0RE">
<requires>
<import addon="xbmc.python" version="2.1.0"/>
</requires>
<extension point="xbmc.ui.screensaver" library="screensaver.py" >
<provides>executable</provides>
</extension>
<extension point="xbmc.python.script" library="screensaver.py" />
<extension point="xbmc.addon.metadata">
<platform>all</platform>
<language/>
<website>http://repo.l0re.com/</website>
<source>http://repo.l0re.com/data/script.screensaver.animexx/</source>
<forum>http://www.kodinerds.net/index.php/Thread/45654-RELEASE-Animexx-Fanart-Screensave/</forum>
<email>andreas at vogler dot name</email>
<summary lang="en">Screensaver for Fanarts from Animexx</summary>
<description lang="en">Screensaver ,that shows all new fanarts from Animexx.de</description>
<summary lang="de">Screensaver für Animexx Fanarts</summary>
<description lang="de">Screensaver ,zum Anzeigen von Fanarts von Animexx.de</description>
</extension>
</addon>
<addon id="service.fritz.automation" name="Fritz Automation" version="0.2.0" provider-name="L0RE">
<requires>
<import addon="xbmc.python" version="2.20.0"/>
</requires>
<extension point="xbmc.service" library="service.py" start="login" />
<extension point="xbmc.python.pluginsource" library="service.py" >
<provides>executable</provides>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en">Stom von einer FritzSteckdose über die Fritzbox ab/an schalten unter bestimmten bedinungen</summary>
<summary lang="de">Stom von einer FritzSteckdose über die Fritzbox ab/an schalten unter bestimmten bedinungen</summary>
<description lang="en">Stom von einer FritzSteckdose über die Fritzbox ab/an schalten unter bestimmten bedinungen</description>
<description lang="de">Stom von einer FritzSteckdose über die Fritzbox ab/an schalten unter bestimmten bedinungen</description>
<website></website>
<source>https://github.com/kodinerds/repo/tree/master/addons/service.fritz.automation</source>
<forum>http://www.kodinerds.net/index.php/Thread/46939-Repo-Lost-Found/</forum>
<email>andreas at vogler dot name</email>
<platform>all</platform>
</extension>
</addon>
<addon id="service.subtitles.subcentral" name="Subcentral.de" version="0.4.9" provider-name="L0RE">
<requires>
<import addon="xbmc.python" version="2.1.0"/>
</requires>
<extension point="xbmc.subtitle.module"
library="service.py" />
<extension point="xbmc.addon.metadata">
<summary lang="en">Subcentral</summary>
<description lang="en">Try to embed Subcentral into the Menu</description>
<disclaimer lang="en"></disclaimer>
<platform>all</platform>
<license>GNU GENERAL PUBLIC LICENSE. Version 2, June 1991</license>
<forum></forum>
<website></website>
<email></email>
<source></source>
</extension>
</addon>
<addon id="service.subtitles.tv4user" name="Tv4user.de" version="0.8.7" provider-name="L0RE">
<requires>
<import addon="xbmc.python" version="2.1.0"/>
</requires>
<extension point="xbmc.subtitle.module"
library="service.py" />
<extension point="xbmc.addon.metadata">
<summary lang="en">Untertitel von board.tv4user.de fuer Serien in Deutsch und Englisch</summary>
<description lang="en">Subtitle in German/English for Serien from board.tv4user.de </description>
<disclaimer lang="en"></disclaimer>
<platform>all</platform>
<license>GNU GENERAL PUBLIC LICENSE. Version 2, June 1991</license>
<forum>http://www.kodinerds.net/index.php/Thread/47097-RELEASE-Untertitel-Plugin-f%C3%BCr-http-board-tv4user-de</forum>
<website>http://www.br.de</website>
<email>andreas at vogler dot name</email>
<source>https://github.com/kodinerds/repo/tree/master/addons/service.subtitles.tv4user</source>
</extension>
</addon>
<addon id="service.twitterfeed" name="Twitter Feed" version="0.7.2" provider-name="L0RE">
<requires>
<import addon="xbmc.python" version="2.1.0"/>
<import addon="script.module.pyxbmct" version="1.1.4"/>
</requires>
<extension point="xbmc.service" library="service.py" start="login" />
<extension point="xbmc.python.pluginsource" library="service.py" >
<provides>executable</provides>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en">Show Twitter hastag of the Show and the TV Station</summary>
<summary lang="de">Zeigt Hashtags von Sender und Senungen vom Tv via Subtitle an</summary>
<description lang="en">Show Twitter hastag of the Show and the TV Station</description>
<description lang="de">Zeigt Hashtags von Sender und Senungen vom Tv via Subtitle an</description>
<website></website>
<source>https://github.com/kodinerds/repo/tree/master/addons/service.livetv.twitter</source>
<forum>http://www.kodinerds.net/index.php/Thread/46939-Repo-Lost-Found/</forum>
<email>andreas at vogler dot name</email>
<platform>all</platform>
</extension>
</addon>
<addon id="service.xbmc.playexternal" name="playexternal" version="0.10" provider-name="L0RE">
<requires>
<import addon="xbmc.python" version="2.1.0"/>
</requires>
<extension point="xbmc.service" library="service.py" />
<extension point="xbmc.addon.metadata">
<platform>all</platform>
<summary lang="en"></summary>
<language></language>
<description lang="en"></description>
<disclaimer lang="en">Playing via dump videos.</disclaimer>
<license>Not specified yet</license>
<source>https://repo.lore.com</source>
<forum>h</forum>
</extension>
</addon>
</addons>