-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugins.json
1352 lines (1352 loc) · 65.4 KB
/
plugins.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
{
"AOM": {
"sha256": "b66120cdcba19917b412c4baec96b1e4fc3ba8a39bae14269ec404e0b741defe",
"url": "https://plugins.matomo.org/api/2.0/plugins/AOM/download/0.3.7",
"version": "0.3.7",
"description": "Integrate additional data like costs and campaign names from advertising platforms like AdWords, Bing, Criteo, Facebook, Taboola as well as your indiv.",
"homepage": "http://www.advanced-online-marketing.com",
"license": "GPL v3+",
"displayName": "AOM"
},
"AdminNotification": {
"sha256": "6eec4856bd1b87cc4f208c7146d8c69cf53b2688b47b7b43d120bcf03cf54fc9",
"url": "https://plugins.matomo.org/api/2.0/plugins/AdminNotification/download/5.1.0",
"version": "5.1.0",
"description": "Adds the ability for Matomo (Piwik) administrators to include an informative message to all user's dashboards. This uses the built in Notification function.",
"homepage": "https://github.com/jbrule/piwikplugin-AdminNotification",
"license": "GPL v3+",
"displayName": "Admin Notification"
},
"Agent": {
"sha256": "353919a50c08ef22ebf26a154c083f4049c861833ac6a35941326324b8ade5f0",
"url": "https://plugins.matomo.org/api/2.0/plugins/Agent/download/0.0.1-alpha5",
"version": "0.0.1-alpha5",
"description": "A plugin to handle input from the Analytics Log Agent.",
"homepage": "https://digitalist.cloud",
"license": "GPL v3+",
"displayName": "Agent"
},
"AjaxOptOut": {
"sha256": "27b2b366649ee2c0fe5dd0f60dbd000af4d44ee30ddee77c5568284a620a3b66",
"url": "https://plugins.matomo.org/api/2.0/plugins/AjaxOptOut/download/1.5.0",
"version": "1.5.0",
"description": "Provide endpoints to opt-out, opt-in or get status of visitors tracking. So you can implement a custom HTML, CSS and JS to realize custom-style tracki.",
"homepage": "https://lw-scm.de/lipperts-web/piwik-ajax-opt-out",
"license": "GPL v3+",
"displayName": "Ajax Opt Out"
},
"AnonymousPiwikUsageMeasurement": {
"sha256": "6de5499a7e0d81ac41196a3616d738a7dbdc5c8c357b64b82d18b80aa48a9f88",
"url": "https://plugins.matomo.org/api/2.0/plugins/AnonymousPiwikUsageMeasurement/download/5.0.1",
"version": "5.0.1",
"description": "Send anonymized usage data to your own Matomo instance or to any other Matomo.",
"homepage": "https://matomo.org",
"license": "GPL v3+",
"displayName": "Anonymous Piwik Usage Measurement"
},
"ApiGetWithSitesInfo": {
"sha256": "f1a4d810ad86bc136edc99586b0f84da585cb842370018902130cfb1c0188d19",
"url": "https://plugins.matomo.org/api/2.0/plugins/ApiGetWithSitesInfo/download/0.1.2",
"version": "0.1.2",
"description": "Modifies the 'API.get' output to also list the website name and main website URL.",
"homepage": "https://github.com/mattab/piwik-plugin-ApiGetWithSitesInfo",
"license": "GPL v3+",
"displayName": "Api Get With Sites Info"
},
"AskYourDatabase": {
"sha256": "1bd9a58a5e910569c17f62dad07a4bb8183906cacaae5c243902f7da7d1766f2",
"url": "https://plugins.matomo.org/api/2.0/plugins/AskYourDatabase/download/5.0.7",
"version": "5.0.7",
"description": "Connect the AskYourDatabase service to Matomo.",
"homepage": "https://openmost.io/products/askyourdatabase/",
"license": "GPL v3+",
"displayName": "Ask Your Database"
},
"AuthorSegments": {
"sha256": "e34653d5b30d7f5dca10d982b06362d2d711fc7943aecabd944c719b770d98ef",
"url": "https://plugins.matomo.org/api/2.0/plugins/AuthorSegments/download/5.1.2",
"version": "5.1.2",
"description": "This plugin allows you to decide which users can create segments based on their permissions: view, write, super user, admin.",
"homepage": "https://github.com/kawerht/SegmentAuthorization",
"license": "GPL v3+",
"displayName": "Author Segments"
},
"AutoLogin": {
"sha256": "832cc39058aacc3bfe24d1985ebb0f2fb6ca5211ddaa820ddac7629cab7f4896",
"url": "https://plugins.matomo.org/api/2.0/plugins/AutoLogin/download/0.1.2",
"version": "0.1.2",
"description": "The Matomo AutoLogin Plugin adds new authentication and registration options by using incoming HTTP headers.",
"homepage": "https://github.com/inventage/matomo-autologin-plugin",
"license": "MIT",
"displayName": "Auto Login"
},
"Bandwidth": {
"sha256": "2710981d2952b1b755e330c3b9bd7d72045f8c12fe5ca75560fbb550a7ace6bd",
"url": "https://plugins.matomo.org/api/2.0/plugins/Bandwidth/download/5.0.2",
"version": "5.0.2",
"description": "Monitor Bandwidth for each page, download, and measure overall traffic in bytes. For requirements check out the description.",
"homepage": "https://matomo.org",
"license": "GPL v3+",
"displayName": "Bandwidth"
},
"Barometer": {
"sha256": "f39bd50f61402644c8c431a4f025cca87649d603e79493381b9e152d021ac331",
"url": "https://plugins.matomo.org/api/2.0/plugins/Barometer/download/0.6.0",
"version": "0.6.0",
"description": "Live Plugin that shows the current number of visitors on the page.",
"homepage": "http://github.com/halfdan/piwik-barometer-plugin",
"license": "GPL-3.0+",
"displayName": "Barometer"
},
"BeeLikedDBIP": {
"sha256": "ceb04e43b12c7e136e79e54c32ec7a8254c366b212c199ddfca2a6382a01dd5b",
"url": "https://plugins.matomo.org/api/2.0/plugins/BeeLikedDBIP/download/2.0.3",
"version": "2.0.3",
"description": "Use DB-IP geolocation API to lookup for accurate visitor location.",
"homepage": "http://beeliked.com/plugins/piwik/db-ip",
"license": "GPL-3.0+",
"displayName": "Bee Liked DBIP"
},
"BotTracker": {
"sha256": "0e96ae83e4dd6a3f7d2e8fdd6b01a507cc58375e1cf06546f303ed693f2ba30e",
"url": "https://plugins.matomo.org/api/2.0/plugins/BotTracker/download/5.2.18",
"version": "5.2.18",
"description": "Detection of bots & spiders and count their visits without tracking them in the visitor-log.",
"homepage": "https://github.com/Digitalist-Open-Cloud/Matomo-Plugin-BotTracker",
"license": "GPL v3+",
"displayName": "Bot Tracker"
},
"BraveDetector": {
"sha256": "ccaf89480bdcc1dcebb7ea8aebc34681d15277d8d59f8e9bdf5efc8fd5767c84",
"url": "https://plugins.matomo.org/api/2.0/plugins/BraveDetector/download/0.1.3",
"version": "0.1.3",
"description": "Simple plugin that adds the Brave User Agent to tracking requests when detected.",
"homepage": "",
"license": "GPL v3+",
"displayName": "Brave Detector"
},
"CampusGeoIP": {
"sha256": "d6c7de8cf12a81155a57d479ea281f1189bfdb09308ae5b3679c4679453a3e55",
"url": "https://plugins.matomo.org/api/2.0/plugins/CampusGeoIP/download/5.0.2",
"version": "5.0.2",
"description": "This location provider is designed to geolocate ips across a campus in an intranet type environment.",
"homepage": "https://github.com/jbrule/matomoplugin-CampusGeoIP",
"license": "GPL v3+",
"displayName": "Campus Geo IP"
},
"CaptchaHub": {
"sha256": "d48fc81cc3995276ecc76f6a80e1482b9e5d115a011495490c0d29d34782f340",
"url": "https://plugins.matomo.org/api/2.0/plugins/CaptchaHub/download/1.1.0",
"version": "1.1.0",
"description": "A Matomo plugin that adds captcha verification to the login form. Supports Google Recaptcha and Cloudflare Turnstile.",
"homepage": "https://github.com/theveloper-ir/matomo-plugin-CaptchaHub/",
"license": "GPL v3+",
"displayName": "Captcha Hub"
},
"Chat": {
"sha256": "29015a4d3d06da3d9a9a3d883a9feecb18691e30665b5f8ac4c3ba2bbe84d449",
"url": "https://plugins.matomo.org/api/2.0/plugins/Chat/download/0.3.2",
"version": "0.3.2",
"description": "Tested on 2.16.2. Adds to Matomo (Piwik) the ability to engage people on your website through Chat and automatic Push Messages.",
"homepage": "https://github.com/VincentLahaye/piwik-chat",
"license": "GPL v3+",
"displayName": "Chat"
},
"ChatGPT": {
"sha256": "7fe55612e8496109d53b79980bd5448ca885060df246b8d94454b7e94ec3245c",
"url": "https://plugins.matomo.org/api/2.0/plugins/ChatGPT/download/5.2.5",
"version": "5.2.5",
"description": "ChatGPT support for Matomo.",
"homepage": "https://openmost.io/products/chatgpt/",
"license": "GPL v3+",
"displayName": "Chat GPT"
},
"ClassicCounter": {
"sha256": "6222b528254cf2a656be3555ba6be7101df87f11d2afd60e23cf1716a342430f",
"url": "https://plugins.matomo.org/api/2.0/plugins/ClassicCounter/download/0.4.0",
"version": "0.4.0",
"description": "Embed a view counter in the style of classic CGI scripts into your website.",
"homepage": "https://lw1.at",
"license": "GPL v3+",
"displayName": "Classic Counter"
},
"ClickHeat": {
"sha256": "696423d6c86a46c36083eb116e48ba9878765ac3cced53adbfda2ae2967c26c0",
"url": "https://plugins.matomo.org/api/2.0/plugins/ClickHeat/download/0.1.9",
"version": "0.1.9",
"description": "ClickHeat is a visual heatmap of clicks on a HTML page. This plugin based on Dugwood's ClickHeat version 1.14. Plugin not consider IIS. Sorry.",
"homepage": "http://piwikjapan.org",
"license": "GPLv3 or later",
"displayName": "Click Heat"
},
"CodeInjector": {
"sha256": "be778191c5825b41f990266e0ecd8f919070c451f8e7a9c18aaf64467594be50",
"url": "https://plugins.matomo.org/api/2.0/plugins/CodeInjector/download/5.0.10",
"version": "5.0.10",
"description": "Inject CSS and JS code to your Matomo instance.",
"homepage": "https://openmost.io/products/code-injector/",
"license": "GPL v3+",
"displayName": "Code Injector"
},
"CrazyEggWidgetByAmperage": {
"sha256": "0066d2133537c7537514c1b7fd2c28ed668794b9b0199ed3d0693e7f05d75396",
"url": "https://plugins.matomo.org/api/2.0/plugins/CrazyEggWidgetByAmperage/download/5.0.1",
"version": "5.0.1",
"description": "Show Crazy Egg snapshots for the current site as a dashboard widget.",
"homepage": "https://www.amperagemarketing.com",
"license": "GPL v3+",
"displayName": "Crazy Egg Widget"
},
"CustomAlerts": {
"sha256": "6539a3ad9908971e508f5d393a37887537c662deeb1463a2dee7e1bf6aac12e9",
"url": "https://plugins.matomo.org/api/2.0/plugins/CustomAlerts/download/5.0.6",
"version": "5.0.6",
"description": "Create custom Alerts to be notified of important changes on your website or app!",
"homepage": "https://matomo.org",
"license": "GPL v3+",
"displayName": "Custom Alerts"
},
"CustomDimensions": {
"sha256": "51b8abf14638cc325f70e7b602e4a4eca083c7e00068cd6768935df071fa6f78",
"url": "https://plugins.matomo.org/api/2.0/plugins/CustomDimensions/download/0.1.5",
"version": "0.1.5",
"description": "Extend Matomo to your needs by defining and tracking Custom Dimensions in scope Action or Visit.",
"homepage": "https://matomo.org",
"license": "GPL v3+",
"displayName": "Custom Dimensions"
},
"CustomDimensionsManager": {
"sha256": "17e62b29246a6f5a7ea62c44c97c68e1fe0575f9fbbbdcf18f4348a32bada29e",
"url": "https://plugins.matomo.org/api/2.0/plugins/CustomDimensionsManager/download/0.1.2",
"version": "0.1.2",
"description": "Manage custom dimensions configuration. Console interface only.",
"homepage": "https://github.com/NatLibFi/CustomDimensionsManager",
"license": "GPL v3+",
"displayName": "Custom Dimensions Manager"
},
"CustomOptOut": {
"sha256": "c279bf838d6f6a0c6f549f755e280103265a2d061b625b9dd0c55c475fb6c061",
"url": "https://plugins.matomo.org/api/2.0/plugins/CustomOptOut/download/2.0.5",
"version": "2.0.5",
"description": "Create your own opt-out iframe css styles.",
"homepage": "https://www.zwei-entwickler.de",
"license": "GPL-3.0+",
"displayName": "Custom Opt Out"
},
"CustomTranslations": {
"sha256": "8659d16aad6f0364b26f2e9737f54c96d1baa4515903fd9e2eac391a6c3e0b86",
"url": "https://plugins.matomo.org/api/2.0/plugins/CustomTranslations/download/5.0.1",
"version": "5.0.1",
"description": "Translate entities and tracked values into different languages. For example Custom dimensions, dashboard names, custom report names, event values, ...",
"homepage": "https://innocraft.com",
"license": "GPL v3+",
"displayName": "Custom Translations"
},
"CustomVariables": {
"sha256": "b27774bf8c432eb02e8ff12c416b394d8c5cb1924862b431aa6997a6b23b57d8",
"url": "https://plugins.matomo.org/api/2.0/plugins/CustomVariables/download/5.0.4",
"version": "5.0.4",
"description": "Categorise your visitors and actions with custom name-value pairs. Segment by these values and get more insights to draw the right conclusions.",
"homepage": "https://matomo.org",
"license": "GPL v3+",
"displayName": "Custom Variables"
},
"CustomVariablesExtended": {
"sha256": "fdaada0e452f4798e7c706e0c73c471919fb6fdf2b4ad5576499e14a2a9ac75b",
"url": "https://plugins.matomo.org/api/2.0/plugins/CustomVariablesExtended/download/5.0.1",
"version": "5.0.1",
"description": "Provides 20 additional custom variables which do not need additional columns in the log tables (\"log_visit\", etc).",
"homepage": "https://github.com/MichaelRoosz/plugin-CustomVariablesExtended",
"license": "GPL v3+",
"displayName": "Custom Variables Extended"
},
"CustomiseTranslations": {
"sha256": "543d1f205e89fe34d1e1b8a909cf62c1588476521d9d32c0a47ccb169c978e62",
"url": "https://plugins.matomo.org/api/2.0/plugins/CustomiseTranslations/download/1.1.0",
"version": "1.1.0",
"description": "This plugin allows you to modify all translateable strings in Matomo.",
"homepage": "https://lw1.at",
"license": "GPL v3+",
"displayName": "Customise Translations"
},
"DataExport": {
"sha256": "ef74e9180a75aaa68581a0904a72a71d7d9b0b61adcbde1694eb7b887b9bf7af",
"url": "https://plugins.matomo.org/api/2.0/plugins/DataExport/download/1.1.9",
"version": "1.1.9",
"description": "Export database or connect to your BI tools.",
"homepage": "https://jorgeuos.com",
"license": "GPL v3+",
"displayName": "Data Export"
},
"DevelopmentToogle": {
"sha256": "0ba94f023db7bbb1a1e5cd76b4190c60bf3dbce0ca57140a192ecc1ec9624f8e",
"url": "https://plugins.matomo.org/api/2.0/plugins/DevelopmentToogle/download/0.3.0",
"version": "0.3.0",
"description": "Quickly enable and disable the development mode.",
"homepage": "https://lw1.at",
"license": "GPL v3+",
"displayName": "Development Toogle"
},
"DeviceDetectorCache": {
"sha256": "07edad7d9f30b194c140cb373da7a89510298d7159236c3830b21df06021ba54",
"url": "https://plugins.matomo.org/api/2.0/plugins/DeviceDetectorCache/download/5.0.3",
"version": "5.0.3",
"description": "Makes tracking faster by detecting many devices, operating systems, bots, and browsers from a cache.",
"homepage": "https://matomo.org",
"license": "GPL v3+",
"displayName": "Device Detector Cache"
},
"DeviceFeatureWebGL": {
"sha256": "d53a54cc0ec6e1ec23954f7ff605ba4707c1a2651b5eac8fd158c16de78c50e7",
"url": "https://plugins.matomo.org/api/2.0/plugins/DeviceFeatureWebGL/download/5.0.0",
"version": "5.0.0",
"description": "This plugin allows you to track browser compatibility for WebGL.",
"homepage": "http://github.com/sgiehl/piwik-plugin-DeviceFeatureWebGL",
"license": "GPL v3+",
"displayName": "Device Feature Web GL"
},
"DeviceNetworkInformation": {
"sha256": "abeec49e89f5da0483ce115233969e4d2798a3853a6ab0965ce2433d66f1a59c",
"url": "https://plugins.matomo.org/api/2.0/plugins/DeviceNetworkInformation/download/5.0.1",
"version": "5.0.1",
"description": "Detects network type on mobile devices where the browser supports it.",
"homepage": "https://github.com/MichaelRoosz/plugin-DeviceNetworkInformation",
"license": "GPL v3+",
"displayName": "Device Network Information"
},
"DevicePixelRatio": {
"sha256": "2670fdd25daa3c97647b6c857dc202370192684adc1f1d3adc8b23dfef96bdf2",
"url": "https://plugins.matomo.org/api/2.0/plugins/DevicePixelRatio/download/2.0.1",
"version": "2.0.1",
"description": "Collects statistics on the device pixel ratio of the visitor's devices. Useful to analyze how many visitors have Retina or other high DPI displays.",
"homepage": "",
"license": "GPL-3.0+",
"displayName": "Device Pixel Ratio"
},
"DiagnosticsExtended": {
"sha256": "cf5471bc2fb64adf4880b7ea92866676111fb90369edac4b3936445930c325d2",
"url": "https://plugins.matomo.org/api/2.0/plugins/DiagnosticsExtended/download/0.2.0",
"version": "0.2.0",
"description": "Additional checks for the System Check.",
"homepage": "https://lw1.at",
"license": "GPL v3+",
"displayName": "Diagnostics Extended"
},
"DisableTracking": {
"sha256": "8f8af8858d39f70d0cc846185e045bc64d5b7640894086ec6cb816fe760bb117",
"url": "https://plugins.matomo.org/api/2.0/plugins/DisableTracking/download/1.3.1",
"version": "1.3.1",
"description": "Disable tracking for specific sites without removing the tracking code or losing the data.",
"homepage": "https://lw-scm.de/lipperts-web/piwik-plugin-disabletracking",
"license": "GPL v3+",
"displayName": "Disable Tracking"
},
"DisableUrlDecoding": {
"sha256": "265cd91fc74223cc4f9f9177872121cdebd579b28b18cc378c78a9af0f309f5e",
"url": "https://plugins.matomo.org/api/2.0/plugins/DisableUrlDecoding/download/1.0.1",
"version": "1.0.1",
"description": "Disables URL-Decoding of current location and referer to avoid losing data in URL-encoded paths and parameters.",
"homepage": "https://github.com/Anisatum/matomo-plugin-DisableUrlDecoding/",
"license": "GPL-3.0+",
"displayName": "Disable Url Decoding"
},
"DynamicDeviceDetectorCache": {
"sha256": "3408deb4f6876942a2b690fb440287cc205a6dd2dce641b6cedb645a7c0d2b1b",
"url": "https://plugins.matomo.org/api/2.0/plugins/DynamicDeviceDetectorCache/download/1.0.4",
"version": "1.0.4",
"description": "Makes tracking faster by detecting many devices, operating systems, bots, and browsers from a cache.",
"homepage": "https://github.com/oliverbestmann/DynamicDeviceDetectorCache",
"license": "GPL v3+",
"displayName": "Dynamic Device Detector Cache"
},
"EmailReportExtended": {
"sha256": "3d5f5b345fe7eadf8ae39a76da2baaef32f266e189039d2a6805b3bd2d348863",
"url": "https://plugins.matomo.org/api/2.0/plugins/EmailReportExtended/download/5.0.0",
"version": "5.0.0",
"description": "A plugin which extends the number of rows to display within the email report.",
"homepage": "https://github.com/Chardonneaur/EmailReportExtended/",
"license": "GPL v3+",
"displayName": "Email Report Extended"
},
"Endpoint": {
"sha256": "6cee6aef8cdc0087c5fa70a820846528abace800a3f6278d28d3b0504cfdae4e",
"url": "https://plugins.matomo.org/api/2.0/plugins/Endpoint/download/0.1.6",
"version": "0.1.6",
"description": "It allows you to see easily the Matomo endpoint for the HTTP tracking API.",
"homepage": "https://github.com/Chardonneaur/endpoint",
"license": "GPL v3+",
"displayName": "Endpoint"
},
"EnvironmentVariables": {
"sha256": "752581ffb116a32d195f11855adc00db9df3c1f6deb4c97612fd5df7ce90923d",
"url": "https://plugins.matomo.org/api/2.0/plugins/EnvironmentVariables/download/5.0.3",
"version": "5.0.3",
"description": "Allows you to specify Matomo config in environment variables instead of the config file.",
"homepage": "https://matomo.org",
"license": "GPL v3+",
"displayName": "Environment Variables"
},
"ExcludeByDDNS": {
"sha256": "c97554d4f9ef34c506196845e08abc0c1bc4a65860404fe943842c98586a5cc1",
"url": "https://plugins.matomo.org/api/2.0/plugins/ExcludeByDDNS/download/5.0.0",
"version": "5.0.0",
"description": "This plugin allows you to dynamically exclude a IP using DDNS update.",
"homepage": "http://github.com/sgiehl/piwik-plugin-ExcludeByDDNS",
"license": "GPL v3+",
"displayName": "Exclude By DDNS"
},
"ExcludeCountries": {
"sha256": "c275e0222680c929c5fe7b35d7041c323b3c9a210ef6c15b5b943524b4046c5f",
"url": "https://plugins.matomo.org/api/2.0/plugins/ExcludeCountries/download/0.3.0",
"version": "0.3.0",
"description": "Exclude or include visitors from selected countries.",
"homepage": "https://lw1.at",
"license": "GPL v3+",
"displayName": "Exclude Countries"
},
"ExposureResearchTools": {
"sha256": "0c5096098aba2859d6df44402278e5603a38cfc376383f929cb64dfacd83df0d",
"url": "https://plugins.matomo.org/api/2.0/plugins/ExposureResearchTools/download/0.1.7",
"version": "0.1.7",
"description": "Download unique visits as CSV, and support for merging data with pre-/post surveys for selective exposure research (see Plugin Website for details).",
"homepage": "https://github.com/BurninLeo/ExposureResearchTools",
"license": "GPL v3+",
"displayName": "Exposure Research Tools"
},
"ExtraApiInformation": {
"sha256": "319bb78276fcb865e8932ce381926ce2848f1bede3428cdcd3b53def54827421",
"url": "https://plugins.matomo.org/api/2.0/plugins/ExtraApiInformation/download/0.1.3",
"version": "0.1.3",
"description": "Exposes some information via API that is not normally available.",
"homepage": "",
"license": "GPL v3+",
"displayName": "Extra Api Information"
},
"ExtraTools": {
"sha256": "c8b39cb755e1e634f588a1372e218241b70bb1f926d64d830a9b732f30ac2435",
"url": "https://plugins.matomo.org/api/2.0/plugins/ExtraTools/download/5.1.1",
"version": "5.1.1",
"description": "Adds automatic installation from the console, db backups etc.",
"homepage": "https://digitalist.cloud/matomo",
"license": "GPL v3+",
"displayName": "Extra Tools"
},
"FacebookPageWidgetByAmperage": {
"sha256": "dbf6a1e61a06273dad451305a820f02e4159dab2d59c46213bc72f6e5a3b1eed",
"url": "https://plugins.matomo.org/api/2.0/plugins/FacebookPageWidgetByAmperage/download/5.0.1",
"version": "5.0.1",
"description": "Show Facebook Page plugin as a configurable widget.",
"homepage": "https://www.amperagemarketing.com",
"license": "GPL v3+",
"displayName": "Facebook Page Widget"
},
"FeedPress": {
"sha256": "0be9ea1804c9358d89e948b5376b1669eb94d5249217d8433fb7c3f9c5960b6f",
"url": "https://plugins.matomo.org/api/2.0/plugins/FeedPress/download/1.0.2",
"version": "1.0.2",
"description": "Displays your FeedPress feed analytics.",
"homepage": "https://feedpress.it",
"license": "GPL v3+",
"displayName": "Feed Press"
},
"FlagCounter": {
"sha256": "e768b67ab61f72f9e1414b56f627ac661e00db0c16e988f4be2cfc820b7df6d4",
"url": "https://plugins.matomo.org/api/2.0/plugins/FlagCounter/download/5.0.0",
"version": "5.0.0",
"description": "This plugin allows you to include a simple statistic in your website showing the flags and hits of the countries your visitors came from.",
"homepage": "http://github.com/sgiehl/piwik-plugin-FlagCounter",
"license": "GPL v3+",
"displayName": "Flag Counter"
},
"ForceSSL": {
"sha256": "741ab630b47ddb15a579a643ac2e66f58ba4ccd3980de2084cc02527d9dd9b60",
"url": "https://plugins.matomo.org/api/2.0/plugins/ForceSSL/download/5.0.1",
"version": "5.0.1",
"description": "Automatically redirect all http requests to https. For security reasons it is recommended to always use Matomo Analytics over https (SSL).",
"homepage": "https://www.innocraft.com",
"license": "GPL v3+",
"displayName": "Force SSL"
},
"FreeMobileMessaging": {
"sha256": "ecc9a3eb7849e65e69d59e899c74fdc8f230e4d95e2ecaaab6d701fad0655bbb",
"url": "https://plugins.matomo.org/api/2.0/plugins/FreeMobileMessaging/download/1.0.1",
"version": "1.0.1",
"description": "Mobile Messaging Plugin: Free Mobile support.",
"homepage": "https://github.com/apapillon/piwik-freemobilesmsprovider-plugin",
"license": "GPL v3",
"displayName": "Free Mobile Messaging"
},
"GoalConversionExport": {
"sha256": "744bef33b260d004696594d22207fb59082b91102d899a5b9d5ebf1da855974e",
"url": "https://plugins.matomo.org/api/2.0/plugins/GoalConversionExport/download/0.1.0",
"version": "0.1.0",
"description": "Provide an exporter for Google Ads and Facebook Ads.",
"homepage": "",
"license": "GPL v3+",
"displayName": "Goal Conversion Export"
},
"GoogleAnalyticsImporter": {
"sha256": "fe44e1f3f39c3e82edb89d5e3214bcd0df8a36ee25d2daa31fa1c86d01cfe8ab",
"url": "https://plugins.matomo.org/api/2.0/plugins/GoogleAnalyticsImporter/download/5.1.1",
"version": "5.1.1",
"description": "Import reports from a Google Analytics account into Matomo.",
"homepage": "https://matomo.org",
"license": "GPL v3+",
"displayName": "Google Analytics Importer"
},
"GoogleAuthenticator": {
"sha256": "f0ff3c1c45c16851c3d9321850aea18675f6663417bcbfa691aad6b284aca7b3",
"url": "https://plugins.matomo.org/api/2.0/plugins/GoogleAuthenticator/download/0.1.0",
"version": "0.1.0",
"description": "Adds Google Authenticator Two Factor Auth to Matomo.",
"homepage": "https://github.com/sgiehl/piwik-plugin-GoogleAuthenticator",
"license": "BSD & GPL v3+",
"displayName": "Google Authenticator"
},
"GrabGravatar": {
"sha256": "1c1d85990215ccefe48acb4b5e9b21e0c9674c11045aba0cedc1c697df4c635a",
"url": "https://plugins.matomo.org/api/2.0/plugins/GrabGravatar/download/0.2.0",
"version": "0.2.0",
"description": "Adds a profile photo from Gravatar based on the email address stored in the User Id field.",
"homepage": "http://piwik.org",
"license": "GPL v3+",
"displayName": "Grab Gravatar"
},
"GroupPermissions": {
"sha256": "569bfeb5bbdecfd6c5c0fbac5c61ddc4fc9ae88187e1a58db49fb9c260ec4406",
"url": "https://plugins.matomo.org/api/2.0/plugins/GroupPermissions/download/5.1.1",
"version": "5.1.1",
"description": "Manage user permissions with groups.",
"homepage": "https://github.com/MichaelRoosz/plugin-GroupPermissions",
"license": "GPL v3+",
"displayName": "Group Permissions"
},
"HidePasswordReset": {
"sha256": "1045446a01771a782fe5b063c38924eb25ad13db3079f136d1f051001547e8d3",
"url": "https://plugins.matomo.org/api/2.0/plugins/HidePasswordReset/download/5.0.0",
"version": "5.0.0",
"description": "Hides the Lost your password? option on login form and allows to replace with a different message.",
"homepage": "https://github.com/jbrule/matomoplugin-HidePasswordReset",
"license": "GPL v3+",
"displayName": "Hide Password Reset"
},
"HooksViewer": {
"sha256": "21532486b387cc6deeeb72f575663ebcf9aa1f6d23f336360f8b57b3d25bafca",
"url": "https://plugins.matomo.org/api/2.0/plugins/HooksViewer/download/1.0.0",
"version": "1.0.0",
"description": "Easily visualize event hooks in Matomo. Never install in production !",
"homepage": "https://openmost.io/products/hooks-viewer/",
"license": "GPL v3+",
"displayName": "Hooks Viewer"
},
"IE11ReleaseChannel": {
"sha256": "0ceaccabf714c5d1f02ed4a4eb6c75c795a5e5f7785b807557aa8bb65c73989d",
"url": "https://plugins.matomo.org/api/2.0/plugins/IE11ReleaseChannel/download/4.0.1",
"version": "4.0.1",
"description": "Adds a new release channel that is still compatible with Internet Explorer 11.",
"homepage": "https://matomo.org",
"license": "GPL v3+",
"displayName": "Release Channel for IE 11"
},
"IP2Location": {
"sha256": "817c67bbee1b08ff99f870717deb9ee6b7e9ff6fe6ebed79602914891253bb47",
"url": "https://plugins.matomo.org/api/2.0/plugins/IP2Location/download/5.3.1",
"version": "5.3.1",
"description": "Use IP2Location geolocation database to lookup for accurate visitor location in Matomo.",
"homepage": "https://www.ip2location.com/developers/piwik",
"license": "GPL-3.0+",
"displayName": "IP 2 Location"
},
"IP2Proxy": {
"sha256": "dbda6160160b34559180b3adbf0fb74c635d798bfe3211326a1e0d19cd0dbb98",
"url": "https://plugins.matomo.org/api/2.0/plugins/IP2Proxy/download/5.1.2",
"version": "5.1.2",
"description": "Get the proxy details of visitors to your website.",
"homepage": "https://github.com/ip2location/ip2proxy-matomo",
"license": "GPL-3.0+",
"displayName": "IP2Proxy"
},
"IPReports": {
"sha256": "ed971fe2f7863196e588705a4c4eb8b483716367da4be7f126230f2804f05332",
"url": "https://plugins.matomo.org/api/2.0/plugins/IPReports/download/5.0.0",
"version": "5.0.0",
"description": "Adds new IP reports to Matomo.",
"homepage": "http://github.com/sgiehl/piwik-plugin-IPReports",
"license": "GPL v3+",
"displayName": "IPReports"
},
"IPtoCompany": {
"sha256": "b2d2821913514af41414c743741104db3acbdb2a63f8a649d4b3dc85ec9aae79",
"url": "https://plugins.matomo.org/api/2.0/plugins/IPtoCompany/download/1.2.2",
"version": "1.2.2",
"description": "Get the name of the companies that visit your website.",
"homepage": "https://github.com/Romain/Matomo-IP-to-Company",
"license": "GPL v3+",
"displayName": "IPtoCompany"
},
"IPv6Usage": {
"sha256": "0b379eaafd57e9690e891560fe858243e86877e8df7ba9c9568701b955047eb7",
"url": "https://plugins.matomo.org/api/2.0/plugins/IPv6Usage/download/0.8.1",
"version": "0.8.1",
"description": "Matomo (Piwik) Plugin to track whether visitors are using IPv4 or IPv6.",
"homepage": "http://github.com/halfdan/IPv6Usage",
"license": "GPL-3.0+",
"displayName": "IPv6 Usage"
},
"IceCastStatistics": {
"sha256": "",
"url": "https://plugins.matomo.org/api/2.0/plugins/IceCastStatistics/download/0.1.3",
"version": "0.1.3",
"description": "Live Plugin to show various informations about your IceCast Server.",
"homepage": "",
"license": "GPL v3+",
"displayName": "Ice Cast Statistics"
},
"ImportAnnotationWidget": {
"sha256": "7f5867c6759f9e7ca0a8632e39b473fe4a85637c7c723005bf358a8c1a5111bd",
"url": "https://plugins.matomo.org/api/2.0/plugins/ImportAnnotationWidget/download/0.1.2",
"version": "0.1.2",
"description": "A simple widget to import multiple annotations at once by using the Matomo UI.",
"homepage": "https://github.com/Chardonneaur/ImportAnnotationWidget/",
"license": "GPL v3+",
"displayName": "Import Annotation Widget"
},
"IndexationViewer": {
"sha256": "bca4781d52541152529fdd1c98a0c813cda58bfeb6c39b38fad9febd43cbb2e9",
"url": "https://plugins.matomo.org/api/2.0/plugins/IndexationViewer/download/0.1.1",
"version": "0.1.1",
"description": "Show indexation statuses in Matomo administration.",
"homepage": "https://developpement.ligeo.fr/",
"license": "GPL v3+",
"displayName": "Indexation Viewer"
},
"InstanceSetting": {
"sha256": "cd93b6538411e415862d6537550c6dd2384cc33ecdce1489c88c6f53ea9f4ec5",
"url": "https://plugins.matomo.org/api/2.0/plugins/InstanceSetting/download/0.1.0",
"version": "0.1.0",
"description": "If you use this Matomo instance over multiple hostnames, this plugin can easily set the instance_id for this instance.",
"homepage": "",
"license": "GPL v3+",
"displayName": "Instance Setting"
},
"IntranetGeoIP": {
"sha256": "903ec98d1966f8346b1adcc292175f043b86b3d9671a6c6d9b64be229bd70921",
"url": "https://plugins.matomo.org/api/2.0/plugins/IntranetGeoIP/download/2.2.0",
"version": "2.2.0",
"description": "Matomo (Piwik) plugin to locate all locale data of a user based on the IP address/subnetwork (country, region, city, latitude, longitude, provider, ...).",
"homepage": "https://github.com/ThaDafinser/Piwik-IntranetGeoIP",
"license": "GPL v3",
"displayName": "Intranet Geo IP"
},
"InvalidateReports": {
"sha256": "5b1093b76700b25042d3b9ea613f48a464e5a78d889dec4608f8d195505d90e1",
"url": "https://plugins.matomo.org/api/2.0/plugins/InvalidateReports/download/5.0.2",
"version": "5.0.2",
"description": "This plugin allows Super Users to invalidate historical reports in the UI in Administration > System > Invalidate reports.",
"homepage": "https://www.innocraft.com",
"license": "GPL v3+",
"displayName": "Invalidate Reports"
},
"Ip2Hostname": {
"sha256": "10dd010fd37cd2d9c1aac7a0eb9b95c95e55eca6198f1c36a2ce869f4b13ceb0",
"url": "https://plugins.matomo.org/api/2.0/plugins/Ip2Hostname/download/1.0.3",
"version": "1.0.3",
"description": "Matomo (Piwik) plugin to get the hostname from the visitor IP.",
"homepage": "https://github.com/ThaDafinser/Piwik-Ip2Hostname",
"license": "GPL v3",
"displayName": "IP 2 Hostname"
},
"JsTrackerCustom": {
"sha256": "5e58c73ad7132add5c284da20aeb13ee1890c2fb03904fef2b370dfeef2ad91c",
"url": "https://plugins.matomo.org/api/2.0/plugins/JsTrackerCustom/download/5.0.2",
"version": "5.0.2",
"description": "This plugin allows you to add custom JavaScript to Matomos tracking code.",
"homepage": "https://www.innocraft.com",
"license": "GPL v3+",
"displayName": "Js Tracker Custom"
},
"JsTrackerForceAsync": {
"sha256": "7bda0138405f7303590ae038268487df1ab0b15c8745fdd36d4afa790aab6b31",
"url": "https://plugins.matomo.org/api/2.0/plugins/JsTrackerForceAsync/download/5.0.1",
"version": "5.0.1",
"description": "Forces the JavaScript Tracker to always load asynchronous when embedding the Tracking Code via HTTP API automatically in your website.",
"homepage": "https://www.innocraft.com",
"license": "GPL v3+",
"displayName": "Js Tracker Force Async"
},
"KPIWidgets": {
"sha256": "ca15fc228996e42140b58bd3dad7abb0d6b1a06950901b1eab28581a050b818f",
"url": "https://plugins.matomo.org/api/2.0/plugins/KPIWidgets/download/5.0.4",
"version": "5.0.4",
"description": "Display KPIs on the dashboard for better readability.",
"homepage": "https://openmost.io/products/kpi-widgets/",
"license": "GPL v3+",
"displayName": "KPIWidgets"
},
"KafkaPush": {
"sha256": "766f6dfe214db961273497b6b23f7fca635a64dc25b5eb10a117a9d98db5fb99",
"url": "https://plugins.matomo.org/api/2.0/plugins/KafkaPush/download/0.1.0",
"version": "0.1.0",
"description": "Pushes Raw Data to Kafka using RdKafka Libray for further processing.",
"homepage": "",
"license": "MIT",
"displayName": "Kafka Push"
},
"LanguageToogle": {
"sha256": "50917c58a755bc63479c5d191b8c9cf7fd9f4308e537803702a710b5eb3a2753",
"url": "https://plugins.matomo.org/api/2.0/plugins/LanguageToogle/download/0.4.0",
"version": "0.4.0",
"description": "Quickly change the language of Matomo.",
"homepage": "https://lw1.at",
"license": "GPL v3+",
"displayName": "Language Toogle"
},
"LdapConnection": {
"sha256": "2d6f2ce6efb0a5ca1f6794500d84472b705dbc69a36a12e597e6533c95f19f9c",
"url": "https://plugins.matomo.org/api/2.0/plugins/LdapConnection/download/0.3.1",
"version": "0.3.1",
"description": "Plugin to make a LDAP connection, which can be used by various LDAP plugins.",
"homepage": "https://github.com/ThaDafinser/Piwik-LdapConnection",
"license": "GPL v3",
"displayName": "Ldap Connection"
},
"LdapConnectionPlesk": {
"sha256": "37b2b5a2aa5fa251409780c5b661b11aa20e456c0062daeec05153ea7edcd55d",
"url": "https://plugins.matomo.org/api/2.0/plugins/LdapConnectionPlesk/download/4.0.3",
"version": "4.0.3",
"description": "Plugin to make a LDAP connection, which can be used by various LDAP plugins.",
"homepage": "https://github.com/plesk/Piwik-LdapConnection",
"license": "GPL-3.0",
"displayName": "Ldap Connection Plesk"
},
"LdapVisitorInfo": {
"sha256": "f737d73f2a745407f3a01cf19707018665dc2d015a07917fd88df18357ac81ad",
"url": "https://plugins.matomo.org/api/2.0/plugins/LdapVisitorInfo/download/1.0.0",
"version": "1.0.0",
"description": "Matomo (Piwik) plugin to get visitor details (thumbnail, description) from LDAP.",
"homepage": "https://github.com/ThaDafinser/Piwik-LdapVisitorInfo",
"license": "GPL v3",
"displayName": "Ldap Visitor Info"
},
"LdapVisitorInfoPlesk": {
"sha256": "c7f6e0ec9af94b9b3c17c64bd610cb6107d45bd17308c37158530cd81d3b10fb",
"url": "https://plugins.matomo.org/api/2.0/plugins/LdapVisitorInfoPlesk/download/4.0.1",
"version": "4.0.1",
"description": "Matomo (Piwik) plugin to get visitor details (thumbnail, description) from LDAP.",
"homepage": "https://github.com/plesk/Piwik-LdapVisitorInfo",
"license": "GPL-3.0",
"displayName": "Ldap Visitor Info Plesk"
},
"LiveTab": {
"sha256": "9a21c2c462b9511f4430539cfaddd7425aaf59ba3b2f1d71a666c80d42d63619",
"url": "https://plugins.matomo.org/api/2.0/plugins/LiveTab/download/5.0.0",
"version": "5.0.0",
"description": "Keep an eye on the number of live visitors in the browser tab. It displays the number of visitors in the last 30 minutes in the browser tab.",
"homepage": "https://matomo.org",
"license": "GPL-3.0+",
"displayName": "Live Tab"
},
"LogViewer": {
"sha256": "ab4d157c6bfd7f9d0c11b55aef183d3e463f319d66aa840023ad715b2983e840",
"url": "https://plugins.matomo.org/api/2.0/plugins/LogViewer/download/5.0.2",
"version": "5.0.2",
"description": "View log messages logged by Matomo.",
"homepage": "https://matomo.org",
"license": "GPL v3+",
"displayName": "Log Viewer"
},
"LoginHttpAuth": {
"sha256": "7edca0863aff3c8ce4d7377f5a64045e9a839b0576e43b5e2fed287b4a403e02",
"url": "https://plugins.matomo.org/api/2.0/plugins/LoginHttpAuth/download/1.0.4",
"version": "1.0.4",
"description": "Sign in Matomo using HTTP Auth protocol instead of the standard Login mechanism.",
"homepage": "https://plugins.matomo.org/LoginHttpAuth",
"license": "GPL v3+",
"displayName": "Login Http Auth"
},
"LoginLdap": {
"sha256": "87fb04bb45b4b73d58cc3ad1e385ec3bcd733442b897c27a3a2b82189cf05631",
"url": "https://plugins.matomo.org/api/2.0/plugins/LoginLdap/download/5.0.7",
"version": "5.0.7",
"description": "LDAP authentication and synchronization for Matomo.",
"homepage": "https://github.com/matomo-org/plugin-LoginLdap",
"license": "GPL v3+",
"displayName": "Login Ldap"
},
"LoginOIDC": {
"sha256": "36a87b7361547b8910a5a6f76cf434b07667ed8af0b266e38d45e107d541ab4f",
"url": "https://plugins.matomo.org/api/2.0/plugins/LoginOIDC/download/5.0.0",
"version": "5.0.0",
"description": "Adds support for integrating external authentication services.",
"homepage": "https://github.com/dominik-th/matomo-plugin-LoginOIDC",
"license": "GPL v3+",
"displayName": "Login OIDC"
},
"LoginRevokable": {
"sha256": "81ba219228bbdfb82eb80231d613e802da61f832302f40f66337666e2aa43b6d",
"url": "https://plugins.matomo.org/api/2.0/plugins/LoginRevokable/download/0.1.4",
"version": "0.1.4",
"description": "An Authentication plugin that allows a user to log into multiple locations, however remotely logs out of all locations when any of the locations log o.",
"homepage": "https://github.com/torosian/LoginRevokable",
"license": "GPL",
"displayName": "Login Revokable"
},
"LoginShibboleth": {
"sha256": "f02d9de0af97f2d16b409fe06caac717fb7c388852284cc8237b8ed89b335862",
"url": "https://plugins.matomo.org/api/2.0/plugins/LoginShibboleth/download/1.1.9",
"version": "1.1.9",
"description": "Shibboleth Login Plugin for Matomo (Piwik).",
"homepage": "https://github.com/uniwue-rz/LoginShibboleth",
"license": "MIT",
"displayName": "Login Shibboleth"
},
"LoginTokenAuth": {
"sha256": "948f804ca9bb6b78a30287a40a175354bbae25e2da3bcd87f3d450636c3dd488",
"url": "https://plugins.matomo.org/api/2.0/plugins/LoginTokenAuth/download/5.0.0",
"version": "5.0.0",
"description": "Sign in to Matomo over api using the Users token_auth.",
"homepage": "https://www.hd-cms.de",
"license": "GPL v3+",
"displayName": "Login Token Auth"
},
"MarketingCampaignsReporting": {
"sha256": "0ac653e07a7618d379762b672a74b38412398d428e02d8eedaa310fb3ce6e9cb",
"url": "https://plugins.matomo.org/api/2.0/plugins/MarketingCampaignsReporting/download/5.1.1",
"version": "5.1.1",
"description": "Measure the effectiveness of your marketing campaigns. New reports, segments & track up to five channels: campaign, source, medium, keyword, content.",
"homepage": "https://matomo.org",
"license": "GPL v3+",
"displayName": "Marketing Campaigns Reporting"
},
"MaxConcurrent": {
"sha256": "681f5a58441020d017aaa24fb711eefe5c8888f3d2be5d412b36890a619d07fc",
"url": "https://plugins.matomo.org/api/2.0/plugins/MaxConcurrent/download/0.2.2",
"version": "0.2.2",
"description": "Reports maximum concurrent visitors in a time interval.",
"homepage": "http://github.com/mikekerr247/MaxConcurrent",
"license": "GPL v3+",
"displayName": "Max Concurrent"
},
"Migration": {
"sha256": "1942617c541f711d98047ac75ed71677c1a0c94dae1c24a606cb0da10a46e45f",
"url": "https://plugins.matomo.org/api/2.0/plugins/Migration/download/5.0.5",
"version": "5.0.5",
"description": "Migrate/copy any measurable (site, app, roll-up) from one Matomo to another Matomo.",
"homepage": "https://matomo.org",
"license": "GPL v3+",
"displayName": "Migration"
},
"MistralAI": {
"sha256": "97fc6d8876afd0dbcfd4d7da5036c3feec053372a00276fe6607de4dcf31af31",
"url": "https://plugins.matomo.org/api/2.0/plugins/MistralAI/download/5.6.4",
"version": "5.6.4",
"description": "Mistral AI support for Matomo.",
"homepage": "https://openmost.io/products/mistral-ai/",
"license": "GPL v3+",
"displayName": "Mistral AI"
},
"MozWidgetByAmperage": {
"sha256": "979fa2b7e51b5a06adf0f9fa3fd1a39a4c89433bc8f2809b3119f3c042e91c10",
"url": "https://plugins.matomo.org/api/2.0/plugins/MozWidgetByAmperage/download/5.0.1",
"version": "5.0.1",
"description": "Show Moz.com info for the current site as a dashboard widget. Also links to the latest Moz Pro Campaign Custom Report, if available.",
"homepage": "https://www.amperagemarketing.com",
"license": "GPL v3+",
"displayName": "Moz Widget"
},
"PageColours": {
"sha256": "f481b9e6fc6d2da49e07ac48213ddfb58262247dbf13dc770b2b04e93c46b764",
"url": "https://plugins.matomo.org/api/2.0/plugins/PageColours/download/0.1.2",
"version": "0.1.2",
"description": "Allows custom icons and colours for pages in the real-time visitor log.",
"homepage": "https://github.com/orismology/PageColours/",
"license": "GPL v3+",
"displayName": "Page Colours"
},
"PasswordPolicyEnforcer": {
"sha256": "e67d1df67cbf32c1702f9bc4a8213672d4892b90c0175659d586af9586d6d4aa",
"url": "https://plugins.matomo.org/api/2.0/plugins/PasswordPolicyEnforcer/download/2.0.2",
"version": "2.0.2",
"description": "Adds a possibility to enforce Password Policy test.",
"homepage": "https://github.com/simivar/matomo-password-policy-enforcer",
"license": "MIT",
"displayName": "Password Policy Enforcer"
},
"PasswordVerifier": {
"sha256": "40b86acb510087f139b62819bd820b1d763550cc9bc8c5de8ebf1432859ce4b4",
"url": "https://plugins.matomo.org/api/2.0/plugins/PasswordVerifier/download/0.3.0",
"version": "0.3.0",
"description": "Reject insecure passwords by searching for their hash in the haveibeenpwned.com database.",
"homepage": "https://lw1.at",
"license": "GPL v3+",
"displayName": "Password Verifier"
},
"PerformanceAudit": {
"sha256": "e5523623c4bf1e6726bc7c234378b2b9631ceacc4d661d96235a657269aa3699",
"url": "https://plugins.matomo.org/api/2.0/plugins/PerformanceAudit/download/3.2.0",
"version": "3.2.0",
"description": "Daily performance audits of all your sites in Matomo.",
"homepage": "https://github.com/DevDavido/performance-audit-plugin",
"license": "GPL-3.0+",
"displayName": "Performance Audit"
},
"PerformanceInfo": {
"sha256": "48da61a91d320d8156546f86c99feb615907de8d070a78c64d877ca7b659a504",
"url": "https://plugins.matomo.org/api/2.0/plugins/PerformanceInfo/download/v0.2.1",
"version": "v0.2.1",
"description": "Matomo (Piwik) plugin to check if the settings are good for security/performance.",
"homepage": "https://github.com/ThaDafinser/Piwik-PerformanceInfo",
"license": "GPL v3",
"displayName": "Performance Info"
},
"PerformanceMonitor": {
"sha256": "2c6ffb6f1a6ad759f15f5863bd14d635f9a58f4337196d99a5473754e29f4347",
"url": "https://plugins.matomo.org/api/2.0/plugins/PerformanceMonitor/download/0.2.5",
"version": "0.2.5",
"description": "Displays the performance index of a site as a widget and adds an performance overview page to the top navigation. The index is calculated by the numbe.",
"homepage": "http://github.com/chanzler/piwik-performance-monitor",
"license": "GPL-3.0+",
"displayName": "Performance Monitor"
},
"ProfileAvatar": {
"sha256": "3aac3088fe92fa2ed8821fcb5571dbd691a2d5300e4a04bbbbd58ea8b7104f3c",
"url": "https://plugins.matomo.org/api/2.0/plugins/ProfileAvatar/download/0.2.0",
"version": "0.2.0",
"description": "Show a random avatar on the Visitor Profile.",
"homepage": "https://lw1.at",
"license": "GPL v3+",
"displayName": "Profile Avatar"
},
"ProfileGravatar": {
"sha256": "c495d50ffafa725c356336d3ddfc85a50dc4cbcea44ac8b13e350268b645aeba",
"url": "https://plugins.matomo.org/api/2.0/plugins/ProfileGravatar/download/5.0.9",
"version": "5.0.9",
"description": "Use gravatar image for visitor's profile picture.",
"homepage": "https://openmost.io/products/profile-gravatar/",
"license": "GPL v3+",
"displayName": "Profile Gravatar"
},
"ProtectTrackID": {
"sha256": "2dfc78b8d94594e949bc7caab1289f3d59134033689e542023f5fb7379b49ab7",
"url": "https://plugins.matomo.org/api/2.0/plugins/ProtectTrackID/download/3.2.0",
"version": "3.2.0",
"description": "Provides a option to protect idSite using hash instead default numeric.",
"homepage": "https://github.com/joubertredrat/Matomo-ProtectTrackID",
"license": "MIT",
"displayName": "Protect Track ID"
},
"Provider": {
"sha256": "df70262705d9300d6d7b99819a3db3d3c1677d206044c3144328a80718238279",
"url": "https://plugins.matomo.org/api/2.0/plugins/Provider/download/5.0.4",
"version": "5.0.4",
"description": "Reports the Internet Service Provider of the visitors.",
"homepage": "https://matomo.org",
"license": "GPL v3+",
"displayName": "Provider"
},
"QueuedTracking": {
"sha256": "1c8ecab588afb06dd40dd67016a973731c14da37411152fe77cfabca07778cf1",
"url": "https://plugins.matomo.org/api/2.0/plugins/QueuedTracking/download/5.1.1",
"version": "5.1.1",
"description": "Scale your large traffic Matomo service by queuing tracking requests in Redis or MySQL for better performance and reliability when experiencing peaks.",
"homepage": "https://matomo.org",
"license": "GPL v3+",
"displayName": "Queued Tracking"
},
"QuickExcludeVisitorIP": {
"sha256": "16012bf8cfb36f100e4a0abdf04b43ea221160c7cb190a708fb2060fc3a32387",
"url": "https://plugins.matomo.org/api/2.0/plugins/QuickExcludeVisitorIP/download/0.2.0",
"version": "0.2.0",
"description": "Adds a button to Visitor Profile to quickly add them to the list of ignored IPs.",
"homepage": "https://lw1.at",
"license": "GPL v3+",
"displayName": "Quick Exclude Visitor IP"
},
"RebelNotifications": {
"sha256": "f4d12756756fa1aa3ab0a43bf751445443388b38903ba8d4eaf01945e384538f",
"url": "https://plugins.matomo.org/api/2.0/plugins/RebelNotifications/download/5.0.5",
"version": "5.0.5",
"description": "Show Notifications to your users.",
"homepage": "https://digitalist.cloud",
"license": "GPL v3+",
"displayName": "Rebel Notifications"
},
"RebelOIDC": {
"sha256": "d933c4dbe157bfb211def620e2ac72f84ae75147e9b979b2a6b4c285e5177754",
"url": "https://plugins.matomo.org/api/2.0/plugins/RebelOIDC/download/5.1.1",
"version": "5.1.1",
"description": "Adds OIDC login to your Matomo instance.",
"homepage": "https://github.com/Digitalist-Open-Cloud/Matomo-Plugin-RebelOIDC",
"license": "GPL v3+",
"displayName": "Rebel OIDC"
},
"ReferrersManager": {
"sha256": "8a2a7270d4dcac5f77956cc3e5fe87107d705feadf836855b5c2b3b47664ca98",
"url": "https://plugins.matomo.org/api/2.0/plugins/ReferrersManager/download/5.0.1",
"version": "5.0.1",
"description": "Allows to view and manage the search engines and social networks that Matomo is able to detect.",
"homepage": "https://github.com/sgiehl/piwik-plugin-ReferrersManager",
"license": "GPL v3+",
"displayName": "Referrers Manager"
},
"ReportPublisher": {
"sha256": "79121c6ab4bad7142087440d8652a62e0a75952033da656af4ee90b9a71fdd71",
"url": "https://plugins.matomo.org/api/2.0/plugins/ReportPublisher/download/0.2.2",
"version": "0.2.2",
"description": "Publish Matomo (Piwik) reports to external systems using various protocols. Please consult the changelog for available protocols.",
"homepage": "https://github.com/JulienMoumne/piwik-report-publisher",
"license": "GPL-3.0+",
"displayName": "Report Publisher"
},