-
Notifications
You must be signed in to change notification settings - Fork 148
/
Copy pathmodules.json
8549 lines (8549 loc) · 327 KB
/
modules.json
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
[
{
"longname": "mmpm",
"id": "Bee-Mar/mmpm",
"url": "https://github.com/Bee-Mar/mmpm",
"author": "Bee-Mar",
"desc": "An unofficial MagicMirror² 3rd Party Package Manager. Automates searching, installation, removal, updating, and upgrading of MagicMirror² modules."
},
{
"longname": "MMM-Template",
"id": "Dennis-Rosenbaum/MMM-Template",
"url": "https://github.com/Dennis-Rosenbaum/MMM-Template",
"author": "Dennis-Rosenbaum",
"desc": "A template for creating new MagicMirror² modules."
},
{
"longname": "MMM-AlertExt",
"id": "MMRIZE/MMM-AlertExt",
"url": "https://github.com/MMRIZE/MMM-AlertExt",
"author": "MMRIZE",
"desc": "Alternative programmable alert/notification presenter."
},
{
"longname": "MMM-AutoDimmer",
"id": "Fifteen15Studios/MMM-AutoDimmer",
"url": "https://github.com/Fifteen15Studios/MMM-AutoDimmer",
"author": "Fifteen15Studios",
"desc": "Set 1 or more schedules to dim and brighten your screen at specific times."
},
{
"longname": "MMM-Bash",
"id": "mathew-fleisch/MMM-Bash",
"url": "https://github.com/mathew-fleisch/MMM-Bash",
"author": "draxiom",
"desc": "A simple module to run a bash/terminal command on a loop, displaying stdout/stderr to screen."
},
{
"longname": "MMM-BurnIn",
"id": "werthdavid/MMM-BurnIn",
"url": "https://github.com/werthdavid/MMM-BurnIn",
"author": "werthdavid",
"desc": "Flicker the whole screen to prevent a burn-in effect on your display."
},
{
"longname": "MMM-Button",
"id": "ptrbld/MMM-Button",
"url": "https://github.com/ptrbld/MMM-Button",
"author": "PtrBld",
"desc": "Use a button to hide or show different modules via a broadcast message."
},
{
"longname": "MMM-Buttons",
"id": "MarcLandis/MMM-Buttons",
"url": "https://github.com/MarcLandis/MMM-Buttons",
"author": "MarcLandis",
"desc": "Allows you to enhance your setup by integrating physical buttons via GPIO. This module supports multiple buttons, each of which can be individually configured to perform different actions based on short or long presses. With configurable notifications and versatile functionality, MMM-Buttons provides a powerful way to interact with your MagicMirror²."
},
{
"longname": "MMM-Carousel",
"id": "shbatm/MMM-Carousel",
"url": "https://github.com/shbatm/MMM-Carousel",
"author": "shbatm",
"desc": "Rotate modules, to save space on screen."
},
{
"longname": "MMM-connection-status",
"id": "sheyabernstein/MMM-connection-status",
"url": "https://github.com/sheyabernstein/MMM-connection-status",
"author": "SheyaBernstein",
"desc": "Display internet connection status."
},
{
"longname": "cookiecutter-magic-mirror-module",
"id": "xadamxk/cookiecutter-magic-mirror-module",
"url": "https://github.com/xadamxk/cookiecutter-magic-mirror-module",
"author": "xadamxk",
"desc": "CookieCutter template for generating MagicMirror² modules."
},
{
"longname": "MMM-CustomElementTime",
"id": "MMRIZE/MMM-CustomElementTime",
"url": "https://github.com/MMRIZE/MMM-CustomElementTime",
"author": "MMRIZE",
"desc": "Custom element `mm-time` launcher."
},
{
"longname": "MMM-Dynamic-Modules",
"id": "Toreke/MMM-Dynamic-Modules",
"url": "https://github.com/Toreke/MMM-Dynamic-Modules",
"author": "Toreke",
"desc": "Change positions of modules."
},
{
"longname": "MMM-FF-code-injector",
"id": "shin10/MMM-FF-code-injector",
"url": "https://github.com/shin10/MMM-FF-code-injector",
"author": "shin10",
"desc": "Multi purpose module to inject code and mess around with your mirror without developing a complete new module."
},
{
"longname": "MMM-Flick-Gestures",
"id": "jancalve/MMM-flick-gestures",
"url": "https://github.com/jancalve/MMM-flick-gestures",
"author": "jancalve",
"desc": "Detecting 3D gesture with GestIC Sensor (MGC3130)."
},
{
"longname": "MMM-Forum",
"id": "KristjanESPERANTO/MMM-Forum",
"url": "https://github.com/KristjanESPERANTO/MMM-Forum",
"author": "KristjanESPERANTO",
"desc": "Displays information from the MagicMirror² forum. Like latest posts, unread posts, etc. The module should also work for other NodeBB forums, but it is not tested."
},
{
"longname": "MMM-Gestures",
"id": "thobach/MMM-Gestures",
"url": "https://github.com/thobach/MMM-Gestures",
"author": "thobach",
"desc": "Allows gesture control of compliments (only show when stepping in front of mirror), newsfeed (wave left / right, up for full-screen) and pages with two types of infrared sensors. Gestures can be up, down, left, right, far and close movements of the hand in front of a gesture sensor (APDS-9960) and present and away gestures in front of an IR distance sensor (GP2Y0A21YK)."
},
{
"longname": "MMM-Gitlab-MergeRequests",
"id": "jkschoen/MMM-Gitlab-MergeRequests",
"url": "https://github.com/jkschoen/MMM-Gitlab-MergeRequests",
"author": "jkschoen",
"desc": "Displays merge requests from gitlab and their status."
},
{
"longname": "MMM-GitHub-Monitor",
"id": "fpfuetsch/MMM-GitHub-Monitor",
"url": "https://github.com/fpfuetsch/MMM-GitHub-Monitor",
"author": "fpfuetsch",
"desc": "Displays GitHub repository information."
},
{
"longname": "MMM-GitHub-Notifications",
"id": "ByteExceptionM/MMM-GitHub-Notifications",
"url": "https://github.com/ByteExceptionM/MMM-GitHub-Notifications",
"author": "ByteException_",
"desc": "Displays clickable GitHub notifications."
},
{
"longname": "MMM-Glassy",
"id": "bugsounet/MMM-Glassy",
"url": "https://github.com/bugsounet/MMM-Glassy",
"author": "bugsounet",
"desc": "This module allows to add a glass effect to MagicMirror² modules."
},
{
"longname": "MMM-GPIO-HANDLER",
"id": "Sjohn21/MMM-GPIO-HANDLER",
"url": "https://github.com/Sjohn21/MMM-GPIO-HANDLER",
"author": "Sjohn21",
"desc": "Handle GPIO, Inputs (Buttons, PIR, Other) and Outputs (including PWM), with notifications from and to other modules."
},
{
"longname": "MMM-GroveGestures",
"id": "MMRIZE/MMM-GroveGestures",
"url": "https://github.com/MMRIZE/MMM-GroveGestures",
"author": "MMRIZE",
"desc": "Detecting 3D gesture with GroveGesture Sensor(PAJ7620u2)."
},
{
"longname": "MMM-HTMLSnippet",
"id": "ulrichwisser/MMM-HTMLSnippet",
"url": "https://github.com/ulrichwisser/MMM-HTMLSnippet",
"author": "ulrichwisser",
"desc": "Include arbitrary HTML snippets in an iframe (script tags work)."
},
{
"longname": "MMM-JokeAPI",
"id": "Kreshnik/MMM-JokeAPI",
"url": "https://github.com/Kreshnik/MMM-JokeAPI",
"author": "Kreshnik",
"desc": "Show jokes from the JokeAPI."
},
{
"longname": "MMM-LogExt",
"id": "MMRIZE/MMM-LogExt",
"url": "https://github.com/MMRIZE/MMM-LogExt",
"author": "MMRIZE",
"desc": "Deliver the logs from Frontend to Backend and more features."
},
{
"longname": "MMM-Logging",
"id": "shbatm/MMM-Logging",
"url": "https://github.com/shbatm/MMM-Logging",
"author": "shbatm",
"desc": "More details and customization for MM's Node.js console logs."
},
{
"longname": "MMM-MagicMover",
"id": "Lavve/MMM-MagicMover",
"url": "https://github.com/Lavve/MMM-MagicMover",
"author": "Lavve",
"desc": "Prevent screen burn-in on your MagicMirror²."
},
{
"longname": "MMM-Markdown",
"id": "wmawhinney1990/MMM-Markdown",
"url": "https://github.com/wmawhinney1990/MMM-Markdown",
"author": "wmawhinney1990",
"desc": "Render markdown files on your MagicMirror²."
},
{
"longname": "MMM-ModuleMonkeyPatch",
"id": "MMRIZE/MMM-ModuleMonkeyPatch",
"url": "https://github.com/MMRIZE/MMM-ModuleMonkeyPatch",
"author": "MMRIZE",
"desc": "On running-time monkey patch for other module."
},
{
"longname": "MMM-ModuleScheduler",
"id": "ianperrin/MMM-ModuleScheduler",
"url": "https://github.com/ianperrin/MMM-ModuleScheduler",
"author": "ianperrin",
"desc": "Create schedules to control when other modules are shown, hidden or dimmed and to send notifications to other modules."
},
{
"longname": "MMM-ModuleToggleButton",
"id": "balassy/MMM-ModuleToggleButton",
"url": "https://github.com/balassy/MMM-ModuleToggleButton",
"author": "balassy",
"desc": "Shows or hides other modules when a momentary push button is pressed. Useful for development and maintenance after the module is deployed."
},
{
"longname": "MMM-Navigate",
"id": "Ax-LED/MMM-Navigate",
"url": "https://github.com/Ax-LED/MMM-Navigate",
"author": "AxLED",
"desc": "Connect a rotary encoder to MagicMirror² and use it for navigation inside of MagicMirror²."
},
{
"longname": "MMM-NetworkConnection",
"id": "slametps/MMM-NetworkConnection",
"url": "https://github.com/slametps/MMM-NetworkConnection",
"author": "Slamet PS",
"desc": "Display network connection status (ping, download speed, upload speed)."
},
{
"longname": "MMM-network-signal",
"id": "PoOwAa/MMM-network-signal",
"url": "https://github.com/PoOwAa/MMM-network-signal",
"author": "PoOwAa",
"desc": "Display a solid wifi logo as network signal based on ping speed."
},
{
"longname": "MMM-NotificationTrigger",
"id": "MMRIZE/MMM-NotificationTrigger",
"url": "https://github.com/MMRIZE/MMM-NotificationTrigger",
"author": "MMRIZE",
"desc": "MMM-NotificationTrigger is a simple notification relay which can convert notifications from TRIGGER_NOTIFICATION to FIRE_NOTIFICATION."
},
{
"longname": "MMM-OnScreenMenu",
"id": "shbatm/MMM-OnScreenMenu",
"url": "https://github.com/shbatm/MMM-OnScreenMenu",
"author": "shbatm",
"desc": "Simple On-Screen Menu for controlling the MagicMirror²."
},
{
"longname": "MMM-pages",
"id": "sdetweil/MMM-pages",
"url": "https://github.com/sdetweil/MMM-pages",
"author": "sdetweil",
"desc": "Rotate out pages of modules."
},
{
"longname": "MMM-Pages-Screencast",
"id": "jboucly/MMM-Pages-Screencast",
"url": "https://github.com/jboucly/MMM-Pages-Screencast",
"author": "jboucly",
"desc": "Interface module between [MMM-pages](https://github.com/edward-shen/MMM-pages) and [MMM-Screencast](https://github.com/kevinatown/MMM-Screencast). Module to automatically change page when a video is cast on the MagicMirror²."
},
{
"longname": "MMM-page-indicator",
"id": "edward-shen/MMM-page-indicator",
"url": "https://github.com/edward-shen/MMM-page-indicator",
"author": "edward-shen",
"desc": "A helper module to display what page you're on. Intended to be used with other modules that rotate out modules."
},
{
"longname": "MMM-Page-Pusher",
"id": "zerosamski/MMM-Page-Pusher",
"url": "https://github.com/zerosamski/MMM-Page-Pusher",
"author": "zerosamski",
"desc": "Use 2 HCSR04 sensors to enable switching between pages by making a push gesture."
},
{
"longname": "MMM-Page-Selector",
"id": "Veldrovive/MMM-Page-Selector",
"url": "https://github.com/Veldrovive/MMM-Page-Selector",
"author": "Veldrovive",
"desc": "Configure location and visibity of modules on defined pages."
},
{
"longname": "MMM-PersonalConfig-Template",
"id": "CFenner/MMM-PersonalConfig-Template",
"url": "https://github.com/CFenner/MMM-PersonalConfig-Template",
"author": "CFenner",
"desc": "Module to version your personal config in a separate repository."
},
{
"longname": "MMM-PhoneDetect",
"id": "PierreGode/MMM-PhoneDetect",
"url": "https://github.com/PierreGode/MMM-PhoneDetect",
"author": "Pierre Gode",
"desc": "Automatically controls the screen's power based on the presence of specified phones or devices within the network."
},
{
"longname": "MMM-ProfileSwitcher",
"id": "tosti007/MMM-ProfileSwitcher",
"url": "https://github.com/tosti007/MMM-ProfileSwitcher",
"author": "toasti007",
"desc": "This Module adds the ability to have different layouts for different profiles."
},
{
"longname": "MMM-ProfileControl",
"id": "Tom-Hirschberger/MMM-ProfileControl",
"url": "https://github.com/Tom-Hirschberger/MMM-ProfileControl",
"author": "Tom-Hirschberger",
"desc": "Indicator module for MMM-ProfileSwitcher."
},
{
"longname": "MMM-ProxyImage",
"id": "daxiang28/MMM-ProxyImage",
"url": "https://github.com/daxiang28/MMM-ProxyImage",
"author": "daxiang28",
"desc": "Display basic auth images through a simple Express proxy."
},
{
"longname": "MMM-RaiderIO",
"id": "jwcnewton/MMM-RaiderIO",
"url": "https://github.com/jwcnewton/MMM-RaiderIO",
"author": "jwcnewton",
"desc": "Display Raider IO score for multiple characters over any realms or regions."
},
{
"longname": "MMM-RelativeTime-i18n",
"id": "buxxi/MMM-RelativeTime-i18n",
"url": "https://github.com/buxxi/MMM-RelativeTime-i18n",
"author": "buxxi",
"desc": "Customize all the relative times in the default module (and others) that depend on moment.js"
},
{
"longname": "MMM-Remote-Control-Repository",
"id": "MMRIZE/MMM-Remote-Control-Repository",
"url": "https://github.com/MMRIZE/MMM-Remote-Control-Repository",
"author": "MMRIZE",
"desc": "Plugin for `MMM-Remote-Control` to update installable modules automatically."
},
{
"longname": "MMM-Remote-Control",
"id": "Jopyth/MMM-Remote-Control",
"url": "https://github.com/Jopyth/MMM-Remote-Control",
"author": "Jopyth",
"desc": "Cleanly shutdown (or reboot) your mirror, edit which modules are shown on your mirror and turn your monitor off and on from a simple website, i.e. from your smartphone."
},
{
"longname": "MM-Remote",
"id": "Klettner/MM-Remote",
"url": "https://github.com/Klettner/MM-Remote",
"author": "Klettner",
"desc": "Android 📱 and Windows-desktop 💻 app to control your MagicMirror² remotely. (Shutdown, reboot, toggle monitor on/off, change brightness of monitor, custom-commands, etc.)."
},
{
"longname": "MMM-Scenes2",
"id": "MMRIZE/MMM-Scenes2",
"url": "https://github.com/MMRIZE/MMM-Scenes2",
"author": "MMRIZE",
"desc": "Change screen scenes by time and order with animation effect. Successor of MMM-Scenes since MM 2.25 (AnimateCSS is introduced)."
},
{
"longname": "MMM-SendNotificationButton",
"id": "ralberth/MMM-SendNotificationButton",
"url": "https://github.com/ralberth/MMM-SendNotificationButton",
"author": "ralberth",
"desc": "Web form to send arbitrary messages via `this.sendNotification()`."
},
{
"longname": "MMM-SmartTouch",
"id": "EbenKouao/MMM-SmartTouch",
"url": "https://github.com/EbenKouao/MMM-SmartTouch",
"author": "EbenKouao",
"desc": "This module allows you to transform your MagicMirror² into a touchscreen interactive experience. This includes hiding all modules (Standby Mode) and Side Menu Option to shutdown your mirror via MagicMirror² UI."
},
{
"longname": "MMM-SocketClientController",
"id": "totoluto/MMM-SocketClientController",
"url": "https://github.com/totoluto/MMM-SocketClientController",
"author": "totoluto",
"desc": "This module allows you to control your MagicMirror² via an external API. It listens to the socket events which are deployed by your socket server."
},
{
"longname": "MMM-Tabulator",
"id": "E3V3A/MMM-Tabulator",
"url": "https://github.com/E3V3A/MMM-Tabulator",
"author": "E:V:A",
"desc": "A Demo module for using [Tabulator](https://tabulator.info) to directly parse JSON/XML into MM DHTML tables."
},
{
"longname": "MMM-ViewNotifications",
"id": "glitch452/MMM-ViewNotifications",
"url": "https://github.com/glitch452/MMM-ViewNotifications",
"author": "glitch452",
"desc": "Display a list of notifications that have been broadcast to all the modules."
},
{
"longname": "MMM-AVStock",
"id": "lavolp3/MMM-AVStock",
"url": "https://github.com/lavolp3/MMM-AVStock",
"author": "lavolp3",
"desc": "Display stock prices and charts using Yahoo Finance API."
},
{
"longname": "MMM-bitcoin",
"id": "valmassoi/MMM-bitcoin",
"url": "https://github.com/valmassoi/MMM-bitcoin",
"author": "valmassoi",
"desc": "Display bitcoin ticker price."
},
{
"longname": "MMM-bitcoin-portfolio",
"id": "jeroenpeters1986/MMM-bitcoin-portfolio",
"url": "https://github.com/jeroenpeters1986/MMM-bitcoin-portfolio",
"author": "jeroenpeters1986",
"desc": "Display bitcoin ticket price + worth of your own wallet/portfolio."
},
{
"longname": "MMM-Binance",
"id": "brssaricicek/MMM-Binance",
"url": "https://github.com/brssaricicek/MMM-Binance",
"author": "brssaricicek",
"desc": "Display cryptocurrency information from the Binance website."
},
{
"longname": "MMM-bunq",
"id": "choffmann/MMM-bunq",
"url": "https://github.com/choffmann/MMM-bunq",
"author": "choffmann",
"desc": "Display your bunq account balance."
},
{
"longname": "MMM-CoinGecko",
"id": "malako/MMM-CoinGecko",
"url": "https://github.com/malako/MMM-CoinGecko",
"author": "malako",
"desc": "Display cryptocurrency information from [CoinGecko](https://www.coingecko.com/). Ticker price, logos, 7d sparkline, holdings etc."
},
{
"longname": "MMM-CoinMarketCap",
"id": "glitch452/MMM-CoinMarketCap",
"url": "https://github.com/glitch452/MMM-CoinMarketCap",
"author": "glitch452",
"desc": "Display cryptocurrency information from the Coin Market Cap website. Ticker Price, Logos, Sparkline Graphs, etc."
},
{
"longname": "coinsquaremodule",
"id": "marcomerens/coinsquaremodule",
"url": "https://github.com/marcomerens/coinsquaremodule",
"author": "marcomerens",
"desc": "Displays cryptocurreency values and trends in different currencies based of COINSQUARE."
},
{
"longname": "MMM-cryptocurrency",
"id": "matteodanelli/MMM-cryptocurrency",
"url": "https://github.com/matteodanelli/MMM-cryptocurrency",
"author": "matteodanelli",
"desc": "Display cryptocurrencies ticker price, with graphs and changes over time."
},
{
"longname": "MMM-CryptoPortfolio",
"id": "DzMassi/MMM-CryptoPortfolio",
"url": "https://github.com/DzMassi/MMM-CryptoPortfolio",
"author": "DzMassi",
"desc": "Displays real-time performance and balance of your cryptocurrency portfolio."
},
{
"longname": "MMM-CurrencyArg",
"id": "consus2903/MMM-CurrencyArg",
"url": "https://github.com/consus2903/MMM-CurrencyArg",
"author": "consus2903",
"desc": "Display the dollar price in real time."
},
{
"longname": "MMM-ethereum",
"id": "hansman84/MMM-ethereum",
"url": "https://github.com/hansman84/MMM-ethereum",
"author": "hansman84",
"desc": "Display ethereum ticker."
},
{
"longname": "MMM-Ethermine",
"id": "AjaxCarroway/MMM-ethermine",
"url": "https://github.com/AjaxCarroway/MMM-ethermine",
"author": "AjaxCarroway",
"desc": "Displays Ethereum miner rig statistics for miners on the ethermine.org mining pool."
},
{
"longname": "MMM-EUElectricityPrice",
"id": "late4marshmellow/MMM-EUElectricityPrice",
"url": "https://github.com/late4marshmellow/MMM-EUElectricityPrice",
"author": "late4marshmellow",
"desc": "Display EU electricity prices from Nord Pool."
},
{
"longname": "MMM-FearAndGreedIndex",
"id": "Pip1405/MMM-FearAndGreedIndex",
"url": "https://github.com/Pip1405/MMM-FearAndGreedIndex",
"author": "Pip1405",
"desc": "Displays color-coded Fear & Greed Index Values from CNBC for Stocks and from Alternative.me for Crypto."
},
{
"longname": "MMM-Helium-Wallet",
"id": "hayseedbyte/MMM-Helium-Wallet",
"url": "https://github.com/hayseedbyte/MMM-Helium-Wallet",
"author": "hayseedbyte",
"desc": "Display your helium wallet balance and value (in your chosen currency)."
},
{
"longname": "MMM-Jast",
"id": "jalibu/MMM-Jast",
"url": "https://github.com/jalibu/MMM-Jast",
"author": "Jalibu",
"desc": "A simple but powerful vertical, horizontal or static stock ticker based on Yahoo's finance API. Supports international stocks, crypto currencies and index symbols. No API key required."
},
{
"longname": "MMM-MktIndex",
"id": "thess/MMM-MktIndex",
"url": "https://github.com/thess/MMM-MktIndex",
"author": "thess",
"desc": "Display market indicies using (free) Yahoo Finance API."
},
{
"longname": "MMM-NFTcollections",
"id": "TemianMihai/MMM-NFTcollections",
"url": "https://github.com/TemianMihai/MMM-NFTcollections",
"author": "TemianMihai",
"desc": "Display details about a NFT collection."
},
{
"longname": "MMM-Nordic-Electrical-Spot-Prices",
"id": "cSharpBastard/mmm-nordic-electrical-spot-prices",
"url": "https://github.com/cSharpBastard/mmm-nordic-electrical-spot-prices",
"author": "cSharpBastard",
"desc": "Display current electrical spot prices in northen Europe (also works in Germany)."
},
{
"longname": "MMM-PreciousMetals",
"id": "Fifteen15Studios/MMM-PreciousMetals",
"url": "https://github.com/Fifteen15Studios/MMM-PreciousMetals",
"author": "Fifteen15Studios",
"desc": "Displays prices of select precious metals and commodities, like gold and silver. Retrieves information from API provided by [api.metals.live](https://api.metals.live)."
},
{
"longname": "MMM-Questrade",
"id": "Daniel1145/MMM-Questrade",
"url": "https://github.com/Daniel1145/MMM-Questrade",
"author": "Daniel1145",
"desc": "Displays your Questrade positions."
},
{
"longname": "MMM-Sbanken",
"id": "reidarw/MMM-Sbanken",
"url": "https://github.com/reidarw/MMM-Sbanken",
"author": "reidarw",
"desc": "Displaying transactions and account balance from Sbanken (Norway)."
},
{
"longname": "MMM-SingleStock",
"id": "balassy/MMM-SingleStock",
"url": "https://github.com/balassy/MMM-SingleStock",
"author": "balassy",
"desc": "Displays the stock price of a single company without any fancy animation."
},
{
"longname": "MMM-Stock",
"id": "hakanmhmd/MMM-Stock",
"url": "https://github.com/hakanmhmd/MMM-Stock",
"author": "hakanmhmd",
"desc": "Displays current stock prices of companies using YAHOO FINANCE API."
},
{
"longname": "MMM-stocks",
"id": "elaniobro/mmm-stocks",
"url": "https://github.com/elaniobro/mmm-stocks",
"author": "elaniobro",
"desc": "Display a scrolling stocks ticker."
},
{
"longname": "mmm-uah-currency",
"id": "wzooff/mmm-uah-currency",
"url": "https://github.com/wzooff/mmm-uah-currency",
"author": "wzooff",
"desc": "Display UAH currency from bank.gov.ua."
},
{
"longname": "MMM-YNAB",
"id": "thesoftwarejedi/MMM-YNAB",
"url": "https://github.com/thesoftwarejedi/MMM-YNAB",
"author": "thesoftwarejedi",
"desc": "Displays categories of your choosing from your YNAB budget."
},
{
"longname": "MMM-air-raid-monitor-ua",
"id": "PavlenkoM/MMM-air-raid-monitor-ua",
"url": "https://github.com/PavlenkoM/MMM-air-raid-monitor-ua",
"author": "PavlenkoM",
"desc": "This module shows the current status of air raid sirens in Ukraine."
},
{
"longname": "MMM-anotherNewsFeed",
"id": "MMRIZE/MMM-anotherNewsFeed",
"url": "https://github.com/MMRIZE/MMM-anotherNewsFeed",
"author": "MMRIZE",
"desc": "Modified version of the default newsfeed module."
},
{
"longname": "MMM-CalendarTodayTomorrow",
"id": "qunu/MMM-CalendarTodayTomorrow",
"url": "https://github.com/qunu/MMM-CalendarTodayTomorrow",
"author": "Qunu",
"desc": "This calendar module functions the same as the default calendar app, but it only displays Today and Tomorrows events."
},
{
"longname": "MMM-CrisisInformationSweden",
"id": "Pejjo/MMM-CrisisInformationSweden",
"url": "https://github.com/Pejjo/MMM-CrisisInformationSweden",
"author": "Pejjo",
"desc": "News feed from the **Swedish** Government Crisis Information (krisinformation.se)."
},
{
"longname": "MMM-CyberSecurityNews",
"id": "gueguet/MMM-CyberSecurityNews",
"url": "https://github.com/gueguet/MMM-CyberSecurityNews",
"author": "gueguet",
"desc": "This module allows you to display the last news about Cyber Security."
},
{
"longname": "MMM-DailyStoic",
"id": "SmolinskiP/MMM-DailyStoic",
"url": "https://github.com/SmolinskiP/MMM-DailyStoic",
"author": "MrRoot",
"desc": "Your everyday stoic quote."
},
{
"longname": "MMM-DogBrew",
"id": "phpwun/MMM-Dogbrew",
"url": "https://github.com/phpwun/MMM-Dogbrew",
"author": "phpwun",
"desc": "Rewrite of MMM-Brewdog, using new API and more info."
},
{
"longname": "MMM-EarthquakeMonitor",
"id": "rcollie/MMM-EarthquakeMonitor",
"url": "https://github.com/rcollie/MMM-EarthquakeMonitor",
"author": "rcollie",
"desc": "This module allows you to display global earthquake data from the USGS."
},
{
"longname": "MMM-Ecosia-Tree-Counter",
"id": "rehne/MMM-Ecosia-Tree-Counter",
"url": "https://github.com/rehne/MMM-Ecosia-Tree-Counter",
"author": "rehne",
"desc": "Displays the tree counter from [Ecosia](https://ecosia.org)."
},
{
"longname": "MMM-Ecowatt",
"id": "tttooommm56/MMM-Ecowatt",
"url": "https://github.com/tttooommm56/MMM-Ecowatt",
"author": "tttooommm56",
"desc": "Graphical and textual informations from [Ecowatt](https://www.monecowatt.fr)."
},
{
"longname": "MMM-Ethos",
"id": "Helpi90/MMM-Ethos",
"url": "https://github.com/Helpi90/MMM-Ethos",
"author": "Helpi90",
"desc": "Displays the rig infos from [Ethos API](http://ethosdistro.com)."
},
{
"longname": "MMM-FlagRise",
"id": "ItsMeBrille/MMM-FlagRise",
"url": "https://github.com/ItsMeBrille/MMM-FlagRise",
"author": "ItsMeBrille",
"desc": "Raise an image of a flag according to national flag rules (Norwegian rules). Fetches sunrise and sunset times using [Steder-API](https://steder-api.no)."
},
{
"longname": "MMM-Flatastic",
"id": "joschi27/MMM-Flatastic",
"url": "https://github.com/joschi27/MMM-Flatastic",
"author": "joschi27",
"desc": "Displays information from the [flatastic](https://www.flatastic-app.com) commune management app."
},
{
"longname": "MMM-FranceInfo",
"id": "bugsounet/MMM-FranceInfo",
"url": "https://github.com/bugsounet/MMM-FranceInfo",
"author": "bugsounet",
"desc": "[FR] Affiche les flux rss de [franceinfo](https://www.francetvinfo.fr). <br />[EN] Displays rss feeds from franceinfo."
},
{
"longname": "MMM-FrenchHoroscope",
"id": "Amand-M/MMM-FrenchHoroscope",
"url": "https://github.com/Amand-M/MMM-FrenchHoroscope",
"author": "Amand-M",
"desc": "Show your horoscope of the day, the week or the month on your MagicMirror². Currently only in French."
},
{
"longname": "MMM-GoogleCalendar",
"id": "randomBrainstormer/MMM-GoogleCalendar",
"url": "https://github.com/randomBrainstormer/MMM-GoogleCalendar",
"author": "randomBrainstormer",
"desc": "Get your Google Calendars in the shape of MagicMirror's default calendar."
},
{
"longname": "MMM-HLTV",
"id": "Helpi90/MMM-HLTV",
"url": "https://github.com/Helpi90/MMM-HLTV",
"author": "Helpi90",
"desc": "Show CS:GO matches provided by HLTV."
},
{
"longname": "JIR-Tarifa-luz",
"id": "jirsis/JIR-tarifa-luz",
"url": "https://github.com/jirsis/JIR-tarifa-luz",
"author": "jirsis",
"desc": "This module shows the different ranges of electricity prices in Spain during the day."
},
{
"longname": "MMM-LesJoiesDuCode",
"id": "Tomadelostacos/MMM-LesJoiesDuCode",
"url": "https://github.com/Tomadelostacos/MMM-LesJoiesDuCode",
"author": "Tomadelostacos",
"desc": "Displays the last post from Les Joies Du Code, or TheCodingLove (The english version)."
},
{
"longname": "MMM-LeagueOfLegends",
"id": "JulianEgbert/MMM-LeagueOfLegends",
"url": "https://github.com/JulianEgbert/MMM-LeagueOfLegends",
"author": "Julian",
"desc": "Displays your rank in League Of Legends, as well as a match history of your recent games."
},
{
"longname": "MMM-LoadShedding",
"id": "qunu/MMM-LoadShedding",
"url": "https://github.com/qunu/MMM-LoadShedding",
"author": "Qunu",
"desc": "Display the expected power cut periods throughout the day."
},
{
"longname": "MMM-NewsAPI",
"id": "mumblebaj/MMM-NewsAPI",
"url": "https://github.com/mumblebaj/MMM-NewsAPI",
"author": "mumblebaj",
"desc": "Get news from [newsapi.org](https://newsapi.org)."
},
{
"longname": "MMM-NewsAPI",
"id": "totoluto/MMM-NewsAPI",
"url": "https://github.com/totoluto/MMM-NewsAPI",
"author": "totoluto",
"desc": "Get top headlines from [newsapi.org](https://newsapi.org)."
},
{
"longname": "MMM-News-QR",
"id": "nischi/MMM-News-QR",
"url": "https://github.com/nischi/MMM-News-QR",
"author": "Nischi",
"desc": "Add a QR Code with the link to the showing Newsfeed (Default Newsfeed Module)."
},
{
"longname": "MMM-NINA",
"id": "jalibu/MMM-NINA",
"url": "https://github.com/jalibu/MMM-NINA",
"author": "Jalibu",
"desc": "Client implementation for German NINA Warn API. Supports alerts of KatWarn, Biwapp and Mowas."
},
{
"longname": "MMM-NOKElectricityForecast",
"id": "AndreasHagman/MMM-NOKElectricityForecast",
"url": "https://github.com/AndreasHagman/MMM-NOKElectricityForecast",
"author": "Andreas Hagman",
"desc": "Norwegian electricity prices forecast."
},
{
"longname": "MMM-Oelpreise",
"id": "eckonator/MMM-Oelpreise",
"url": "https://github.com/eckonator/MMM-Oelpreise",
"author": "Eckonator",
"desc": "The module displays oil prices for the current year based on Chart.js and the API of heizoel24.de."
},
{
"longname": "MMM-OpeningHours",
"id": "Menturan/MMM-OpeningHours",
"url": "https://github.com/Menturan/MMM-OpeningHours",
"author": "Menturan",
"desc": "Display places opening hours."
},
{
"longname": "MMM-OnThisDay",
"id": "nkl-kst/MMM-OnThisDay",
"url": "https://github.com/nkl-kst/MMM-OnThisDay",
"author": "nkl-kst",
"desc": "Display historical events from Wikipedia based on the current date."
},
{
"longname": "MMM-OnThisDayWikiApi",
"id": "slugmuffin/MMM-OnThisDayWikiApi",
"url": "https://github.com/slugmuffin/MMM-OnThisDayWikiApi",
"author": "slugmuffin",
"desc": "Display historical events from Wikipedia based on the current date using the Wikimedia API. Can display as list or newsfeed style."
},
{
"longname": "MMM-PlaceInfo",
"id": "njwilliams/MMM-PlaceInfo",
"url": "https://github.com/njwilliams/MMM-PlaceInfo",
"author": "njwilliams",
"desc": "Displays brief information (flag, weather, exchange rate) about multiple locations at once."
},
{
"longname": "MMM-Pelletpreise",
"id": "eckonator/MMM-Pelletpreise",
"url": "https://github.com/eckonator/MMM-Pelletpreise",
"author": "Eckonator",
"desc": "The module displays pellet prices for the current year based on Chart.js and the API of heizpellets24.de."
},
{
"longname": "MMM-Reddit-News-Ticker",
"id": "hayseedbyte/MMM-Reddit-News-Ticker",
"url": "https://github.com/hayseedbyte/MMM-Reddit-News-Ticker",
"author": "hayseedbyte",
"desc": "Horizontal scrolling news ticker using reddit r/news titles to avoid clickbait."
},
{
"longname": "MMM-SRVMA",
"id": "cgillinger/MMM-SRVMA",
"url": "https://github.com/cgillinger/MMM-SRVMA",
"author": "cgillinger",
"desc": "Displays real-time Swedish VMA (Viktigt Meddelande till Allmänheten) alerts, including public safety notifications, weather warnings, and emergency updates. Supports Swedish (`sv-SE`) and English (`en-US`) localization."
},
{
"longname": "MMM-Russianwarship",
"id": "uncleLem/MMM-Russianwarship",
"url": "https://github.com/uncleLem/MMM-Russianwarship",
"author": "uncleLem",
"desc": "The total losses of the russian occupier since the full-scale invasion in Ukraine, per General Staff of the Armed Forces of Ukraine."
},
{
"longname": "MMM-WeeklySchedule",
"id": "pinsdorf/MMM-WeeklySchedule",
"url": "https://github.com/pinsdorf/MMM-WeeklySchedule",
"author": "pinsdorf",
"desc": "Display weekly recurring timetables such as class schedules."
},
{
"longname": "MMM-wiki",
"id": "mihairinzis/MMM-wiki",
"url": "https://github.com/mihairinzis/MMM-wiki",
"author": "mrinzis",
"desc": "Displays random Wikipedia snippets."
},
{
"longname": "MMM-Year-Progress",
"id": "ryck/MMM-Year-Progress",
"url": "https://github.com/ryck/MMM-Year-Progress",
"author": "ryck",
"desc": "Track the progress of the current year / month."
},
{
"longname": "MMM-AC-aseag",
"id": "j-hiller/MMM-AC-aseag",
"url": "https://github.com/j-hiller/MMM-AC-aseag",
"author": "j-hiller",
"desc": "Displays departures for ASEAG busses in Aachen, Germany."
},
{
"longname": "MMM-AtbSanntid",
"id": "Springvar/MMM-AtbSanntid",
"url": "https://github.com/Springvar/MMM-AtbSanntid",
"author": "Springvar",
"desc": "Unofficial module showing departure times from given stops for the public transport service in Trøndelag, Norway - AtB."
},
{
"longname": "MMM-AT-Bus",
"id": "Estanz0/MMM-AT-Bus",
"url": "https://github.com/Estanz0/MMM-AT-Bus",
"author": "Estanz0",
"desc": "Displays arrival time in minutes or scheduled arrival for a selected bus or stop in Auckland, NZ."
},
{
"longname": "MMM-Autobahn",
"id": "JockeyDoe/MMM-Autobahn",
"url": "https://github.com/JockeyDoe/MMM-Autobahn",
"author": "JockeyDoe",
"desc": "Traffic warnings for the German Autobahn."
},
{
"longname": "MMM-Avinor",
"id": "kagjerde/MMM-Avinor",
"url": "https://github.com/kagjerde/MMM-Avinor",
"author": "KAG",
"desc": "Avinor flight schedule for airports in Norway."
},
{
"longname": "MMM-BartTimes",
"id": "falafel2222/MMM-BartTimes",
"url": "https://github.com/falafel2222/MMM-BartTimes",
"author": "Alex Goldstein",
"desc": "Bay Area Rapid Transit (BART) departure times."
},
{
"longname": "MMM-BCFerries",
"id": "stonecrown/MMM-BCFerries",
"url": "https://github.com/stonecrown/MMM-BCFerries",
"author": "stonecrown",
"desc": "Displays the current info for scheduled sailings of specified BC Ferries route."
},
{
"longname": "MMM-BdxBus",
"id": "kuitin/MMM-BdxBus",
"url": "https://github.com/kuitin/MMM-BdxBus",
"author": "kuitin",
"desc": "Hour bus station of Bordeaux."
},
{
"longname": "MMM-Bensinpriser",
"id": "ItsMeBrille/MMM-Bensinpriser",
"url": "https://github.com/ItsMeBrille/MMM-Bensinpriser",
"author": "ItsMeBrille",
"desc": "Display current fuel prices at your nearest gas station in Norway."
},
{
"longname": "MMM-Bixi",
"id": "nictruong/MMM-Bixi",
"url": "https://github.com/nictruong/MMM-Bixi",
"author": "Nicolas Truong",
"desc": "Displays the number of available bikes and electric bikes on any Bixi stations in Montreal."
},
{
"longname": "MMM-Bluebikes",
"id": "jschless/MMM-Bluebikes",
"url": "https://github.com/jschless/MMM-Bluebikes",
"author": "jschless",
"desc": "Displays the number of available bikes at selected stations of the Boston public bike system (Bluebikes)."
},
{
"longname": "MMM-Bluelinky",
"id": "Cyw00d/MMM-Bluelinky",
"url": "https://github.com/Cyw00d/MMM-Bluelinky",
"author": "Cyw00d",
"desc": "Displays some of your Hyundai's data on your Mirror, the code is based on [MMM-Tesla2](https://github.com/martinburheimtingstad/MMM-Tesla2)."
},
{
"longname": "MMM-Bubi",
"id": "balassy/MMM-Bubi",
"url": "https://github.com/balassy/MMM-Bubi",
"author": "balassy",
"desc": "Displays the number of available bikes on the selected stations of the Budapest public bike system (aka MOL Bubi)."
},
{
"longname": "MMM-bustimes",
"id": "73cirdan/MMM-bustimes",
"url": "https://github.com/73cirdan/MMM-bustimes",
"author": "cirdan",
"desc": "Display Dutch bus and some other public transports for a targeted set of bus stops."
},
{
"longname": "MMM-Bysykkel",
"id": "JonasTriki/MMM-Bysykkel",
"url": "https://github.com/JonasTriki/MMM-Bysykkel",
"author": "JonasTriki",
"desc": "Display the availability of the city bikes around in Norway from A to B."
},
{
"longname": "MMM-Caltrain",
"id": "efritz09/MMM-Caltrain",
"url": "https://github.com/efritz09/MMM-Caltrain",
"author": "efritz09",
"desc": "Caltrain (San Francisco Bay Area) status monitoring."
},
{
"longname": "MMM-Caltrain",
"id": "zzhenney/MMM-Caltrain",
"url": "https://github.com/zzhenney/MMM-Caltrain",
"author": "Zac Henney",
"desc": "Display departure times or estimated time to departure for the selected Caltrain station."
},
{
"longname": "MMM-ClosestFlight",
"id": "rc7/MMM-ClosestFlight",
"url": "https://github.com/rc7/MMM-ClosestFlight",
"author": "RC7",
"desc": "Displays the closest aircraft's callsign and altitude using ADS-B data."
},
{
"longname": "MMM-CoupEscooters",
"id": "bogomips/MMM-CoupEscooters",
"url": "https://github.com/bogomips/MMM-CoupEscooters",
"author": "Bogomips",