-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathaddons.xml
1105 lines (1058 loc) · 54 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.hunt-channel" name="Hunt Channel" version="2019.09.21" provider-name="MetalChris">
<requires>
<import addon="xbmc.python" version="2.20.0"/>
<import addon="script.module.beautifulsoup4" version="4.3.2"/>
<import addon="script.module.html5lib" version="0.999.0"/>
</requires>
<extension point="xbmc.python.pluginsource" library="addon.py">
<provides>video</provides>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en">Watch Live Programming from Hunt Channel</summary>
<description lang="en">Hunt Channel’s Mission is to provide Quality Outdoor Programming during PrimeTime.</description>
<disclaimer lang="en">Support at forum.kodi.tv or my github only. No support without a full, unedited debug log. No support at TVAddons or any other forum.</disclaimer>
<language></language>
<platform>all</platform>
<license>GPL(v2) or Later</license>
<forum>http://forum.kodi.tv/showthread.php?tid=276043</forum>
<website>http://www.huntchannel.tv</website>
<email></email>
<source></source>
<news>v.2019.09.21: Fixes for website changes, only live stream is available.</news>
</extension>
</addon>
<addon id="repository.metalchris" name="MetalChris' Repository" version="3.4.3" provider-name="MetalChris">
<extension point="xbmc.addon.repository" name="Official MetalChris Repository">
<info compressed="false">https://raw.github.com/MetalChris/repository.metalchris/master/addons.xml</info>
<checksum>https://raw.github.com/MetalChris/repository.metalchris/master/addons.xml.md5</checksum>
<datadir zip="true">https://raw.github.com/MetalChris/repository.metalchris/master/zips</datadir>
</extension>
<extension point="xbmc.addon.metadata">
<summary>MetalChris' Kodi addons</summary>
<description>Support provided at forum.kodi.tv or via my github. I will not provide support at TVaddons, or any other forum. Please provide a full, unedited, debug log when requesting support.</description>
<platform>all</platform>
<news>Update Internet Archive [Audio]</news>
</extension>
</addon>
<addon id="plugin.video.natgeo" name="Nat Geo Video" version="3.0.1" provider-name="MetalChris">
<requires>
<import addon="xbmc.python" version="2.1.0"/>
<import addon="script.module.beautifulsoup4" version="4.3.2"/>
<import addon="script.module.html5lib" version="0.999.0"/>
<import addon="script.module.simplejson" version="3.3.0"/>
</requires>
<extension point="xbmc.python.pluginsource"
library="addon.py">
<provides>video</provides>
</extension>
<extension point="xbmc.addon.metadata">
<platform>all</platform>
<license>GPL 2.0 or Later</license>
<summary lang="en">Nat Geo Video</summary>
<description lang="en">Watch videos from the National Geographic website.</description>
<disclaimer lang="en"></disclaimer>
</extension>
</addon>
<addon id="plugin.video.smithsonian-magazine" name="Smithsonian Magazine" version="0.0.4" provider-name="MetalChris">
<requires>
<import addon="xbmc.python" version="2.1.0"/>
<import addon="script.module.beautifulsoup4" version="4.3.2"/>
<import addon="script.module.requests" version="2.9.1"/>
</requires>
<extension point="xbmc.python.pluginsource" library="addon.py">
<provides>video</provides>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en">Watch Videos from Smithsonian Magazine</summary>
<description lang="en">Watch hundreds of videos on a variety of topics from Smithsonian Magazine. Informative, educational, and enterntaining!</description>
<disclaimer lang="en"></disclaimer>
<language></language>
<platform>all</platform>
<license></license>
<forum></forum>
<website></website>
<email></email>
<source></source>
</extension>
</addon>
<addon id="plugin.video.powernationtv" name="PowerNation TV" version="2019.02.01" provider-name="MetalChris, zymbiosis">
<requires>
<import addon="xbmc.python" version="2.1.0"/>
<import addon="script.module.beautifulsoup4" version="4.3.2"/>
<import addon="script.module.html5lib" version="0.999.0"/>
<import addon="script.module.mechanize" version="0.2.6"/>
</requires>
<extension point="xbmc.python.pluginsource"
library="addon.py">
<provides>video</provides>
</extension>
<extension point="xbmc.addon.metadata">
<platform>all</platform>
<license>GPL 2.0 or Later</license>
<summary lang="en">PowerNation TV is the source of how-to television for auto enthusiasts.</summary>
<description lang="en">PowerNation TV brings you in-depth how-to shows to cater to your automotive interests, featuring Xtreme Off-Road, Detroit Muscle, Truck Tech, Engine Power and more! Currently this add-on provides access to the free episodes only.</description>
<disclaimer lang="en">For support go to my github. No support without a full, unedited debug log. No support at TVAddons or any other forum.</disclaimer>
<language></language>
<platform>all</platform>
<license>GPL(v2) or Later</license>
<forum></forum>
<website>http://www.powernationtv.com</website>
<email></email>
<source>https://github.com/MetalChris/repository.metalchris/tree/master/plugin.video.powernationtv</source>
<news>Version 2019.02.01[CR]- Add ability to login to paid accounts[CR]Version 2019.01.27[CR]- Fix for website changes[CR]Version 2018.10.03[CR]- Skip episodes that require a paid subscription[CR]- Add log notices option in settings[CR]Version 2018.04.24[CR]- Add option in settings to force views[CR]Version 2018.04.23[CR]- Fix for website changes (April 2018)[CR]Version 0.0.4[CR]- Fix for ascii errors[CR]Version 0.0.3[CR]- Fixes for website changes (April 3, 3017)[CR]Version 0.0.2 (Thanks to Zymbiosis!)[CR]- Unified all tabs to spaces for better cross-editor compatibility.[CR]- Skip "coming soon" episodes.[CR]-Add additional media information (description, season, episode, date).[CR]- Default sort by episode number.[CR]- Fix stream url to properly handle new and old shows while allowing auto stream quality selection (m3u8).[CR]Version 0.0.1[CR]- Initial Release[CR]</news>
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
<screenshot>resources/media/screenshot01.png</screenshot>
<screenshot>resources/media/screenshot02.png</screenshot>
<screenshot>resources/media/screenshot03.png</screenshot>
<screenshot>resources/media/screenshot04.png</screenshot>
</assets>
</extension>
</addon>
<addon id="plugin.video.airspace" name="Air & Space Smithsonian" version="0.0.5" provider-name="MetalChris">
<requires>
<import addon="xbmc.python" version="2.1.0"/>
<import addon="script.module.beautifulsoup4" version="4.3.2"/>
<import addon="script.module.html5lib" version="0.999.0"/>
</requires>
<extension point="xbmc.python.pluginsource" library="addon.py">
<provides>video</provides>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en">Watch Videos from Air & Space Smithsonian</summary>
<description lang="en">Air & Space Smithsonian magazine has been delighting aerospace enthusiasts since April 1986. Air & Space brings you the world of aviation and space flight with its in-depth coverage of flight history, flight today, military aviation, space exploration and aeronautical technology.</description>
<disclaimer lang="en"></disclaimer>
<language></language>
<platform>all</platform>
<license></license>
<forum></forum>
<website></website>
<email></email>
<source></source>
</extension>
</addon>
<addon id="plugin.video.internetarchive" name="Internet Archive [Video]" version="3.1.1" provider-name="MetalChris">
<requires>
<import addon="xbmc.python" version="2.1.0"/>
<import addon="script.module.beautifulsoup4" version="4.2.0"/>
<import addon="script.module.html5lib" version="0.999.0"/>
</requires>
<extension point="xbmc.python.pluginsource" library="addon.py">
<provides>video</provides>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en">Watch thousands of free videos and movies from the Internet Archive</summary>
<description lang="en">Internet Archive is a non-profit digital library. Choose from thousands of digital movies uploaded by Archive users which range from classic full-length films, to daily alternative news broadcasts, to cartoons and concerts.</description>
<disclaimer lang="en"></disclaimer>
<language></language>
<platform>all</platform>
<license></license>
<forum></forum>
<website></website>
<email></email>
<source></source>
</extension>
</addon>
<addon id="plugin.video.reruncentury" name="RerunCentury" version="2020.04.12" provider-name="MetalChris">
<requires>
<import addon="xbmc.python" version="2.1.0"/>
<import addon="script.module.beautifulsoup4" version="4.3.2"/>
<import addon="script.module.html5lib" version="0.999.0"/>
</requires>
<extension point="xbmc.python.pluginsource"
library="addon.py">
<provides>video</provides>
</extension>
<extension point="xbmc.addon.metadata">
<platform>all</platform>
<license>GPL 2.0</license>
<summary lang="en">Free Videos and 20th Century TV</summary>
<description lang="en">Free Videos and 20th Century TV | Watch public domain episodes from nearly 200 classic TV shows. Links to legal videos.</description>
<disclaimer lang="en">For support go to my github. No support without a full, unedited debug log. No support at TVAddons or any other forum.</disclaimer>
<language></language>
<platform>all</platform>
<license>GPL(v2) or Later</license>
<forum></forum>
<website>http://www.reruncentury.com</website>
<email></email>
<source>https://github.com/MetalChris/repository.metalchris/tree/master/plugin.video.reruncentury</source>
<news>v.2020.04.12[CR]- Fixes for website changes and code cleanup.</news>
<assets>
<icon>icon.png</icon>
<icon>fanart.jpg</icon>
</assets>
</extension>
</addon>
<addon id="plugin.video.cfl" name="CFL Video" version="2018.07.25" provider-name="MetalChris">
<requires>
<import addon="xbmc.python" version="2.20.0"/>
<import addon="script.module.beautifulsoup4" version="4.3.2"/>
<import addon="script.module.html5lib" version="0.999.0"/>
<import addon="script.module.mechanize" version="0.2.6"/>
</requires>
<extension point="xbmc.python.pluginsource" library="addon.py">
<provides>video</provides>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en">CFL Video</summary>
<description lang="en">Watch video from CFL.ca | Official Site of the Canadian Football League</description>
<disclaimer lang="en"></disclaimer>
<language></language>
<platform>all</platform>
<license>GPL(v2 or later)</license>
<forum></forum>
<website>https://www.cfl.ca/videos</website>
<email></email>
<source></source>
</extension>
</addon>
<addon id="service.darksky_alerts"
name="DarkSky Weather Alerts"
version="2019.03.17"
provider-name="MetalChris">
<requires>
<import addon="xbmc.python" version="2.20.0"/>
<import addon="weather.darksky" version="2018.12.25"/>
</requires>
<extension point="xbmc.service"
library="service.py">
<provides>video</provides>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en">DarkSky Weather Alerts</summary>
<description lang="en">Service to provide notifications of severe weather alerts for your location from DarkSky Weather.[CR][CR]https://darksky.net</description>
<disclaimer lang="en">For support go to my github. No support without a full, unedited debug log. No support at TVAddons or any other forum.</disclaimer>
<platform>all</platform>
<license>GPL 2.0</license>
<news>v.2019.03.18[CR]- Move sleep command[CR]- Correct location of alert.wav file</news>
<assets>
<icon>icon.png</icon>
<screenshot>resources/media/screenshot001.png</screenshot>
<screenshot>resources/media/screenshot002.png</screenshot>
<screenshot>resources/media/screenshot003.png</screenshot>
</assets>
</extension>
</addon>
<addon id="plugin.video.space" name="Space.com" version="2020.04.17" provider-name="MetalChris">
<requires>
<import addon="xbmc.python" version="2.1.0"/>
<import addon="script.module.simplejson" version="3.3.0"/>
<import addon="script.module.mechanize" version="0.2.6"/>
</requires>
<extension point="xbmc.python.pluginsource" library="addon.py">
<provides>video</provides>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en">Watch videos from Space.com</summary>
<description lang="en">Space.com is the premier source of space exploration, innovation and astronomy news, chronicling (and celebrating) humanity's ongoing expansion across the final frontier. We transport our visitors across the solar system and beyond through accessible, comprehensive coverage of the latest news and discoveries. For us, exploring space is as much about the journey as it is the destination. So from skywatching guides and stunning photos of the night sky to rocket launches and breaking news of robotic probes visiting other planets, at Space.com you’ll find something amazing every day. </description>
<disclaimer lang="en">For support go to my github. No support without a full, unedited debug log. No support at TVAddons or any other forum.</disclaimer>
<language></language>
<platform>all</platform>
<license>GPL(v2) or Later</license>
<forum></forum>
<website>http://www.space.com</website>
<email></email>
<source>https://github.com/MetalChris/repository.metalchris/tree/master/plugin.video.space</source>
<news>Version 2020.04.17 - Fix for website changes.</news>
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
</assets>
</extension>
</addon>
<addon id="plugin.video.fright-pix" name="FrightPix.com" version="0.0.2" provider-name="MetalChris">
<requires>
<import addon="xbmc.python" version="2.1.0"/>
<import addon="script.module.beautifulsoup" version="3.2.1"/>
<import addon="script.module.mechanize" version="0.2.6"/>
<import addon="plugin.video.youtube" version="3.1.0" />
<import addon="script.module.simplejson" version="3.3.0"/>
</requires>
<extension point="xbmc.python.pluginsource"
library="addon.py">
<provides>video</provides>
</extension>
<extension point="xbmc.addon.metadata">
<platform>all</platform>
<license>GPL 2.0 or Later</license>
<summary lang="en">FrightPix</summary>
<description lang="en">Watch HUNDREDS and HUNDREDS of FREE feature length movies from FrightPix.</description>
<disclaimer lang="en">Don't blame me if you have nightmares.</disclaimer>
</extension>
</addon>
<addon id="plugin.audio.internet-radio" name="Internet Radio" version="0.0.2" provider-name="MetalChris">
<requires>
<import addon="xbmc.python" version="2.1.0"/>
<import addon="script.module.beautifulsoup4" version="4.3.2"/>
<import addon="script.module.requests" version="2.9.1"/>
<import addon="script.module.html5lib" version="0.999.0"/>
</requires>
<extension point="xbmc.python.pluginsource" library="addon.py">
<provides>audio</provides>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en">Internet Radio</summary>
<description lang="en">Internet Radio: Free Music from Thousands of Stations - Listen to free music from thousands of internet radio stations streaming live right now. Search or browse all your favourite music genres.</description>
<disclaimer lang="en"></disclaimer>
<language></language>
<platform>all</platform>
<license></license>
<forum></forum>
<website></website>
<email></email>
<source></source>
</extension>
</addon>
<addon id="plugin.video.bnwmovies" name="Black and White Movies" version="0.0.1" provider-name="MetalChris">
<requires>
<import addon="xbmc.python" version="2.1.0"/>
<import addon="script.module.beautifulsoup4" version="4.3.2"/>
</requires>
<extension point="xbmc.python.pluginsource" library="addon.py">
<provides>video</provides>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en">Watch and download your favorite old movies for free online.</summary>
<description lang="en">Watch and download your favorite old movies for free online. Streaming full classic movies, no registration, legally. Download today's best black and white films.</description>
<disclaimer lang="en"></disclaimer>
<language></language>
<platform>all</platform>
<license>GPL(v2) or Later</license>
<forum></forum>
<website>http://addons.the-antinet.net</website>
<email></email>
<source></source>
</extension>
</addon>
<addon id="plugin.video.discovery-channels" name="Discovery Channels" version="3.3.1" provider-name="MetalChris">
<requires>
<import addon="xbmc.python" version="2.1.0"/>
<import addon="script.module.requests" version="2.9.1"/>
<import addon="script.module.mechanize" version="0.2.6"/>
</requires>
<extension point="xbmc.python.pluginsource" library="addon.py">
<provides>video</provides>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en">Watch a selection of FREE full episodes and short videos</summary>
<description lang="en">Watch FREE full episodes and short videos from the various Discovery channels including Discovery, Discovery Science, Investigation Discovery, Animal Planet, and more.</description>
<disclaimer lang="en">Support provided at forum.kodi.tv or via my github. I will not provide support at TVaddons, or any other forum. Please provide a full, unedited, debug log when requesting support.</disclaimer>
<language></language>
<platform>all</platform>
<license>GPL(v2) or Later</license>
<forum></forum>
<website>http://www.discovery.com</website>
<email></email>
<source>https://github.com/MetalChris/repository.metalchris/tree/master/plugin.video.discovery-channels</source>
<news>v.3.3.1[CR]- Fix for website changes (November 09, 2019)</news>
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
<screenshot>resources/media/screenshot001.png</screenshot>
<screenshot>resources/media/screenshot002.png</screenshot>
<screenshot>resources/media/screenshot003.png</screenshot>
<screenshot>resources/media/screenshot004.png</screenshot>
<screenshot>resources/media/screenshot005.png</screenshot>
</assets>
</extension>
</addon>
<addon id="weather.darksky" name="DarkSky Weather" version="2018.12.25" provider-name="MetalChris">
<requires>
<import addon="xbmc.python" version="2.24.0"/>
</requires>
<extension point="xbmc.python.weather" library="addon.py"/>
<extension point="xbmc.addon.metadata">
<summary lang="en">Current Conditions and Forecast from DarkSky</summary>
<description lang="en">Weather forecast provided by DarkSky. Requires a free API key from DarkSky.net</description>
<disclaimer lang="en"></disclaimer>
<license>GPL 2 or later</license>
<language></language>
<platform>all</platform>
<forum></forum>
<source></source>
</extension>
</addon>
<addon id="plugin.video.usatoday" name="USA Today" version="0.0.2" provider-name="MetalChris">
<requires>
<import addon="xbmc.python" version="2.1.0"/>
<import addon="script.module.beautifulsoup4" version="4.3.2"/>
<import addon="script.module.html5lib" version="0.999.0"/>
</requires>
<extension point="xbmc.python.pluginsource" library="addon.py">
<provides>video</provides>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en">Breaking News, Sports, Money, Life, Weather, Technology and Travel News — all updated 24 hours a day, seven days a week.</summary>
<description lang="en">USATODAY.com is an award-winning news and information site providing visitors with breaking news, sports, money, life, weather, technology and travel news — all updated 24 hours a day, seven days a week.</description>
<disclaimer lang="en"></disclaimer>
<language>English</language>
<platform>all</platform>
<license>GPL 2.0</license>
<forum></forum>
<website></website>
<email></email>
<source></source>
</extension>
</addon>
<addon id="plugin.video.bigcatrescue" name="Big Cat Rescue" version="0.0.3" provider-name="MetalChris">
<requires>
<import addon="xbmc.python" version="2.1.0"/>
<import addon="script.module.beautifulsoup4" version="4.3.2"/>
<import addon="script.module.simplejson" version="3.3.0"/>
<import addon="script.module.requests" version="2.9.1"/>
</requires>
<extension point="xbmc.python.pluginsource" library="addon.py">
<provides>video</provides>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en">Watch videos from Big Cat Rescue</summary>
<description lang="en">Big Cat Rescue, a non profit educational sanctuary, is devoted to rescuing and providing a permanent home for exotic (i.e. wild, not domestic) cats who have been abused, abandoned, bred to be pets, retired from performing acts, or saved from being slaughtered for fur coats, and to educating the public about these animals and the issues facing them in captivity and in the wild.
The sanctuary houses the most diverse population of exotic cats in the world, with about a dozen species of wild cat represented among more than 80+ residents. These include tigers, lions, leopards, cougars, bobcats, lynx, ocelots, servals, caracals and others, many of whom are threatened, endangered, or now extinct in the wild.</description>
<disclaimer lang="en"></disclaimer>
<language></language>
<platform>all</platform>
<license></license>
<forum></forum>
<website></website>
<email></email>
<source></source>
</extension>
</addon>
<addon id="plugin.video.newsmax" name="Newsmax TV" version="0.0.1" provider-name="MetalChris">
<requires>
<import addon="xbmc.python" version="2.1.0"/>
<import addon="script.module.beautifulsoup4" version="4.3.2"/>
<import addon="script.module.requests" version="2.9.1"/>
<import addon="script.module.html5lib" version="0.999.0"/>
</requires>
<extension point="xbmc.python.pluginsource" library="addon.py">
<provides>video</provides>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en">Newsmax TV</summary>
<description lang="en">Newsmax TV is a United States cable news channel that is owned by Newsmax Media. The channel primarily broadcasts from Newsmax's New York studio near Bryant Park, carrying a news/talk format during the day and acquired documentaries and films at night.</description>
<disclaimer lang="en"></disclaimer>
<language></language>
<platform>all</platform>
<license></license>
<forum></forum>
<website></website>
<email></email>
<source></source>
<broken>Download the release from Lunatixz. It works better.</broken>
</extension>
</addon>
<addon id="weather.unlocked" name="Weather Unlocked" version="2018.12.29" provider-name="MetalChris">
<requires>
<import addon="xbmc.python" version="2.1.0"/>
</requires>
<extension point="xbmc.python.weather" library="addon.py"/>
<extension point="xbmc.addon.metadata">
<summary lang="en">Current Conditions and Forecast from Weather Unlocked</summary>
<description lang="en">Weather forecast provided by Weather Unlocked</description>
<disclaimer lang="en"></disclaimer>
<language></language>
<platform>all</platform>
<forum></forum>
<source></source>
</extension>
</addon>
<addon id="plugin.video.gsn" name="Global Sportsman's Network" version="0.0.1" provider-name="MetalChris">
<requires>
<import addon="xbmc.python" version="2.1.0"/>
<import addon="script.module.beautifulsoup4" version="4.3.2"/>
<import addon="script.module.html5lib" version="0.999.0"/>
</requires>
<extension point="xbmc.python.pluginsource"
library="addon.py">
<provides>video</provides>
</extension>
<extension point="xbmc.addon.metadata">
<platform>all</platform>
<license>GPL 2.0 or Later</license>
<summary lang="en">Global Sportsman's Network</summary>
<description lang="en">Global Sportsman's Network is a place where the every day outdoorsman can go to watch videos, and read articles.</description>
<disclaimer lang="en"></disclaimer>
<broken>This website has gone offline.</broken>
</extension>
</addon>
<addon id="plugin.video.bigstar-movies" name="BigStar Movies & TV" version="2019.02.05" provider-name="MetalChris">
<requires>
<import addon="xbmc.python" version="2.20.0"/>
</requires>
<extension point="xbmc.python.pluginsource" library="addon.py">
<provides>video</provides>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en">Stream movies instantly! Choose from thousands of independent, foreign and award-winning feature films and TV shows.</summary>
<description lang="en">Stream movies instantly! Choose from thousands of independent, foreign and award-winning feature films and TV shows.</description>
<disclaimer lang="en"></disclaimer>
<language></language>
<platform>all</platform>
<license>GPL(v2) or Later</license>
<forum>https://forum.kodi.tv/showthread.php?tid=223279</forum>
<website>http://www.bigstar.tv/</website>
<email></email>
<broken>Website no longer exists.</broken>
<source>https://github.com/MetalChris/repository.metalchris/tree/master/plugin.video.bigstar-movies</source>
<news>Version 2019.02.05[CR] - Fix for pagination error[CR]Version 2019.02.02[CR] - Fix for website changes[CR] - Added option to choose stream quality</news>
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
<screenshot>resources/media/screenshot001.png</screenshot>
<screenshot>resources/media/screenshot002.png</screenshot>
<screenshot>resources/media/screenshot003.png</screenshot>
<screenshot>resources/media/screenshot004.png</screenshot>
</assets>
</extension>
</addon>
<addon id="plugin.video.docstorm" name="Documentary Storm" version="0.0.5" provider-name="MetalChris">
<requires>
<import addon="xbmc.python" version="2.1.0"/>
<import addon="plugin.video.youtube" version="3.1.0" />
<import addon="script.module.beautifulsoup4" version="4.3.2"/>
<import addon="script.module.html5lib" version="0.999.0"/>
</requires>
<extension point="xbmc.python.pluginsource" library="addon.py">
<provides>video</provides>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en">Watch free full-length documentary films</summary>
<description lang="en">Watch the best free full-length documentary films on the web. History documentaries, Science, Culture, Music... Explore and Enjoy!</description>
<disclaimer lang="en"></disclaimer>
<language></language>
<platform>all</platform>
<license></license>
<forum></forum>
<website></website>
<email></email>
<source></source>
</extension>
</addon>
<addon id="plugin.video.rsi-telegiornale" name="RSI - Telegiornale" version="0.0.2" provider-name="MetalChris">
<requires>
<import addon="xbmc.python" version="2.1.0"/>
<import addon="script.module.beautifulsoup4" version="4.3.2"/>
<import addon="script.module.requests" version="2.9.1"/>
<import addon="script.module.html5lib" version="0.999.0"/>
<import addon="script.module.simplejson" version="3.3.0"/>
</requires>
<extension point="xbmc.python.pluginsource" library="addon.py">
<provides>video</provides>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en">Watch newscasts and videos from RSI Telegiornale.</summary>
<summary lang="it">Guardare telegiornali e video da RSI Telegiornale.</summary>
<description lang="en">Watch newscasts and videos from RSI Telegiornale.</description>
<description lang="it">Guardare telegiornali e video da RSI Telegiornale.</description>
<disclaimer lang="en"></disclaimer>
<language></language>
<platform>all</platform>
<license>GPL(v2 or later)</license>
<forum></forum>
<website></website>
<email></email>
<source></source>
</extension>
</addon>
<addon id="plugin.video.nhl-rewind" name="NHL Rewind" version="0.2.7" provider-name="MetalChris">
<requires>
<import addon="xbmc.python" version="2.1.0"/>
<import addon="script.module.beautifulsoup4" version="4.3.2"/>
<import addon="script.module.html5lib" version="0.999.0"/>
<import addon="script.module.simplejson" version="3.3.0"/>
<import addon="script.module.requests" version="2.6.0"/>
</requires>
<extension point="xbmc.python.pluginsource"
library="addon.py">
<provides>video</provides>
</extension>
<extension point="xbmc.addon.metadata">
<platform>all</platform>
<license>GPL 2.0 or Later</license>
<summary lang="en">NHL Rewind</summary>
<description lang="en">Watch the latest videos from the NHL Network, NBC Sports, MSG Network, Fox Sports, SportsNet.ca, ESPN, and Comcast SportsNet.</description>
<disclaimer lang="en">No support at TVAddons. This addon is a project for entertainment purposes only. Not affiliated with, or endorsed by the NHL in any way shape or form.</disclaimer>
</extension>
</addon>
<addon id="plugin.video.reuters" name="Reuters TV" version="2018.12.08" provider-name="MetalChris">
<requires>
<import addon="xbmc.python" version="2.24.0"/>
<import addon="script.module.beautifulsoup4" version="4.3.2"/>
<import addon="script.module.html5lib" version="0.999.0"/>
<import addon="script.module.mechanize" version="0.2.6"/>
<import addon="script.module.simplejson" version="3.3.0"/>
<import addon="script.module.requests" version="2.9.1"/>
</requires>
<extension point="xbmc.python.pluginsource"
library="addon.py">
<provides>video</provides>
</extension>
<extension point="xbmc.addon.metadata">
<platform>all</platform>
<license>GPL 2.0 or Later</license>
<summary lang="en">Reuters TV: Live Breaking News, US, World, Business, Finance</summary>
<description lang="en">Keep up with the world’s events live and straight from the source with Reuters TV feeds from all over the world. From the International Space Station to St. Peter’s in Rome, we’re there.</description>
<disclaimer lang="en">For support go to my github. No support without a full, unedited debug log. No support at TVAddons or any other forum.</disclaimer>
<language>en</language>
<platform>all</platform>
<license>GPL(v2) or Later</license>
<forum></forum>
<website>http://www.reuters.com</website>
<email></email>
<source>https://raw.githubusercontent.com/MetalChris/repository.metalchris/master/plugin.video.reuters/addon.py</source>
<news>Version 2018.12.08[CR]- Fixes for website changes[CR]- Removed Categories[CR]- Added Featured stories[CR]- Version 0.0.3[CR]- Fixes for website changes[CR]Version 0.0.2[CR]- Fixes for website changes[CR]Version 0.0.1[CR]- Initial release[CR]</news>
<assets>
<icon>resources/media/icon.png</icon>
<fanart>resources/media/fanart.jpg</fanart>
<screenshot>resources/media/screenshot0312.png</screenshot>
<screenshot>resources/media/screenshot0322.png</screenshot>
<screenshot>resources/media/screenshot0352.png</screenshot>
<screenshot>resources/media/screenshot0332.png</screenshot>
<screenshot>resources/media/screenshot0362.png</screenshot>
<screenshot>resources/media/screenshot0372.png</screenshot>
<screenshot>resources/media/screenshot0382.png</screenshot>
</assets>
</extension>
</addon>
<addon id="plugin.video.nautilus" name="Nautilus Live" version="0.0.5" provider-name="MetalChris">
<requires>
<import addon="xbmc.python" version="2.1.0"/>
<import addon="script.module.beautifulsoup4" version="4.3.2"/>
<import addon="script.module.html5lib" version="0.999.0"/>
<import addon="script.module.requests" version="2.9.1"/>
<import addon="plugin.video.youtube" version="5.3.10" />
</requires>
<extension point="xbmc.python.pluginsource"
library="addon.py">
<provides>video image</provides>
</extension>
<extension point="xbmc.addon.metadata">
<platform>all</platform>
<license>GPL 2.0 or Later</license>
<summary lang="en">Explore the ocean LIVE</summary>
<description lang="en">Explore the ocean LIVE with Dr. Robert Ballard and the Corps of Exploration aboard E/V Nautilus.</description>
<disclaimer lang="en"></disclaimer>
</extension>
</addon>
<addon id="plugin.video.charlierose" name="Charlie Rose" version="0.0.3" provider-name="MetalChris">
<requires>
<import addon="xbmc.python" version="2.1.0"/>
<import addon="script.module.beautifulsoup4" version="4.3.2"/>
<import addon="script.module.requests" version="2.9.1"/>
<import addon="script.module.html5lib" version="0.999.0"/>
</requires>
<extension point="xbmc.python.pluginsource" library="addon.py">
<provides>video</provides>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en">Charlie Rose</summary>
<description lang="en">Watch videos from charlierose.com - Since 1991, “Charlie Rose” has engaged America’s best thinkers, writers, politicians, athletes, entertainers, business leaders, scientists and other newsmakers in one-on-one interviews and roundtable discussions.</description>
<disclaimer lang="en"></disclaimer>
<language></language>
<platform>all</platform>
<license></license>
<forum></forum>
<website></website>
<email></email>
<source></source>
</extension>
</addon>
<addon id="plugin.audio.buddha" name="Buddha Radio" version="1.0.4" provider-name="MetalChris">
<requires>
<import addon="xbmc.python" version="2.1.0"/>
</requires>
<extension point="xbmc.python.pluginsource" library="addon.py">
<provides>audio</provides>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en">Buddha Radio</summary>
<description lang="en">Buddha Radio has a very simple philosophy - to bring you the very best music that makes you feel good and feeds your soul. Buddha aims to add a touch of calm, positivity and optimism to our busy lives.</description>
<disclaimer lang="en"></disclaimer>
<language></language>
<platform>all</platform>
<license></license>
<forum></forum>
<website></website>
<email></email>
<source></source>
</extension>
</addon>
<addon id="plugin.video.lifechurch" name="Life.Church" version="0.0.4" provider-name="MetalChris">
<requires>
<import addon="xbmc.python" version="2.1.0"/>
<import addon="script.module.beautifulsoup4" version="4.3.2"/>
<import addon="script.module.simplejson" version="3.3.0"/>
</requires>
<extension point="xbmc.python.pluginsource" library="addon.py">
<provides>video</provides>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en">Watch a Message, do Church Online Live, get Involved. Our mission is to lead people to become fully devoted followers of Christ.</summary>
<description lang="en">Life.Church wants to make a lasting difference in your life, in our community, and in the world.
Watch a Message, do Church Online Live, get Involved. Our mission is to lead people to become fully devoted followers of Christ.</description>
<disclaimer lang="en"></disclaimer>
<language></language>
<platform>all</platform>
<license></license>
<forum></forum>
<website></website>
<email></email>
<source></source>
</extension>
</addon>
<addon id="plugin.video.cbc-sports" name="CBC Sports" version="0.0.2" provider-name="MetalChris">
<requires>
<import addon="xbmc.python" version="2.1.0"/>
<import addon="script.module.beautifulsoup4" version="4.3.2"/>
<import addon="script.module.html5lib" version="0.999.0"/>
<import addon="script.module.requests" version="2.9.1"/>
</requires>
<extension point="xbmc.python.pluginsource"
library="addon.py">
<provides>video</provides>
</extension>
<extension point="xbmc.addon.metadata">
<platform>all</platform>
<license>GPL 2.0 or Later</license>
<summary lang="en">Live Events, Replays, and Highlights from CBC Sports</summary>
<description lang="en">Get the latest headlines, opinion, and video from CBC Sports. Watch live events, replays, and highlights. Region blocked for Canada only.</description>
<disclaimer lang="en"></disclaimer>
</extension>
</addon>
<addon id="plugin.video.carbon-tv" name="CarbonTV" version="2019.04.29" provider-name="MetalChris">
<requires>
<import addon="xbmc.python" version="2.24.0"/>
<import addon="script.module.beautifulsoup4" version="4.3.2"/>
<import addon="script.module.html5lib" version="0.999.0"/>
<import addon="script.module.requests" version="2.9.1"/>
</requires>
<extension point="xbmc.python.pluginsource" library="addon.py">
<provides>video</provides>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en">CarbonTV</summary>
<description lang="en">Watch video clips and full episodes from CarbonTV, the premier online video destination for premium outdoor themed shows and engaging personalities.</description>
<disclaimer lang="en">For support go to my github. No support without a full, unedited debug log. No support at TVAddons or any other forum.</disclaimer>
<language>en</language>
<platform>all</platform>
<license>GPL(v2) or Later</license>
<forum>http://forum.kodi.tv/showthread.php?tid=267580</forum>
<website>http://www.carbontv.com</website>
<email></email>
<source>https://raw.githubusercontent.com/MetalChris/repository.metalchris/master/plugin.video.carbon-tv/addon.py</source>
<news>Version 2019.04.29[CR]- Fixes for website changes</news>
<assets>
<icon>resources/media/icon.png</icon>
<fanart>resources/media/fanart.jpg</fanart>
<screenshot>resources/media/screenshot011.png</screenshot>
<screenshot>resources/media/screenshot015.png</screenshot>
<screenshot>resources/media/screenshot016.png</screenshot>
<screenshot>resources/media/screenshot017.png</screenshot>
<screenshot>resources/media/screenshot019.png</screenshot>
<screenshot>resources/media/screenshot020.png</screenshot>
<screenshot>resources/media/screenshot021.png</screenshot>
</assets>
</extension>
</addon>
<addon id="plugin.video.fcc" name="Family Christian Center" version="0.0.2" provider-name="MetalChris">
<requires>
<import addon="xbmc.python" version="2.1.0"/>
<import addon="script.module.beautifulsoup4" version="4.3.2"/>
<import addon="script.module.requests" version="2.9.1"/>
<import addon="script.module.html5lib" version="0.999.0"/>
<import addon="script.module.simplejson" version="3.3.0"/>
</requires>
<extension point="xbmc.python.pluginsource" library="addon.py">
<provides>video</provides>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en">Watch live and archived services from Family Christian Center</summary>
<description lang="en">Family Christian Center exists to help people connect with a life-changing relationship with Jesus Christ, His purpose for their lives, and His church family and our community. </description>
<disclaimer lang="en"></disclaimer>
<language>English</language>
<platform>all</platform>
<license>GPL 2.0</license>
<forum></forum>
<website></website>
<email></email>
<source></source>
</extension>
</addon>
<addon id="plugin.video.cw" name="CW TV Network" version="2023.06.13+matrix.1" provider-name="MetalChris">
<requires>
<import addon="xbmc.python" version="3.0.0"/>
<import addon="script.module.mechanize" version="0.2.6"/>
</requires>
<extension point="xbmc.python.pluginsource" library="addon.py">
<provides>video</provides>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en">Watch full episodes and video clips from the CW and the CW Seed</summary>
<description lang="en">The CW Television Network is an American English language broadcast television network that is operated by The CW Network, LLC, a joint venture between CBS Corporation and Warner Bros. Entertainment. The "CW" name is an acronym derived from the first letters of the names of its two parent corporations (CBS and Warner Bros.).</description>
<disclaimer lang="en">No support at TVAddons</disclaimer>
<language></language>
<platform>all</platform>
<license>GPL(v2 or later)</license>
<forum></forum>
<website>https://www.cwtv.com/</website>
<email></email>
<source>https://github.com/MetalChris/repository.metalchris/tree/master/plugin.video.cw</source>
<news>Version 2023.06.13[CR] - Add thumbnails[CR]Version 2021.11.26[CR] - Python 3 Migration by QianyuLi[CR]Version 2019.02.16[CR] - Add ability to choose bitrate[CR]Version 2019.02.11[CR] - Updates to addon settings[CR]Version 0.0.3[CR] - Fixes for website changes 09/10/2018[CR]Version 0.0.2[CR] - Fixes for website changes 09/24/2017[CR]Version 0.0.1[CR] - Initial release.</news>
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
<screenshot>resources/media/screenshot001.png</screenshot>
<screenshot>resources/media/screenshot002.png</screenshot>
<screenshot>resources/media/screenshot003.png</screenshot>
<screenshot>resources/media/screenshot004.png</screenshot>
<screenshot>resources/media/screenshot005.png</screenshot>
</assets>
</extension>
</addon>
<addon id="plugin.video.rtsinfo" name="RTS - Info" version="0.1.1" provider-name="MetalChris">
<requires>
<import addon="xbmc.python" version="2.1.0"/>
<import addon="script.module.beautifulsoup4" version="4.3.2"/>
<import addon="script.module.requests" version="2.9.1"/>
<import addon="script.module.html5lib" version="0.999.0"/>
<import addon="script.module.simplejson" version="3.3.0"/>
</requires>
<extension point="xbmc.python.pluginsource" library="addon.py">
<provides>video</provides>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en">RTS - Info</summary>
<description lang="en">Watch live news and videos from RTS Info.</description>
<description lang="fr">Regarder les nouvelles en direct et des vidéos de RTS Info.</description>
<disclaimer lang="en"></disclaimer>
<language></language>
<platform>all</platform>
<license>GPL(v2 or later)</license>
<forum></forum>
<website></website>
<email></email>
<source></source>
</extension>
</addon>
<addon id="plugin.video.weathernation" name="WeatherNation TV" version="0.0.7" provider-name="MetalChris">
<requires>
<import addon="xbmc.python" version="2.1.0"/>
<import addon="script.module.beautifulsoup4" version="4.3.2"/>
<import addon="script.module.html5lib" version="0.999.0"/>
</requires>
<extension point="xbmc.python.pluginsource" library="addon.py">
<import addon="xbmc.python" version="2.1.0"/>
<provides>video</provides>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en">WeatherNation</summary>
<description lang="en">Delivers the latest in-depth local, regional and national weather video, forecasts, maps, radar, news, satellite maps and alerts on WeatherNation.</description>
<disclaimer lang="en"></disclaimer>
<language>English</language>
<platform>all</platform>
<license></license>
<forum></forum>
<website></website>
<email></email>
<source></source>
</extension>
</addon>
<addon id="plugin.video.sciencecasts" name="NASA ScienceCasts" version="0.0.2" provider-name="MetalChris">
<requires>
<import addon="xbmc.python" version="2.1.0"/>
<import addon="script.module.beautifulsoup4" version="4.3.2"/>
<import addon="script.module.html5lib" version="0.999.0"/>
</requires>
<extension point="xbmc.python.pluginsource" library="addon.py">
<provides>video</provides>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en">NASA ScienceCasts</summary>
<description lang="en">NASA Science news is too exciting for plain text. Educational "ScienceCast" videos are fun, lively, entertaining--and anything but plain. Join us for a new episode every week as we look into the science behind discoveries on Earth, the Solar System, and beyond...</description>
<disclaimer lang="en"></disclaimer>
<language></language>
<platform>all</platform>
<license></license>
<forum></forum>
<website></website>
<email></email>
<source></source>
</extension>
</addon>
<addon id="plugin.video.pbc" name="Premier Boxing Champions" version="0.0.1" provider-name="MetalChris">
<requires>
<import addon="xbmc.python" version="2.1.0"/>
<import addon="script.module.beautifulsoup4" version="4.3.2"/>
<import addon="script.module.simplejson" version="3.3.0"/>
<import addon="script.module.mechanize" version="0.2.6"/>
<import addon="script.module.html5lib" version="0.999.0"/>
</requires>
<extension point="xbmc.python.pluginsource" library="addon.py">
<provides>video</provides>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en">Get all the latest videos and fight replays from PBC</summary>
<description lang="en">Featuring today’s best and brightest stars in their toughest, most anticipated bouts, Premier Boxing Champions is broadcast live and free to air on NBC, NBC Sports Network, ESPN and ESPN Deportes, CBS, FOX Sports 1, FOX Deportes, Spike TV and Bounce TV.
PBC takes boxing back to its roots. This is boxing, pure and simple, where what’s brought to the fight, mentally and physically, is what determines who goes home the winner, and who just goes home.</description>
<disclaimer lang="en"></disclaimer>
<language></language>
<platform>all</platform>
<license></license>
<forum></forum>
<website></website>
<email></email>
<source></source>
</extension>
</addon>
<addon id="plugin.audio.internetarchive" name="Internet Archive [Audio]" version="3.1.1" provider-name="MetalChris">
<requires>
<import addon="xbmc.python" version="2.1.0"/>
<import addon="script.module.beautifulsoup4" version="4.2.0"/>
</requires>
<extension point="xbmc.python.pluginsource" library="addon.py">
<provides>audio</provides>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en">Internet Archive</summary>
<description lang="en">Internet Archive is a non-profit digital library. Choose from thousands of recordings ranging from alternative news programming, to Grateful Dead concerts, to Old Time Radio shows, to book and poetry readings, to original music uploaded by our users.</description>
<disclaimer lang="en"></disclaimer>
<language></language>
<platform>all</platform>
<license></license>
<forum></forum>
<website></website>
<email></email>
<source></source>
</extension>
</addon>
<addon id="plugin.video.edge" name="Edge.org" version="0.0.9" provider-name="MetalChris">
<requires>
<import addon="xbmc.python" version="2.1.0"/>
<import addon="script.module.beautifulsoup4" version="4.3.2"/>
<import addon="script.module.requests" version="2.9.1"/>
<import addon="script.module.html5lib" version="0.999.0"/>
</requires>
<extension point="xbmc.python.pluginsource" library="addon.py">
<provides>video</provides>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en">Edge.org</summary>
<description lang="en">To arrive at the edge of the world's knowledge, seek out the most complex and sophisticated minds, put them in a room together, and have them ask each other the questions they are asking themselves.</description>
<disclaimer lang="en"></disclaimer>
<language></language>
<platform>all</platform>
<license></license>
<forum></forum>
<website></website>
<email></email>
<source></source>
</extension>
</addon>
<addon id="plugin.video.caa" name="CAA TV" version="2017.11.12" provider-name="MetalChris">
<requires>
<import addon="xbmc.python" version="2.20.0"/>