-
Notifications
You must be signed in to change notification settings - Fork 79
/
addons.xml
1131 lines (980 loc) · 44.6 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
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="plugin.video.xxx-o-dus"
name="XXX-O-DUS"
version="3.00.000"
provider-name="Xibalba">
<requires>
<import addon="xbmc.python" version="2.1.0"/>
<import addon="script.module.xibalba"/>
<import addon="script.xxxodus.artwork"/>
<import addon="script.xxxodus.scrapers"/>
<import addon="script.module.urlresolver"/>
</requires>
<extension point="xbmc.python.pluginsource" library="default.py">
<provides>video</provides>
</extension>
<extension point="xbmc.service" library="service.py" start="startup">
</extension>
<extension point="xbmc.addon.metadata">
<platform>all</platform>
<summary lang="en">The AIO XXX Addon for Kodi</summary>
<description lang="en">[COLOR white]XXX-O-DUS scrapes many websites to bring you hundreds of thousands of videos. Features of the addon include, history monitoring, favourites, downloadable videos, parental controls and more![/COLOR]
[COLOR white]Websites Include: Porn.com, PornHD.com, Chaturbate.com, RedTube.com, Xhamster.com, YouPorn.com, PornFun.com, Motherless.com,Porn00.org, Spankbang.com, Virtualpornstars.com, Watchxxxfree.com, Perfectgirls.net, XNXX.com and many more.[/COLOR]</description>
<disclaimer lang="en">The pages of this addon are designed for ADULTS only and may include pictures and materials that some viewers may find offensive. If you are under the age of 18, if such material offends you or if it is illegal to view such material in your community please exit the addon.</disclaimer>
<language></language>
<platform>all</platform>
<license>GNU GENERAL PUBLIC LICENSE. Version 2, June 1991</license>
<website>https://github.com/xibalba10</website>
<forum>https://github.com/xibalba10</forum>
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
</assets>
</extension>
</addon>
<addon id="script.xxxodus.artwork" version="1.00.000" name="XXXODUS Artwork" provider-name="Xibalba">
<requires>
<import addon="xbmc.python" version="2.1.0"/>
</requires>
<extension point="xbmc.python.module" library="lib" />
<extension point="xbmc.addon.metadata">
<summary>Artwork for XXXODUS</summary>
<description>Artwork for XXXODUS is maintained separately to make distribution of the the addon itself easier/faster.</description>
<platform>all</platform>
</extension>
</addon>
<addon id="script.xxxodus.scrapers" name="XXXODUS Scrapers" version="1.00.000" provider-name="Xibalba">
<requires>
<import addon="xbmc.python" version="2.1.0" />
</requires>
<extension point="xbmc.python.module" library="lib" />
<extension point="xbmc.addon.metadata">
<platform>all</platform>
<summary lang="en">Scrapers for use in XXXODUS</summary>
</extension>
</addon>
<addon id="frenchdj.repository" name="frenchdj repository" version="0.0.1" provider-name="frenchdj">
<extension point="xbmc.addon.repository" name="frenchdj Add-on Repository">
<info compressed="false">http://raw.github.com/frenchdj/frenchdj.repository/master/addons.xml</info>
<checksum>http://raw.github.com/frenchdj/frenchdj.repository/master/addons.xml.md5</checksum>
<datadir zip="true">http://raw.github.com/frenchdj/frenchdj.repository/master/repo/</datadir>
</extension>
<extension point="xbmc.addon.metadata">
<summary>frenchdj Addon</summary>
<description>frenchdj addons repositorio</description>
<disclaimer></disclaimer>
<platform>all</platform>
</extension>
</addon>
<addon id="plugin.audio.housemixes" name="House Mixes" version="1.1.6" provider-name="MetalKettle">
<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">
<summary lang="en"></summary>
<description lang="en"></description>
<platform>all</platform>
</extension>
</addon>
<addon id="plugin.audio.televisiontunes" name="Themes" version="0.0.9" provider-name="MetalKettle">
<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">
<summary lang="en">Browse TelevisionTunes.com</summary>
<description lang="en">Listen to TV Theme music and songs from different television shows</description>
<platform>all</platform>
</extension>
</addon>
<addon id="plugin.program.ATools" name="Assassins Tools" version="0.0.1" provider-name="Aftermath">
<requires>
<import addon="xbmc.python" version="2.1.0"/>
</requires>
<extension point="xbmc.python.pluginsource" library="default.py">
<provides>executable</provides>
</extension>
<extension point="xbmc.service" library="startup.py" start="startup" />
<extension point="xbmc.addon.metadata">
<summary lang="en">Assassins Tools</summary>
<description lang="en">Assassins Tools using Aftermath Wizard, which allows you to get access to the latest Aftermath Custom Builds.</description>
<platform>all</platform>
</extension>
</addon>
<addon id="plugin.program.jollyroger" name="Jolly Roger Cookbook" version="1.0.0" provider-name="MetalKettle">
<requires>
<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">Before you waste one entire second even considering mixing, creating, or otherwise implementing the instructions in these files, be aware that people have died from some of these very texts</summary>
<description lang="en">Before you waste one entire second even considering mixing, creating, or otherwise implementing the instructions in these files, be aware that people have died from some of these very texts </description>
<platform>all</platform>
</extension>
</addon>
<addon id="plugin.program.readcomics" name="Read Comics" version="1.0.2" provider-name="MetalKettle">
<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="default.py">
<provides>executable</provides>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en"></summary>
<description lang="en"></description>
<platform>all</platform>
</extension>
</addon>
<addon id="plugin.program.ukcheck" name="UK Vehicle Check" version="1.0.0" provider-name="MetalKettle">
<requires>
<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"></summary>
<description lang="en"></description>
<platform>all</platform>
</extension>
</addon>
<addon id="plugin.video.adultswim"
name="Adult Swim"
version="1.0.1"
provider-name="jsergio">
<requires>
<import addon="xbmc.python" version="2.20.0"/>
<import addon="script.module.t1mlib" version="1.0.18"/>
</requires>
<extension point="xbmc.python.pluginsource"
library="default.py">
<provides>video</provides>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en">Adult Swim</summary>
<description lang="en">Watch free episodes from adultswim.com</description>
<disclaimer lang="en">Feel free to use this script. For information visit the wiki.</disclaimer>
<platform>all</platform>
<language>en</language>
<license>GNU GENERAL PUBLIC LICENSE. Version 2, June 1991</license>
<forum>http://forum.kodi.tv/showthread.php?tid=224741</forum>
<website>www.adultswim.com</website>
<email></email>
<source>https://github.com/learningit/Kodi-plugins-source</source>
</extension>
</addon>
<addon id="plugin.video.aini"
version="1.0.2"
name="Assassins ini"
provider-name="Smurf, Locknload">
<requires>
<import addon="xbmc.python" version="2.20.0"/>
<import addon="script.module.xbmcswift2" version="2.4.0"/>
<import addon="script.module.requests" version="2.9.1" />
</requires>
<extension point="xbmc.python.pluginsource" library="main.py">
<provides>video</provides>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en">INI Creator for FMG & Assassins TV Guide</summary>
<description lang="en"></description>
<disclaimer lang="en">.</disclaimer>
</extension>
</addon>
<addon id="plugin.video.alive.hd"
name="Alive.HD"
version="5.1"
provider-name="frenchdj">
<requires>
<import addon="xbmc.python" version="2.1.0"/>
<import addon="script.module.beautifulsoup" version="3.2.1"/>
<import addon="script.module.simple.downloader" version="0.9.4"/>
<import addon="script.module.beautifulsoup4" />
<import addon="script.module.requests" />
<import addon="script.module.httplib2" />
<import addon="script.module.liveresolver" version="0.1.24" optional="true"/>
<import addon="script.module.youtube.dl" optional="true"/>
<import addon="plugin.video.youtube" optional="true" />
<import addon="script.module.urlresolver" optional="true"/>
<import addon="script.module.simplejson" />
<import addon="script.module.livestreamer" optional="true"/>
<import addon="script.module.pyamf" optional="true"/>
</requires>
<extension point="xbmc.python.pluginsource" library="default.py">
<provides>video</provides>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en">Dual Edition Addon</summary>
<description>Concerts and Djs live performances in HD quality.
Playlists organized by categories and any source comes from Youtube users.
[B][COLOR lime]Advised the latest version of youtube 5.*.*[/B][/COLOR]</description>
<platform>all</platform>
</extension>
</addon>
<addon id="plugin.video.bigbuckbunny" name="Big Buck Bunny" version="1.0.3" provider-name="MetalKettle">
<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"></summary>
<description lang="en"></description>
<platform>all</platform>
</extension>
</addon>
<addon id="plugin.video.cartoons8" name="Cartoons8" version="1.0.34" provider-name="MetalKettle">
<requires>
<import addon="xbmc.python" version="2.1.0"/>
<import addon="script.module.urlresolver" version="0.0.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>
<platform>all</platform>
</extension>
</addon>
<addon id="plugin.video.ccloudtv"
name="cCloud TV"
version="1.5.6"
provider-name="rattlehead">
<requires>
<import addon="xbmc.python" version="2.19.0"/>
<import addon="script.module.beautifulsoup" version="3.2.1"/>
<import addon="script.module.simple.downloader" version="0.9.4"/>
<import addon="script.module.beautifulsoup4" />
<import addon="script.module.requests" />
<import addon="script.module.httplib2" />
<import addon="script.module.youtube.dl" optional="true"/>
<import addon="plugin.video.youtube" />
<import addon="script.module.urlresolver" version="3.0.0" optional="true"/>
<import addon="script.module.liveresolver" version="0.1.28"/>
<import addon="script.module.addon.common" />
<import addon="script.module.simplejson" version="3.3.0"/>
<import addon="script.common.plugin.cache" version="2.5.5"/>
<import addon="script.tvaddons.debug.log" optional="true" />
</requires>
<extension point="xbmc.python.pluginsource" library="default.py">
<provides>video executable</provides>
</extension>
<extension point="xbmc.addon.metadata">
<summary>All the best from cCloud TV</summary>
<description>cCloud is an open source cloud based social IPTV service. It is built by the community for the community, where streaming is just a click away. Just click, play and stream. Yes, it's that simple. Just go to [COLOR blue]http://ccloudtv.org[/COLOR] and enjoy:) Please report any channels that are down here [COLOR blue]http://www.tiny.cc/reportchs[/COLOR] Users can now check servers status which can be found at [COLOR blue]http://ccloudtv.org/status[/COLOR]
</description>
<license>http://www.gnu.org/licenses/</license>
<forum>http://ccloudtv.org/forum</forum>
<website>http://ccloudtv.org</website>
<website>http://facebook.com/ccloudapp</website>
<website>http://twitter.com/ccloudapp</website>
<email></email>
<platform>all</platform>
</extension>
</addon>
<addon id="plugin.video.covenant" version="1.1.1" name="Covenant" provider-name="Covenant">
<requires>
<import addon="xbmc.python" version="2.19.0" />
<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.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.</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 authors 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>
<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>[B]1.1.1[/B][CR]- Fix trakt support[CR]- Updated existing providers[CR]- Added new providers</news>
</extension>
</addon>
<addon id="plugin.video.crackler"
name="Crackler"
version="1.0.6.1"
provider-name="eign">
<requires>
<import addon="xbmc.python" version="2.14.0"/>
<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">
<summary lang="en">Crackler</summary>
<description lang="en">TV Shows and Movies from Crackle</description>
<platform>all</platform>
<language>en</language>
<license>GNU GENERAL PUBLIC LICENSE. Version 2, June 1991</license>
</extension>
</addon>
<addon id="plugin.video.DecadoDocs" name="Decado Documentaries" version="1.0.3" provider-name="MetalKettle">
<requires>
<import addon="xbmc.python" version="2.1.0"/>
<import addon="script.module.t0mm0.common" version="2.0.0"/>
<import addon="plugin.video.youtube" version="3.0.0"/>
<import addon="script.common.plugin.cache" version="2.5.2"/>
</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>
<platform>all</platform>
</extension>
</addon>
<addon id="plugin.video.documented.hd"
name="Documented.HD"
version="1.1"
provider-name="frenchdj">
<requires>
<import addon="xbmc.python" version="2.1.0"/>
<import addon="script.module.beautifulsoup" version="3.2.1"/>
<import addon="script.module.simple.downloader" version="0.9.4"/>
<import addon="script.module.beautifulsoup4" />
<import addon="script.module.requests" />
<import addon="script.module.httplib2" />
<import addon="script.module.liveresolver" version="0.1.24" optional="true"/>
<import addon="script.module.youtube.dl" optional="true"/>
<import addon="plugin.video.youtube" optional="true" />
<import addon="script.module.urlresolver" optional="true"/>
<import addon="script.module.simplejson" />
<import addon="script.module.livestreamer" optional="true"/>
<import addon="script.module.pyamf" optional="true"/>
</requires>
<extension point="xbmc.python.pluginsource" library="default.py">
<provides>video</provides>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en">Dual Edition Addon</summary>
<description>Alternative documentaries in HD quality.
Playlists organized by categories and any source comes from Youtube users.
[B][COLOR lime]Advised the latest version of youtube 5.*.*[/B][/COLOR]</description>
<platform>all</platform>
</extension>
</addon>
<addon id="plugin.video.Drstream" name="Dr Stream Fork" version="2.5.0" provider-name="The Alpha">
<requires>
<import addon="xbmc.python" version="2.1.0" />
<import addon="plugin.video.youtube" version="5.2.1" optional="true" />
<import addon="script.module.pyxbmct" version="1.1.4" />
<import addon="script.module.urlresolver" version="3.0.0"/>
<import addon="script.module.liveresolver" version="0.1.24"/>
<import addon="script.video.F4mProxy" version="2.2.3"/>
</requires>
<extension point="xbmc.python.pluginsource" library="default.py">
<provides>video</provides>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en">Dr Stream Fork</summary>
<description lang="en">Real Debrid Movies only.</description>
<platform>all</platform>
<forum></forum>
<website></website>
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
</assets>
<news>REBOOT</news>
</extension>
</addon>
<addon id="plugin.video.FMG"
name="Find My Game"
version="2.16"
provider-name="Smurf">
<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">Twitter Support @DeveloperSmurf</summary>
<description lang="en">Easy Way To Find which Add-on is showing your game. FMG does not provide any streams to matches, FMG seaches through your linked addons for streams, Add your addons using the Assassins ini Creator. Adding Add-ons to FMG is done so at users descression</description>
<disclaimer lang="en">FMG Does not the condone use of illegimate streams</disclaimer>
<platform>all</platform>
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
</assets>
</extension>
</addon>
<addon id="plugin.video.fod" name="[COLOR red]FEAR[/COLOR][COLOR white]OF[/COLOR][COLOR red]THE[/COLOR][COLOR white]DARK[/COLOR]" version="0.0.2" provider-name="Taurus">
<requires>
<import addon="xbmc.python" version="2.1.0"/>
<import addon="script.module.t0mm0.common" version="2.0.0"/>
<import addon="script.module.beautifulsoup" version="3.2.1"/>
<import addon="script.module.simple.downloader" version="0.9.4"/>
<import addon="script.module.beautifulsoup4" />
<import addon="script.module.simple.downloader" version="0.9.4"/>
<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.urlresolver" />
<import addon="script.module.liveresolver" />
<import addon="script.module.simplejson" />
<import addon="script.common.plugin.cache" version="2.5.2"/>
<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">Movies</summary>
<description lang="en">Brought To You By Taurus Find all your favourite Horror Movies in one place Releases from each year, classic collections and extreme films. Are you afraid of the Dark?</description>
<platform>all</platform>
</extension>
</addon>
<addon id="plugin.video.fof"
name="Film0n"
version="0.0.8"
provider-name="rattlehead">
<requires>
<import addon="xbmc.python" version="2.1.0"/>
<import addon="script.module.beautifulsoup" version="3.2.1"/>
<import addon="script.module.simple.downloader" version="0.9.4"/>
<import addon="script.module.beautifulsoup4" />
<import addon="script.module.requests" />
<import addon="script.module.httplib2" />
<import addon="script.module.liveresolver" version="0.1.24" optional="true"/>
<import addon="script.module.youtube.dl" optional="true"/>
<import addon="plugin.video.youtube" optional="true" />
<import addon="script.module.urlresolver" optional="true"/>
<import addon="script.module.addon.common" />
<import addon="script.module.simplejson" version="3.3.0"/>
<import addon="script.common.plugin.cache" version="2.5.5"/>
<import addon="script.module.livestreamer" optional="true"/>
<import addon="script.module.pyamf" optional="true"/>
</requires>
<extension point="xbmc.python.pluginsource" library="default.py">
<provides>video</provides>
</extension>
<extension point="xbmc.addon.metadata">
<summary>Film0n</summary>
<description>A quick and dirty fork of LiveStreamsPro, to get Film0n working again</description>
<platform>all</platform>
</extension>
</addon>
<addon id="plugin.video.football.today" name="Football Today" version="3.0.5" provider-name="lambda,jsergio">
<requires>
<import addon="xbmc.python" version="2.1.0"/>
<import addon="script.module.simplejson" optional="true"/>
<import addon="script.module.parsedom" optional="true"/>
<import addon="plugin.video.youtube" optional="true"/>
<import addon="script.module.urlresolver" version="3.0.22"/>
</requires>
<extension point="xbmc.python.pluginsource" library="default.py">
<provides>video</provides>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en">Football on demand</summary>
<description lang="en">Visit TVADDONS.ag for support</description>
<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 provider.</disclaimer>
<forum>http://forums.tvaddons.ag/forums/148-lambda-s-xbmc-addons</forum>
<source>https://offshoregit.com/lambda81/lambda-addons</source>
<website>https://offshoregit.com/lambda81/</website>
<platform>all</platform>
</extension>
</addon>
<addon id="plugin.video.kiddiecartoons" name="Kiddie Cartoons" version="1.0.2" provider-name="MetalKettle">
<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"></summary>
<description lang="en"></description>
<platform>all</platform>
</extension>
</addon>
<addon id="plugin.video.learningzone" name="Learning Zone" version="1.0.8" provider-name="MetalKettle">
<requires>
<import addon="script.module.simplejson" version="3.3.0"/>
<import addon="xbmc.python" version="2.1.0"/>
<import addon="script.module.t0mm0.common" version="2.0.0"/>
<import addon="plugin.video.youtube" version="3.0.0"/>
<import addon="script.module.urlresolver" version="2.1.2"/>
<import addon="script.common.plugin.cache" version="2.5.2"/>
<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">Welcome to the worlds largest collection of computer and technology related tutorials on XBMC/KODI</description>
<platform>all</platform>
</extension>
</addon>
<addon id="plugin.video.mic"
name="Made In Canada IPTV"
version="2.1"
provider-name="TheKrazy0ne">
<requires>
<import addon="xbmc.python" version="2.1.0"/>
<import addon="script.module.beautifulsoup" version="3.2.1"/>
<import addon="script.module.simple.downloader" version="0.9.4"/>
<import addon="script.module.beautifulsoup4" />
<import addon="script.module.requests" />
<import addon="script.module.httplib2" />
<import addon="script.module.liveresolver" version="0.1.24" optional="true"/>
<import addon="script.module.youtube.dl" optional="true"/>
<import addon="plugin.video.youtube" optional="true" />
<import addon="script.module.urlresolver" optional="true"/>
<import addon="script.module.simplejson" />
<import addon="script.module.livestreamer" optional="true"/>
<import addon="script.module.pyamf" optional="true"/>
</requires>
<extension point="xbmc.python.pluginsource" library="default.py">
<provides>video</provides>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en">Free Canadian IPTV</summary>
<description>
Follow @TheKrazy0ne (Note that is a zero) on twitter.
**DISCLAIMER**
1. MiC DOES NOT HOST ANY OF THE STREAMS FOUND WITHIN THIS ADDON
2. ALL STREAMS FOUND WITHING THIS ADDON ARE FOUND FREELY ON THE INTERNET
3. WE ACCEPT NO RESPONSIBILITY FOR THE USE OF THIS ADDON
4. THIS ADDON IS AND ALWAYS WILL BE FREE!!
5. IF YOU PAID FOR THIS ADDON, ASK FOR YOUR MONEY BACK!!!
6. ENJOY THE STREAMS WITHIN..... CHEERS!
</description>
<platform>all</platform>
</extension>
</addon>
<addon id="plugin.video.moviedude" name="Movie Dude" version="04.07.17" provider-name="The Alpha">
<requires>
<import addon="xbmc.python" version="2.1.0" />
<import addon="plugin.video.youtube" version="5.2.1" optional="true" />
<import addon="script.module.pyxbmct" version="1.1.4" />
<import addon="script.module.urlresolver" version="3.0.0"/>
<import addon="script.module.liveresolver" version="0.1.24"/>
<import addon="script.video.F4mProxy" version="2.2.3"/>
</requires>
<extension point="xbmc.python.pluginsource" library="default.py">
<provides>video</provides>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en">Movie Dude</summary>
<description lang="en"></description>
<platform>all</platform>
<forum></forum>
<website></website>
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
</assets>
<news>REBOOT</news>
</extension>
</addon>
<addon id="plugin.video.nbaondemand" name="NBA On-demand" version="2.0.7" provider-name="lambda,enen92,jsergio">
<requires>
<import addon="xbmc.python" version="2.1.0"/>
<import addon="script.module.simplejson" optional="true"/>
<import addon="script.module.parsedom" optional="true"/>
<import addon="plugin.video.youtube" optional="true"/>
<import addon="script.module.urlresolver" version="3.0.24"/>
</requires>
<extension point="xbmc.python.pluginsource" library="default.py">
<provides>video</provides>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en">NBA on demand</summary>
<description lang="en">Visit TVADDONS.ag for support</description>
<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 provider.</disclaimer>
<forum>http://forums.tvaddons.ag/forums/148-lambda-s-xbmc-addons</forum>
<source>https://offshoregit.com/lambda81/lambda-addons</source>
<website>https://offshoregit.com/lambda81/</website>
<platform>all</platform>
</extension>
</addon>
<addon id="plugin.video.nhlondemand" name="NHL On-demand" version="2.0.7" provider-name="lambda,jsergio">
<requires>
<import addon="xbmc.python" version="2.1.0"/>
<import addon="script.module.simplejson" optional="true"/>
<import addon="script.module.parsedom" optional="true"/>
<import addon="script.module.urlresolver" version="3.0.24"/>
<import addon="plugin.video.youtube" optional="true"/>
</requires>
<extension point="xbmc.python.pluginsource" library="default.py">
<provides>video</provides>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en">NHL on demand</summary>
<description lang="en">Visit TVADDONS.ag for support</description>
<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 provider.</disclaimer>
<forum>http://forums.tvaddons.ag/forums/148-lambda-s-xbmc-addons</forum>
<source>https://offshoregit.com/lambda81/lambda-addons</source>
<website>https://offshoregit.com/lambda81/</website>
<platform>all</platform>
</extension>
</addon>
<addon id="plugin.video.ororotv" name="Ororo TV" version="3.4.9" provider-name="ororo.tv">
<requires>
<import addon="xbmc.python" version="2.1.0"/>
<import addon="repository.ororotv" version="1.0.1" />
<import addon="script.module.simplejson" version="2.0.10"/>
<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.subtitle.module" library="default.py" />
<extension point="xbmc.service" library="service.py" start="startup">
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en">Learn English by watching TV shows and movies</summary>
<description lang="en">Learn English by watching TV shows and movies</description>
<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 provider.</disclaimer>
</extension>
</addon>
<addon id="plugin.video.pythontut" name="Python Tutorial Videos" version="1.0.8" provider-name="MetalKettle">
<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"> </summary>
<description lang="en"> Learn Python using these easy to follow videos from http://buckysroom.org/ </description>
<platform>all</platform>
</extension>
</addon>
<addon id="plugin.video.spacetelescope" name="Space Telescope" version="0.0.7" provider-name="MetalKettle">
<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 and news releases from the Hubble Space Telescope project</summary>
<description lang="en">Videos and news releases from the Hubble Space Telescope project</description>
<platform>all</platform>
</extension>
</addon>
<addon
id="plugin.video.SportsDevil"
version="3.build.20170624"
name="SportsDevil"
provider-name="SportsDevil">
<requires>
<import addon="xbmc.python" version="2.14.0"/>
<import addon="script.module.dateutil" />
<import addon="script.module.simplejson" />
<import addon="script.module.six" />
<import addon="script.module.requests" />
<import addon="script.module.livestreamer" />
<!--<import addon="script.video.F4mProxy" />
<import addon="plugin.video.f4mTester" />-->
</requires>
<extension
point="xbmc.python.pluginsource"
library="default.py">
<provides>video</provides>
</extension>
<extension point="xbmc.service" library="service/proxy_service.py" start="startup" />
<extension point="xbmc.addon.metadata">
<summary>Play videos of different ad-financed sports streaming sites</summary>
<description>Play videos of different ad-financed sports streaming sites.
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.
</description>
<license>GNU GENERAL PUBLIC LICENSE. Version 2, June 1991</license>
<platform>all</platform>
</extension>
</addon>
<addon id="plugin.video.tellyads" name="Telly Ads" version="1.0.0" provider-name="MetalKettle">
<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"></summary>
<description lang="en"></description>
<platform>all</platform>
</extension>
</addon>
<addon id="plugin.video.tinklepad" name="TinklePad" version="2.0.3" provider-name="jsergio">
<requires>
<import addon="xbmc.python" version="2.1.0"/>
<import addon="script.module.metahandler" version="2.9.1"/>
<import addon="script.module.urlresolver" version="3.0.32"/>
<import addon="plugin.video.youtube" version="5.2.1"/>
</requires>
<extension point="xbmc.python.pluginsource" library="default.py">
<provides>video</provides>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en">Watch a wide selection of movies and tv shows from 5movies.to</summary>
<description lang="en">Big thanks to Lambda for his foundation code and use of Exodus for the Latest HD section and Jokstergfx for the artwork!</description>
<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 provider.</disclaimer>
<platform>all</platform>
</extension>
</addon>
<addon id="plugin.video.tonido-client" name="Tonido Client" version="1.0.1" provider-name="MetalKettle">
<requires>
<import addon="xbmc.python" version="2.1.0"/>
<import addon="script.module.t0mm0.common" version="2.0.0"/>
</requires>
<extension point="xbmc.python.pluginsource" library="default.py">
<provides>audio video</provides>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en"></summary>
<description lang="en"></description>
<platform>all</platform>
</extension>
</addon>
<addon id="plugin.video.toonmania" name="ToonMania" version="1.0.4" provider-name="MetalKettle">
<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"></summary>
<description lang="en"></description>
<platform>all</platform>
</extension>
</addon>
<addon id="plugin.video.toonstv" name="Angry Birds : Toons TV" version="1.0.0" provider-name="MetalKettle">
<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"></summary>
<description lang="en"></description>
<platform>all</platform>
</extension>
</addon>
<addon id="plugin.video.TubTub" name="TubTub" version="1.0.1" provider-name="MetalKettle">
<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">24-7 Streaming of various tv shows or show types</summary>
<description lang="en">Some of the streams are poor quality, be warned :)</description>
<platform>all</platform>
</extension>
</addon>
<addon id="plugin.video.tvmix" name="TV Mix" version="1.0.6" provider-name="MetalKettle">
<requires>
<import addon="xbmc.python" version="2.1.0"/>
<import addon="script.module.urlresolver" version="2.1.2"/>
</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>
<platform>all</platform>
</extension>
</addon>
<addon id="plugin.video.uwc"
name="Ultimate Whitecream"
version="1.1.54"
provider-name="Whitecream">
<requires>
<import addon="xbmc.python" version="2.1.0"/>
<import addon="script.module.urlresolver" version="3.0.12" />
<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">Watch [COLOR red][B]ADULT[/B][/COLOR] Movies with Ultimate WhiteCream</summary>
<description lang="en">Watch [COLOR red][B]ADULT[/B][/COLOR] Movies with Ultimate WhiteCream
For support, visit: [COLOR hotpink]http://bit.ly/uwc-support[/COLOR]
Follow us on twitter: [COLOR blue]Whitecream_UWC[/COLOR]</description>
<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 provider.</disclaimer>
<forum>http://bit.ly/uwc-support</forum>
</extension>
</addon>
<addon id="repository.colossus" name="[COLOR gold]Colossal Repository[/COLOR]" version="999.999.2" provider-name="Colossal">
<extension point="xbmc.addon.repository" name="[COLOR gold]Colossal Repository[/COLOR]">
<dir>
<info compressed="false">https://raw.githubusercontent.com/Colossal1/repository.colossus.common/master/addons.xml</info>
<checksum>https://raw.githubusercontent.com/Colossal1/repository.colossus.common/master/addons.xml.md5</checksum>
<datadir zip="true">https://raw.githubusercontent.com/Colossal1/repository.colossus.common/master/</datadir>
</dir>
<info compressed="false">https://raw.githubusercontent.com/Colossal1/repository.colossus/master/addons.xml</info>
<checksum>https://raw.githubusercontent.com/Colossal1/repository.colossus/master/addons.xml.md5</checksum>
<datadir zip="true">https://raw.githubusercontent.com/Colossal1/repository.colossus/master/</datadir>
</extension>
<extension point="xbmc.addon.metadata">
<summary>Home Of 3rd Party Addons</summary>
<description></description>
<platform>all</platform>
</extension>
</addon>
<addon id="repository.ororotv" version="1.0.1" name="Ororo repository" provider-name="ororo.tv">
<extension point="xbmc.addon.repository" name="Ororo repository">
<info compressed="false">https://ororo.tv/kodi/addons.xml</info>
<checksum>https://ororo.tv/kodi/addons.xml.md5</checksum>
<datadir zip="true">https://ororo.tv/kodi/</datadir>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en">Ororo repository</summary>
<description lang="en">Ororo repository</description>
<platform>all</platform>
</extension>
</addon>
<addon id="repository.thgiliwt" name="Thgiliwt Addon Repository" version="1.1.2" provider-name="Thgiliwt">