-
Notifications
You must be signed in to change notification settings - Fork 38
/
extensions.json
1298 lines (1297 loc) · 64.3 KB
/
extensions.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
[
{
"name": "Twilio SMS",
"description": "Integrates the Twilio SMS API and provides a Marketing Automation action to send messages to your customers.",
"thumbnailUrl": "https://raw.githubusercontent.com/Kentico/xperience-twilio-sms/master/img/icon.png",
"author": "Kentico",
"sourceUrl": "https://github.com/Kentico/xperience-twilio-sms",
"version": "0.0.4",
"kenticoVersions": ["13.0.73"],
"category": "integration",
"tags": ["twilio", "sms", "marketing automation"]
},
{
"name": "Xperience by Kentico Algolia Search",
"description": "Enables the creation of Algolia search indexes and the indexing of Xperience content tree pages using a code-first approach.",
"thumbnailUrl": "https://raw.githubusercontent.com/Kentico/xperience-by-kentico-algolia/master/img/icon.png",
"author": "Kentico",
"sourceUrl": "https://github.com/Kentico/xperience-by-kentico-algolia",
"version": "1.0.0",
"kenticoVersions": ["22.3.0"],
"category": "integration",
"tags": ["algolia", "search", "faceted search", "personalization", ".net core"]
},
{
"name": "Bynder image selector",
"description": "Adds the Bynder image selector form control for Xperience administration forms.",
"thumbnailUrl": "https://raw.githubusercontent.com/Kentico/devnet.kentico.com/master/marketplace/assets/xperience-icon.png",
"author": "Kentico",
"sourceUrl": "https://github.com/Kentico/xperience-module-bynder",
"version": "0.1.1",
"kenticoVersions": ["13.0.0"],
"category": "integration",
"tags": ["integration", "bynder", "digital asset management", "form component"]
},
{
"name": "Looker Studio",
"description": "Use data from your Kentico Xperience website in Looker Studio reports.",
"thumbnailUrl": "https://raw.githubusercontent.com/Kentico/xperience-google-lookerstudio/master/img/icon.png",
"author": "Kentico",
"sourceUrl": "https://github.com/Kentico/xperience-google-lookerstudio",
"version": "1.0.0",
"kenticoVersions": ["13.0.0"],
"category": "integration",
"tags": ["data studio", "reporting", "analytics", "looker studio"]
},
{
"name": "hCaptcha",
"description": "Kentico Xperience 13.0.66 (or higher) ASP.NET Core 6.0+ Form Component that adds hCaptcha captcha validation to Form Builder forms.",
"thumbnailUrl": "https://raw.githubusercontent.com/Kentico/devnet.kentico.com/master/marketplace/assets/wv-logo.png",
"author": "WiredViews",
"sourceUrl": "https://github.com/wiredviews/xperience-hcaptcha",
"version": "1.0.0",
"kenticoVersions": ["13.0.66"],
"category": "mvc form component",
"tags": ["asp.net core", "hcaptcha", "captcha", "component"]
},
{
"name": "Disqus widget",
"description": "A pagebuilder widget which enables Disqus commenting on your Xperience by Kentico website.",
"thumbnailUrl": "https://github.com/Kentico/xperience-disqus/raw/xbk/img/icon.png",
"author": "Kentico",
"sourceUrl": "https://github.com/Kentico/xperience-disqus/tree/xbk",
"version": "1.0.0",
"kenticoVersions": ["22.0.3"],
"category": "integration",
"tags": ["core", "component", "widget", "disqus", "comments"]
},
{
"name": "SendGrid",
"description": "Dispatches Xperience emails using SendGrid's Web API, handles SendGrid events, and provides an interface to manage Xperience and SendGrid suppressions.",
"thumbnailUrl": "https://raw.githubusercontent.com/Kentico/xperience-twilio-sendgrid/master/img/icon.png",
"author": "Kentico",
"sourceUrl": "https://github.com/Kentico/xperience-twilio-sendgrid",
"version": "1.0.0",
"kenticoVersions": ["13.0.73"],
"category": "integration",
"tags": ["sendgrid", "email", "email marketing"]
},
{
"name": "Dynamics 365",
"description": "An integration for synchronizing contacts and activities between Kentico Xperience and Microsoft Dynamics 365.",
"thumbnailUrl": "https://raw.githubusercontent.com/Kentico/xperience-dynamics365-sales/master/Assets/icon.png",
"author": "Kentico",
"sourceUrl": "https://github.com/Kentico/xperience-dynamics365-sales",
"version": "1.0.0",
"kenticoVersions": ["13.0.0"],
"category": "integration",
"tags": ["dynamics365", "contacts", "activities"]
},
{
"name": "Google Search Console",
"description": "Allows Xperience users to view the indexed status of your Xperience website pages from Google Search Console, and request re-indexing.",
"thumbnailUrl": "https://raw.githubusercontent.com/Kentico/xperience-google-searchconsole/master/Assets/icon.png",
"author": "Kentico",
"sourceUrl": "https://github.com/Kentico/xperience-google-searchconsole",
"version": "1.0.0",
"kenticoVersions": ["13.0.0"],
"category": "integration",
"tags": ["google", "google search", "seo"]
},
{
"name": "Page Navigation Redirects",
"description": "An ASP.NET Core ResourceFilter that can redirect HTTP requests to other URLs, configurable per-Page from the Xperience Administration application.",
"thumbnailUrl": "https://raw.githubusercontent.com/Kentico/devnet.kentico.com/master/marketplace/assets/wv-logo.png",
"author": "WiredViews",
"sourceUrl": "https://github.com/wiredviews/xperience-page-navigation-redirects",
"version": "1.1.0",
"kenticoVersions": ["13.0.0"],
"category": "utility",
"tags": ["asp.net core", "redirects", "page types", "navigation"]
},
{
"name": "SVG Media Dimensions",
"description": "Sets the width/height of SVG images when uploaded/updated in the Administration application of Kentico Xperience 13 sites.",
"thumbnailUrl": "https://raw.githubusercontent.com/Kentico/devnet.kentico.com/master/marketplace/assets/wv-logo.png",
"author": "WiredViews",
"sourceUrl": "https://github.com/wiredviews/xperience-svg-media-dimensions",
"version": "1.1.0",
"kenticoVersions": ["13.0.0"],
"category": "module",
"tags": ["svg", "media library", "attachments"]
},
{
"name": "Page Template Utilities",
"description": "Utilities to help quickly create and register MVC Page Templates in Kentico Xperience.",
"thumbnailUrl": "https://raw.githubusercontent.com/Kentico/devnet.kentico.com/master/marketplace/assets/wv-logo.png",
"author": "WiredViews",
"sourceUrl": "https://github.com/wiredviews/xperience-page-template-utilities",
"version": "1.0.0",
"kenticoVersions": ["13.0.0"],
"category": "utility",
"tags": ["asp.net core", "page templates", "page types"]
},
{
"name": "Page Custom Data Control Extender",
"description": "A Kentico Xperience Form Control Extender that syncs the Form Control value to/from Page CustomData fields.",
"thumbnailUrl": "https://raw.githubusercontent.com/Kentico/devnet.kentico.com/master/marketplace/assets/wv-logo.png",
"author": "WiredViews",
"sourceUrl": "https://github.com/wiredviews/xperience-page-custom-data-control-extender",
"version": "1.0.0",
"kenticoVersions": ["13.0.0"],
"category": "other",
"tags": ["form control", "content", "web forms", "page types"]
},
{
"name": "Page Builder Utilities",
"description": "ASP.NET Core Tag Helpers and abstractions for the Page Builder in Kentico Xperience applications.",
"thumbnailUrl": "https://raw.githubusercontent.com/Kentico/devnet.kentico.com/master/marketplace/assets/wv-logo.png",
"author": "WiredViews",
"sourceUrl": "https://github.com/wiredviews/xperience-page-builder-utilities",
"version": "1.1.0",
"kenticoVersions": ["13.0.0"],
"category": "utility",
"tags": ["page builder", "razor", "tag helper", "asp.net core"]
},
{
"name": "Page Link Tag Helpers",
"description": "Kentico Xperience 13.0 ASP.NET Core Tag Helper that generates links to pages from NodeGUID values.",
"thumbnailUrl": "https://raw.githubusercontent.com/Kentico/devnet.kentico.com/master/marketplace/assets/wv-logo.png",
"author": "WiredViews",
"sourceUrl": "https://github.com/wiredviews/xperience-page-link-tag-helpers",
"version": "1.0.0",
"kenticoVersions": ["13.0.0"],
"category": "other",
"tags": ["link", "content", "tag helper", "asp.net core"]
},
{
"name": "Algolia search",
"description": "Enables the creation of Algolia search indexes and the indexing of Xperience content tree pages using a code-first approach.",
"thumbnailUrl": "https://raw.githubusercontent.com/Kentico/xperience-algolia/master/img/icon.png",
"author": "Kentico",
"sourceUrl": "https://github.com/Kentico/xperience-algolia",
"version": "1.0.0",
"kenticoVersions": ["13.0.16"],
"category": "integration",
"tags": ["algolia", "search", "faceted search", "personalization", ".net core"]
},
{
"name": "Xperience Community: RSS Feeds",
"description": "RSS Feed Integration for ASP.NET Core based Kentico Xperience 13.0 applications using Content Tree Routing.",
"thumbnailUrl": "https://raw.githubusercontent.com/Kentico/devnet.kentico.com/master/marketplace/assets/wv-logo.png",
"author": "WiredViews",
"sourceUrl": "https://github.com/wiredviews/xperience-rss-feeds",
"version": "1.0.0",
"kenticoVersions": ["13.0.0"],
"category": "integration",
"tags": ["rss", "page types", "content", "asp.net core"]
},
{
"name": "Jira Automation",
"description": "Provides custom Workflow and Marketing automation actions to integrate Jira issues with Kentico Xperience.",
"thumbnailUrl": "https://raw.githubusercontent.com/Kentico/xperience-jira/master/assets/icon.png",
"author": "Kentico",
"sourceUrl": "https://github.com/Kentico/xperience-jira",
"version": "1.0.4",
"kenticoVersions": ["13.0.0"],
"category": "integration",
"tags": ["workflow", "marketing automation", "automation", "jira"]
},
{
"name": "Disqus widget",
"description": "A pagebuilder widget which enables Disqus commenting on your .NET Core website.",
"thumbnailUrl": "https://github.com/Kentico/xperience-disqus/raw/master/img/icon.png",
"author": "Kentico",
"sourceUrl": "https://github.com/Kentico/xperience-disqus",
"version": "1.0.0",
"kenticoVersions": ["13.0.32"],
"category": "mvc widget",
"tags": ["core", "component", "widget", "disqus", "comments"]
},
{
"name": "Event Calendar",
"description": "Custom .NET Core ViewComponents meant for displaying calendars of events and enabling event registration using a customizable, modern javascript library.",
"thumbnailUrl": "https://raw.githubusercontent.com/Kentico/devnet.kentico.com/master/marketplace/assets/xperience-icon.png",
"author": "Eric Dugre",
"sourceUrl": "https://github.com/Kentico/xperience-core-events",
"version": "1.0.3",
"kenticoVersions": ["13.0.5"],
"category": "module",
"tags": ["core", "component", "widget", "events", "calendar"]
},
{
"name": ".NET Core Breadcrumbs widget",
"description": "Provides a widget and inline code for generating breadcrumbs on an Xperience 13 .NET Core site using content tree based routing.",
"thumbnailUrl": "https://raw.githubusercontent.com/Kentico/devnet.kentico.com/master/marketplace/assets/xperience-icon.png",
"author": "Eric Dugre",
"sourceUrl": "https://github.com/kentico-ericd/xperience-core-breadcrumbs",
"version": "1.0.0",
"kenticoVersions": ["13.0.0"],
"category": "other",
"tags": ["core", "component", "widget", "breadcrumbs"]
},
{
"name": "Kentico Authorization",
"description": "Provides a [KenticoAuthorize] Attribute that limits access by: User Authenticated, User Names, User Roles, Page ACL Permissions, Resource/Module Permissions.",
"thumbnailUrl": "https://raw.githubusercontent.com/Kentico/devnet.kentico.com/master/marketplace/assets/HBS-Logo.png",
"author": "Trevor Fayas -Heartland Business Systems",
"sourceUrl": "https://github.com/KenticoDevTrev/KenticoAuthorization",
"version": "13.0.1",
"kenticoVersions": ["12.0.29", "13.0.0"],
"category": "utility",
"tags": ["authorization", "ACL", "permissions", "dynamic routing"]
},
{
"name": "Kentico Localization Attributes",
"description": "Localized variations of the default DataAnnotation Attributes that allow your ErrorMessage to contain and resolve Localized macro expressions",
"thumbnailUrl": "https://raw.githubusercontent.com/Kentico/devnet.kentico.com/master/marketplace/assets/HBS-Logo.png",
"author": "Trevor Fayas -Heartland Business Systems",
"sourceUrl": "https://github.com/KenticoDevTrev/KenticoLocalizedValidationAttributes",
"version": "12.29.0",
"kenticoVersions": ["12.0.29"],
"category": "utility",
"tags": ["ValidationAttributes", "Validation", "Localized", "Localization"]
},
{
"name": "COVID-19 Country Wise",
"description": "Render COVID-19 Corona virus country wise data using rapidapi (i.e. https://rapidapi.com/spamakashrajtech/api/corona-virus-world-and-india-data).",
"thumbnailUrl": "https://raw.githubusercontent.com/vasu-rbt/devnet.kentico.com/master/marketplace/assets/raybiztech-logo.png",
"author": "Ray Business Technologies Pvt Ltd.",
"sourceUrl": "https://github.com/vasu-rbt/K10Covid19Webparts",
"version": "1.0.0",
"kenticoVersions": ["10.0.0", "12.0.29"],
"category": "webpart",
"tags": ["COVID-19", "Coronavirus", "Country Wise", "Country"]
},
{
"name": "COVID-19 Statistics",
"description": "Render COVID-19 Corona virus world/country statistics using rapidapi (i.e. https://rapidapi.com/KishCom/api/covid-19-coronavirus-statistics).",
"thumbnailUrl": "https://raw.githubusercontent.com/vasu-rbt/devnet.kentico.com/master/marketplace/assets/raybiztech-logo.png",
"author": "Ray Business Technologies Pvt Ltd.",
"sourceUrl": "https://github.com/vasu-rbt/K10Covid19Webparts",
"version": "1.0.0",
"kenticoVersions": ["10.0.0", "12.0.29"],
"category": "webpart",
"tags": ["COVID-19", "Coronavirus", "Statistics", "Country"]
},
{
"name": "Registration Form Widget",
"description": "It displays a form that allows visitors to register on the website as new users.",
"thumbnailUrl": "https://raw.githubusercontent.com/vasu-rbt/devnet.kentico.com/master/marketplace/assets/raybiztech-logo.png",
"author": "Ray Business Technologies Pvt Ltd.",
"sourceUrl": "https://github.com/vasu-rbt/kentico12-mvc-widgets/tree/master/Raybiztech.Kentico12.MVC.Widgets/Raybiztech.Kentico12.MVC.Widgets.RegistrationForm",
"version": "1.0.0",
"kenticoVersions": [
"12.0.29"
],
"category": "mvc widget",
"tags": ["mvc", "Registration", "Form", "Registration Form","RegistrationForm"]
},
{
"name": "Logon Form Widget",
"description": "Displays a Logon form that allows users to log into the website. Authentication requires a valid user name and password.",
"thumbnailUrl": "https://raw.githubusercontent.com/vasu-rbt/devnet.kentico.com/master/marketplace/assets/raybiztech-logo.png",
"author": "Ray Business Technologies Pvt Ltd.",
"sourceUrl": "https://github.com/vasu-rbt/kentico12-mvc-widgets/tree/master/Raybiztech.Kentico12.MVC.Widgets/Raybiztech.Kentico12.MVC.Widgets.LogonForm",
"version": "1.0.0",
"kenticoVersions": [
"12.0.29"
],
"category": "mvc widget",
"tags": ["mvc", "Logon", "Form", "Logon Form","LogonForm","Login Form"]
},
{
"name": "Textmetrics for Kentico",
"description": "Textmetrics enables organizations to create high quality and SEO friendly content that matches your target audience and complies to your brand and styleguides.",
"thumbnailUrl": "https://raw.githubusercontent.com/iNalgiev/devnet.kentico.com/master/marketplace/assets/textmetrics_icon.png",
"author": "Textmetrics",
"sourceUrl": "https://github.com/iNalgiev/Textmetrics.Kentico",
"version": "1.0.0",
"kenticoVersions": [
"12.0.0"
],
"category": "module",
"tags": ["cms", "module", "text", "seo", "content", "quality", "optimization", "tool"]
},
{
"name": "Editable Image Widget",
"description": "It will render the image which can be seleted from media library and allows editors to add class, alt text, dimensions and redirection link to image",
"thumbnailUrl": "https://raw.githubusercontent.com/vasu-rbt/devnet.kentico.com/master/marketplace/assets/raybiztech-logo.png",
"author": "Ray Business Technologies Pvt Ltd.",
"sourceUrl": "https://github.com/vasu-rbt/kentico12-mvc-widgets/tree/master/Raybiztech.Kentico12.MVC.Widgets/Raybiztech.Kentico12.MVC.Widgets.EditableImage",
"version": "1.0.0",
"kenticoVersions": [
"12.0.29"
],
"category": "mvc widget",
"tags": ["mvc", "Editable Image", "Editable", "Image"]
},
{
"name": "Image Video Carousel",
"description": "Displays Image and Video slides in a carousel using content tree pages.",
"thumbnailUrl": "https://raw.githubusercontent.com/vasu-rbt/devnet.kentico.com/master/marketplace/assets/raybiztech-logo.png",
"author": "Ray Business Technologies Pvt Ltd.",
"sourceUrl": "https://github.com/vasu-rbt/kentico12-mvc-widgets/tree/master/Raybiztech.Kentico12.MVC.Widgets/Raybiztech.Kentico12.MVC.Widgets.ImageVideoCarousel",
"version": "1.0.0",
"kenticoVersions": [
"12.0.29"
],
"category": "mvc widget",
"tags": ["mvc", "Image and Video Carousel", "Image Carousel","Video Carousel","Image Slider", "Video Slider","Image","Video", "Slider","Corousel"]
},
{
"name": "Image Card",
"description": "Displays the Image Cards with Image, Caption and TargetUrl using content tree Pages.",
"thumbnailUrl": "https://raw.githubusercontent.com/vasu-rbt/devnet.kentico.com/master/marketplace/assets/raybiztech-logo.png",
"author": "Ray Business Technologies Pvt Ltd.",
"sourceUrl": "https://github.com/vasu-rbt/kentico12-mvc-widgets/tree/master/Raybiztech.Kentico12.MVC.Widgets/Raybiztech.Kentico12.MVC.Widgets.ImageCard",
"version": "1.0.0",
"kenticoVersions": [
"12.0.29"
],
"category": "mvc widget",
"tags": ["mvc", "Image Card", "Image with caption and target link","Image","Card"]
},
{
"name": "Repeater",
"description": "Displays the content of specified page type pages based on the assigned view.",
"thumbnailUrl": "https://raw.githubusercontent.com/vasu-rbt/devnet.kentico.com/master/marketplace/assets/raybiztech-logo.png",
"author": "Ray Business Technologies Pvt Ltd.",
"sourceUrl": "https://github.com/vasu-rbt/kentico12-mvc-widgets/tree/master/Raybiztech.Kentico12.MVC.Widgets/Raybiztech.Kentico12.MVC.Widgets.Repeater",
"version": "1.0.0",
"kenticoVersions": [
"12.0.29"
],
"category": "mvc widget",
"tags": ["mvc", "Repeater widget", "Repeater"]
},
{
"name": "Google Map Widget",
"description": "It displays map obtained from the Google maps service using Latitude,Longitude and Google API Key.",
"thumbnailUrl": "https://raw.githubusercontent.com/vasu-rbt/devnet.kentico.com/master/marketplace/assets/raybiztech-logo.png",
"author": "Ray Business Technologies Pvt Ltd.",
"sourceUrl": "https://github.com/vasu-rbt/kentico12-mvc-widgets/tree/master/Raybiztech.Kentico12.MVC.Widgets/Raybiztech.Kentico12.MVC.Widgets.GoogleMap",
"version": "1.0.0",
"kenticoVersions": [
"12.0.29"
],
"category": "mvc widget",
"tags": [
"mvc",
"Google Map",
"Google",
"Map",
"Kentico 12"
]
},
{
"name": "Dynamic Routing",
"description": "Automatic page route mapping to Controller, Controller+Action, or View using Attributes. Based on Automatic Url Slugs with custom Urls allowed.",
"thumbnailUrl": "https://raw.githubusercontent.com/Kentico/devnet.kentico.com/master/marketplace/assets/DynamicRouting.png",
"author": "Trevor Fayas-HBS, Sean Wright-WiredViews",
"sourceUrl": "https://github.com/KenticoDevTrev/DynamicRouting",
"version": "12.29.0",
"kenticoVersions": ["12.0.29"],
"category": "utility",
"tags": ["dynamic routing", "routing", "url"]
},
{
"name": "Dynamic Routing Wildcards",
"description": "Extends DynamicRouting.Kentico.MVC to support wildcards in urls which map to properties within Controller actions",
"thumbnailUrl": "https://raw.githubusercontent.com/Kentico/devnet.kentico.com/master/marketplace/assets/DynamicRouting.png",
"author": "Taylor Smith, Rafe Wilson",
"sourceUrl": "https://github.com/reallymoving/kentico-dynamic-routing-wildcards",
"version": "12.29.0",
"kenticoVersions": ["12.0.29"],
"category": "utility",
"tags": ["dynamic routing wildcard", "routing", "url"]
},
{
"name": "YouTube Video widget",
"description": "Widget Enables to insert the video from specified YouTube URL location.",
"thumbnailUrl": "https://raw.githubusercontent.com/vasu-rbt/devnet.kentico.com/master/marketplace/assets/raybiztech-logo.png",
"author": "Ray Business Technologies Pvt Ltd.",
"sourceUrl": "https://github.com/vasu-rbt/kentico12-mvc-widgets/tree/master/Raybiztech.Kentico12.MVC.Widgets/Raybiztech.Kentico12.MVC.Widgets.YouTubeVideo",
"version": "1.0.0",
"kenticoVersions": ["12.0.0"],
"category": "mvc widget",
"tags": ["mvc", "youtube", "youtue video", "Video"]
},
{
"name": "Link button widget",
"description": "Widget displays a hyperlink to a specified target URL. The link can be rendered in text format.",
"thumbnailUrl": "https://raw.githubusercontent.com/vasu-rbt/devnet.kentico.com/master/marketplace/assets/raybiztech-logo.png",
"author": "Ray Business Technologies Pvt Ltd.",
"sourceUrl": "https://github.com/vasu-rbt/kentico12-mvc-widgets/tree/master/Raybiztech.Kentico12.MVC.Widgets/Raybiztech.Kentico12.MVC.Widgets.LinkButton",
"version": "1.0.0",
"kenticoVersions": ["12.0.0"],
"category": "mvc widget",
"tags": ["mvc", "Link", "Link button"]
},
{
"name": "Video widget",
"description": "Widget allowing to select and render a YouTube video on site.",
"thumbnailUrl": "https://raw.githubusercontent.com/Kentico/devnet.kentico.com/master/marketplace/assets/kentico-icon.png",
"author": "Kentico",
"sourceUrl": "https://github.com/Kentico/xperience-component-samples/tree/master/Kentico.Widget.Video#video-widget",
"version": "1.0.0",
"kenticoVersions": ["12.0.31"],
"category": "mvc widget",
"tags": ["mvc", "youtube", "video", "inline-editor"]
},
{
"name": "Rich Text Editor Widget",
"description": "The rich text widget allows content editors to edit rich text in a \"WYSIWYG\" manner.",
"thumbnailUrl": "https://raw.githubusercontent.com/Kentico/devnet.kentico.com/master/marketplace/assets/kentico-icon.png",
"author": "Kentico",
"sourceUrl": "https://github.com/Kentico/xperience-component-samples/tree/687639b20551d21b70f1966f29624ee88cf22d89/Kentico.Widget.RichText#rich-text-widget",
"version": "1.3.0",
"kenticoVersions": ["12.0.79"],
"category": "mvc widget",
"tags": ["mvc", "rich-text", "wysiwyg", "froala", "rich", "text", "editor"]
},
{
"name": "Rich Text Inline Editor",
"description": "The rich text inline editor for editing rich text in a \"WYSIWYG\" manner.",
"thumbnailUrl": "https://raw.githubusercontent.com/Kentico/devnet.kentico.com/master/marketplace/assets/kentico-icon.png",
"author": "Kentico",
"sourceUrl": "https://github.com/Kentico/xperience-component-samples/tree/687639b20551d21b70f1966f29624ee88cf22d89/Kentico.InlineEditor.RichText#rich-text-inline-editor",
"version": "1.3.0",
"kenticoVersions": ["12.0.79"],
"category": "mvc inline editor",
"tags": ["mvc", "rich-text", "wysiwyg", "froala", "rich", "text", "editor"]
},
{
"name": "KInspector",
"description": "Performance, health and security audit tool for Kentico.",
"thumbnailUrl": "https://raw.githubusercontent.com/Kentico/devnet.kentico.com/master/marketplace/assets/kentico-icon.png",
"author": "Kentico",
"sourceUrl": "https://github.com/Kentico/KInspector",
"version": "3.9.0",
"kenticoVersions": ["12.0.0"],
"category": "module",
"tags": ["health", "performance", "security", "monitoring", "analysis"]
},
{
"name": "Disqus Thread",
"description": "Disqus thread web part for Kentico.",
"thumbnailUrl": "https://raw.githubusercontent.com/Kentico/devnet.kentico.com/master/marketplace/assets/kentico-icon.png",
"author": "Kentico",
"sourceUrl": "https://github.com/Kentico/DisqusThread",
"version": "1.1.0",
"kenticoVersions": ["10.0.0"],
"category": "webpart",
"tags": ["community", "forums", "discussions", "chat"]
},
{
"name": "AD Import Service",
"description": "A windows service for Active Directory synchronization with Kentico.",
"thumbnailUrl": "https://raw.githubusercontent.com/Kentico/devnet.kentico.com/master/marketplace/assets/kentico-icon.png",
"author": "Kentico",
"sourceUrl": "https://github.com/Kentico/ADImportService",
"version": "1.1.0",
"kenticoVersions": ["8.0.0"],
"category": "utility",
"tags": ["active directory", "ad", "membership", "import", "authentication"]
},
{
"name": "AD Import Utility",
"description": "A windows application that allows importing of users and groups (roles) from Active Directory (AD) into Kentico.",
"thumbnailUrl": "https://raw.githubusercontent.com/Kentico/devnet.kentico.com/master/marketplace/assets/kentico-icon.png",
"author": "Kentico",
"sourceUrl": "https://github.com/Kentico/ADImport",
"version": "12.0.0",
"kenticoVersions": ["12.0.0"],
"category": "utility",
"tags": ["active directory", "ad", "membership", "import", "authentication"]
},
{
"name": "Kentico AMP",
"description": "Accelerated Mobile Pages module for Kentico EMS.",
"thumbnailUrl": "https://raw.githubusercontent.com/Kentico/devnet.kentico.com/master/marketplace/assets/kentico-icon.png",
"author": "Kentico",
"sourceUrl": "https://github.com/Kentico/kentico-amp",
"version": "12.0.0",
"kenticoVersions": ["12.0.0"],
"category": "module",
"tags": ["google-amp", "amp-html", "amp-filter"]
},
{
"name": "PoSH Kentico",
"description": "PowerShell Administration module for Kentico CMS.",
"thumbnailUrl": "https://raw.githubusercontent.com/Kentico/devnet.kentico.com/master/marketplace/assets/clcrutch-icon.png",
"author": "Chris Crutchfield",
"sourceUrl": "https://github.com/clcrutch/posh-kentico",
"version": "0.2.0",
"kenticoVersions": ["11.0.0"],
"category": "module",
"tags": ["powershell", "administration", "kentico-cms"]
},
{
"name": "Kentico MVC Widget Resolver",
"description": "Allows the use of Portal Engine style widgets within RichText fields to provide structured content to Kentico 12 MVC sites.",
"thumbnailUrl": "https://raw.githubusercontent.com/Kentico/devnet.kentico.com/master/marketplace/assets/hades200082-icon.jpg",
"author": "Lee Conlin",
"sourceUrl": "https://github.com/hades200082/Kentico12-MVC-WidgetResolver",
"version": "1.0.1",
"kenticoVersions": ["12.0.0"],
"category": "utility",
"tags": ["mvc", "kentico 12", "structured content", "rich text"]
},
{
"name": "Package Builder",
"description": "A command-line utility allowing more finite control over the creation of Kentico module packages and support for continuous integration.",
"thumbnailUrl": "https://raw.githubusercontent.com/Kentico/devnet.kentico.com/master/marketplace/assets/Ntara-icon.png",
"author": "Ntara",
"sourceUrl": "https://github.com/Ntara/Kentico.PackageBuilder",
"version": "1.0.0",
"kenticoVersions": ["11.0.0"],
"category": "utility",
"tags": ["module", "package", "command-line", "continuous integration"]
},
{
"name": "Relationships Extended",
"description": "Extends the Relationships to allow usage of Ad-hoc relationships (which allow order by) within the Relationship UI.",
"thumbnailUrl": "https://raw.githubusercontent.com/Kentico/devnet.kentico.com/master/marketplace/assets/HBS-Logo.png",
"author": "Trevor Fayas -Heartland Business Systems",
"sourceUrl": "https://github.com/KenticoDevTrev/RelationshipsExtended",
"version": "13.0.3",
"kenticoVersions": ["12.29.0", "13.0.0"],
"category": "module",
"tags": [
"relationships",
"many to many",
"related pages",
"category",
"categories"
]
},
{
"name": "Siteimprove for Kentico",
"description": "The Siteimprove for Kentico extension bridges the gap between the Kentico content management system and the Siteimprove Intelligence Platform.",
"thumbnailUrl": "https://raw.githubusercontent.com/Kentico/devnet.kentico.com/master/marketplace/assets/generic-integration.png",
"author": "BizStream",
"sourceUrl": "https://www.toolkitforkentico.com/extensions/siteimprove-for-kentico",
"version": "2.0.69",
"kenticoVersions": ["10.0.0", "11.0.0", "12.0.0"],
"category": "integration",
"tags": ["integration"]
},
{
"name": "Connect for Kentico",
"description": "Easily connect Kentico online forms to popular CRM & marketing automation software including Microsoft Dynamics 365, Marketo, Zoho, and more.",
"thumbnailUrl": "https://raw.githubusercontent.com/Kentico/devnet.kentico.com/master/marketplace/assets/generic-integration.png",
"author": "BizStream",
"sourceUrl": "https://www.bizstreamtoolkit.com/extensions/connect-for-kentico",
"version": "2.0.69",
"kenticoVersions": ["10.0.0", "11.0.0"],
"category": "integration",
"tags": ["integration"]
},
{
"name": "Kentico Power BI reports",
"description": "Monitor your business and get answers quickly with rich dashboards available on every device.",
"thumbnailUrl": "https://raw.githubusercontent.com/Kentico/devnet.kentico.com/master/marketplace/assets/kentico-icon.png",
"author": "Kentico",
"sourceUrl": "https://devnet.kentico.com/old-marketplace/integration/kentico-power-bi-reports",
"version": "1.0.0",
"kenticoVersions": ["10.0.0", "11.0.0", "12.0.0"],
"category": "integration",
"tags": ["integration"]
},
{
"name": "Compare for Kentico",
"description": "Compare for Kentico takes the fear out of deployments by allowing you to visually compare differences between multiple Kentico environments.",
"thumbnailUrl": "https://raw.githubusercontent.com/Kentico/devnet.kentico.com/master/marketplace/assets/generic-integration.png",
"author": "BizStream",
"sourceUrl": "https://www.bizstreamtoolkit.com/products/compare",
"version": "1.0.0",
"kenticoVersions": ["10.0.0"],
"category": "integration",
"tags": ["integration"]
},
{
"name": "Bootstrap 4 Layout Tool",
"description": "Kentico MVC Page Builder Section that allows you to configure the number of columns, sizes, additional classes, etc.",
"thumbnailUrl": "https://raw.githubusercontent.com/Kentico/devnet.kentico.com/master/marketplace/assets/bootstrap-icon.png",
"author": "Trevor Fayas -Heartland Business Systems",
"sourceUrl": "https://github.com/KenticoDevTrev/BootstrapLayoutTool/blob/master/README.md",
"version": "13.0.0",
"kenticoVersions": ["12.0.29", "13.0.0"],
"category": "mvc section",
"tags": ["section", "bootstrap", "columns"]
},
{
"name": "Multiple Page Selector",
"description": "A form control which allows for Multiple Page selection on Page Types and other areas of the Kentico Xeprience 13 administration application",
"thumbnailUrl": "https://raw.githubusercontent.com/netconstruct/kentico-xperience-13-multiple-page-selector/main/images/weareidhl_logo.jpg",
"author": "IDHL",
"sourceUrl": "https://github.com/netconstruct/kentico-xperience-13-multiple-page-selector",
"version": "1.0.0",
"kenticoVersions": ["13.0.0"],
"category": "other",
"tags": ["form component", "page selector", "multiple"]
},
{
"name": "Tiny MCE Wysiwyg Editor",
"description": "Adds TinyMCE 5 wysiwyg editor capabilities for MVC. Includes Editable Text, Rich Text, and the TinyMCE Inline form component.",
"thumbnailUrl": "https://raw.githubusercontent.com/Kentico/devnet.kentico.com/master/marketplace/assets/tinymce.png",
"author": "Troy Landers -Heartland Business Systems",
"sourceUrl": "https://github.com/KenticoDevTrev/TinyMCE_Wysiwyg",
"version": "12.29.0",
"kenticoVersions": ["12.0.29"],
"category": "mvc widget",
"tags": ["wysiwyg", "tinymce", "rich text", "editable text", "html"]
},
{
"name": "Partial Widget Page",
"description": "Allows you to render a Page Builder page as a partial to be included on another page. Similar to Portal Engine's Page Placeholder.",
"thumbnailUrl": "https://raw.githubusercontent.com/Kentico/devnet.kentico.com/master/marketplace/assets/HBS-Logo.png",
"author": "Trevor Fayas -Heartland Business Systems",
"sourceUrl": "https://github.com/KenticoDevTrev/PartialWidgetPage",
"version": "13.0.3",
"kenticoVersions": ["12.0.29", "13.0.0"],
"category": "utility",
"tags": ["page placeholder", "page builder", "widgets"]
},
{
"name": "Bing Maps MVC Widget",
"description": "Bing Maps widget allows editors to place a map to Page Builder sections. Its center (GPS coordinates) and zoom can be configured via configuration dialog.",
"thumbnailUrl": "https://raw.githubusercontent.com/ondrabus/kentico-mvcwidget-bing-maps/master/bingmaps.png",
"author": "Ondrabus",
"sourceUrl": "https://github.com/ondrabus/kentico-mvcwidget-bing-maps",
"version": "1.0.0",
"kenticoVersions": ["12.0.29"],
"category": "mvc widget",
"tags": ["mvc", "bing", "maps"]
},
{
"name": "Page Builder Containers",
"description": "Adds Page Builder Containers / Html before and after to Kentico MVC (Similar to Webpart Containers in Portal Engine)",
"thumbnailUrl": "https://raw.githubusercontent.com/Kentico/devnet.kentico.com/master/marketplace/assets/HBS-Logo.png",
"author": "Trevor Fayas -Heartland Business Systems",
"sourceUrl": "https://github.com/KenticoDevTrev/PageBuilderContainers",
"version": "13.0.3",
"kenticoVersions": ["12.0.29", "13.0.0"],
"category": "utility",
"tags": ["webpart containers", "containers"]
},
{
"name": "Color Picker",
"description": "Adds Simon Wep's Color Pickr as a form component, allowing for entry in any color format (RGBA, HEXA, HSVA), saves as rgba",
"thumbnailUrl": "https://raw.githubusercontent.com/Kentico/devnet.kentico.com/master/marketplace/assets/generic-integration.png",
"author": "Joshua Hess - Heartland Business Systems",
"sourceUrl": "https://github.com/farmergeek94/ColorPickerFormComponent",
"version": "12.29.4",
"kenticoVersions": ["12.0.29"],
"category": "mvc form component",
"tags": ["color", "picker", "hex"]
},
{
"name": "Date Time Picker",
"description": "Adds xDan's jQuery DatetimePicker as a form component",
"thumbnailUrl": "https://raw.githubusercontent.com/Kentico/devnet.kentico.com/master/marketplace/assets/generic-integration.png",
"author": "Joshua Hess - Heartland Business Systems",
"sourceUrl": "https://github.com/farmergeek94/DatePickerFormComponent",
"version": "12.29.1",
"kenticoVersions": ["12.0.29"],
"category": "mvc form component",
"tags": ["date", "picker", "datetime", "date time"]
},
{
"name": "Email Marketing & Surveys",
"description": "High-volume email marketing & survey platform. Synchronize Kentico Contact Groups & Macro conditions with SensorPro tags.",
"thumbnailUrl": "https://e.sensorpro.net/images/logos/sensorpro-kentico-icon.png",
"author": "SensorPro",
"sourceUrl": "https://github.com/SensorPro/KenticoContacts",
"version": "1.0.0",
"kenticoVersions": ["11.0.0", "11.0.49", "12.0.29", "12.0.40"],
"category": "module",
"tags": [
"integration",
"Email",
"Surveys",
"Marketing",
"High-Volume",
"NPS",
"Feedback"
]
},
{
"name": "Lightbox gallery",
"description": "Widget allows editors to place Lightbox gallery to Page Builder sections displaying page attachments, media library images or external URLs.",
"thumbnailUrl": "https://raw.githubusercontent.com/kentico/devnet.kentico.com/master/marketplace/assets/lightbox-gallery.png",
"author": "Ondrabus",
"sourceUrl": "https://github.com/ondrabus/kentico-mvcwidget-lightbox-gallery",
"version": "1.0.0",
"kenticoVersions": ["12.0.29"],
"category": "mvc widget",
"tags": ["mvc", "bing", "lightbox", "gallery"]
},
{
"name": "MVC Caching for Kentico",
"description": "Adds Automated+Manual Data Caching and Rendering Caching for Kentico MVC that is tied in with Kentico's Cache and dependencies.",
"thumbnailUrl": "https://raw.githubusercontent.com/Kentico/devnet.kentico.com/master/marketplace/assets/HBS-Logo.png",
"author": "Trevor Fayas -Heartland Business Systems",
"sourceUrl": "https://github.com/KenticoDevTrev/MVCCaching",
"version": "13.0.0",
"kenticoVersions": ["12.0.29", "13.0.0"],
"category": "utility",
"tags": ["cache", "caching"]
},
{
"name": "Content components",
"description": "Content Components provide a way of constructing your Page Types in Kentico using composition rather than inheritance.",
"thumbnailUrl": "https://raw.githubusercontent.com/Kentico/devnet.kentico.com/master/marketplace/assets/generic-integration.png",
"author": "Chris Meagher",
"sourceUrl": "https://github.com/CMeeg/kentico-contrib/tree/master/src/Meeg.Kentico.ContentComponents",
"version": "0.3.0",
"kenticoVersions": ["12.0.39"],
"category": "module",
"tags": ["content", "content modelling", "page types"]
},
{
"name": "Disqus Thread MVC Widget",
"description": "Disqus thread MVC widget for Kentico.",
"thumbnailUrl": "https://raw.githubusercontent.com/avivasolutionsnl/kentico-mvc-widget-disqus/master/aviva-solutions.png",
"author": "Aviva Solutions",
"sourceUrl": "https://github.com/avivasolutionsnl/kentico-mvc-widget-disqus",
"version": "1.0.0",
"kenticoVersions": ["12.0.38"],
"category": "mvc widget",
"tags": ["mvc", "comments", "disqus"]
},
{
"name": "Kentico Kontent publishing module",
"description": "Synchronizes all published content and assets from a specific site in Kentico Xperience to a specific project in Kentico Kontent using the Management API.",
"thumbnailUrl": "https://raw.githubusercontent.com/Kentico/devnet.kentico.com/master/marketplace/assets/kentico-icon.png",
"author": "Kentico",
"sourceUrl": "https://github.com/Kentico/xperience-module-kontent-publishing",
"version": "1.0.0",
"kenticoVersions": ["12.0.29", "13.0.0"],
"category": "integration",
"tags": ["headless", "headless_API", "API", "Kontent"]
},
{
"name": "Automatic Generic User Roles",
"description": "Restores Kentico 12's generic Roles of _authenticated_ _notauthenticated_ and _everyone_ with code to automatically create and maintain these listings.",
"thumbnailUrl": "https://raw.githubusercontent.com/Kentico/devnet.kentico.com/master/marketplace/assets/HBS-Logo.png",
"author": "Trevor Fayas -Heartland Business Systems",
"sourceUrl": "https://github.com/KenticoDevTrev/AutomaticGenericUserRoles",
"version": "13.0.0",
"kenticoVersions": ["12.0.29", "13.0.0"],
"category": "utility",
"tags": ["utility", "other"]
},
{
"name": "FullCalendar MVC Widget",
"description": "Kentico MVC FullCalendar widget allows you to render various content as calendar events.",
"thumbnailUrl": "https://raw.githubusercontent.com/drilic/kentico-mvcwidget-fullcalendar/master/exlrt-logo-clear.png",
"author": "Dragoljub Ilic (EXLRT)",
"sourceUrl": "https://github.com/drilic/kentico-mvcwidget-fullcalendar/",
"version": "2.0.0",
"kenticoVersions": ["12.0.41", "13.0.97"],
"category": "mvc widget",
"tags": ["mvc", "widget", "calendar", "fullCalendar", "events"]
},
{
"name": "YouTube Video Selector",
"description": "Enables the editor to search for videos on YouTube using plain-text to lookup by title or ID. Advanced settings allow for control of the video embed.",
"thumbnailUrl": "https://raw.githubusercontent.com/Kentico/devnet.kentico.com/master/marketplace/assets/generic-integration.png",
"author": "Matt Nield - Ridgeway",
"sourceUrl": "https://github.com/mattnield/kentico-youtube-selector-widget",
"version": "1.0.0",
"kenticoVersions": ["12.0.0"],
"category": "mvc widget",
"tags": ["YouTube", "mvc", "video", "inline", "video search"]
},
{
"name": "Recombee Content Recommendations",
"description": "Content recommendation module integrated with Recombee: AI-powered recommending service.",
"thumbnailUrl": "https://raw.githubusercontent.com/Kentico/devnet.kentico.com/master/marketplace/assets/generic-integration.png",
"author": "Kentico",
"sourceUrl": "https://github.com/Kentico/xperience-module-recombee",
"version": "0.0.1-preview",
"kenticoVersions": ["13.0.0"],
"category": "integration",
"tags": [
"Recommendations",
"Content_recommendations",
"AI",
"Artificial_Recommendations",
"Recombee",
"ecommerce"
]
},
{
"name": "Dynamic Routing (MVC Only)",
"description": "Automatic page route mapping to Controller, Controller+Action, or View using Attributes. Customization Required.",
"thumbnailUrl": "https://raw.githubusercontent.com/Kentico/devnet.kentico.com/master/marketplace/assets/DynamicRouting.png",
"author": "Trevor Fayas-HBS, Sean Wright-WiredViews",
"sourceUrl": "https://github.com/KenticoDevTrev/DynamicRouting/tree/DynamicRouting-Only",
"version": "12.29.1",
"kenticoVersions": ["12.0.29"],
"category": "utility",
"tags": ["dynamic routing", "routing", "url"]
},
{
"name": "ImageMagick Image Optimization",
"description": "Automatically shrink images using ImageMagick library during uploading to a Media Library or as a Page Attachment. Applicable for Kentico 12 CMS.",
"thumbnailUrl": "https://raw.githubusercontent.com/Kentico/devnet.kentico.com/master/marketplace/assets/delete_logo_100x100.png",
"author": "Dmitry Bastron, Delete Ltd.",
"sourceUrl": "https://github.com/diger74/DeleteAgency.Kentico12.ImageMagick",
"version": "1.0.0",
"kenticoVersions": ["12.0.0"],
"category": "module",
"tags": ["ImageMagick", "Image optimization"]
},
{
"name": "TinyPNG Image Optimization",
"description": "Automatically shrink images using TinyPNG API during uploading to Media Library or as a Page Attachment. Applicable for Kentico 12 CMS.",
"thumbnailUrl": "https://raw.githubusercontent.com/Kentico/devnet.kentico.com/master/marketplace/assets/delete_logo_100x100.png",
"author": "Dmitry Bastron, Delete Ltd.",
"sourceUrl": "https://github.com/diger74/DeleteAgency.Kentico12.TinyPng",
"version": "1.1.0",
"kenticoVersions": ["12.0.0"],
"category": "module",
"tags": [
"TinyPNG",
"Image optimization"
]
},
{
"name": "Carousel widget",
"description": "Carousel widget for Kentico MVC",
"thumbnailUrl": "https://raw.githubusercontent.com/Machmin/FLS.Kentico.Marketplace/master/FLS.Kentico.MvcWidget.Carousel/fls.png",
"author": "First line software",
"sourceUrl": "https://github.com/Machmin/FLS.Kentico.Marketplace/tree/master/FLS.Kentico.MvcWidget.Carousel",
"version": "0.0.9",
"kenticoVersions": [
"12.0.29"
],
"category": "mvc widget",
"tags": [
"mvc",
"carousel",
"image"
]
},
{
"name": "CKEditor4 Wysiwyg Editor",
"description": "Adds CKEditor4 Wysiwyg editor capabilities for MVC. Includes CKEditor4 Widget and Inline Editor.",
"thumbnailUrl": "https://raw.githubusercontent.com/TimLemke/CKEditor4_Wysiwyg/master/SeventyeightDigitalLogo.jpg",
"author": "Tim Lemke - Seventyeight Digital Inc.",
"sourceUrl": "https://github.com/TimLemke/CKEditor4_Wysiwyg",
"version": "12.29.0",
"kenticoVersions": ["12.0.29"],
"category": "mvc widget",
"tags": ["wysiwyg", "ckeditor4", "editable text", "html"]
},
{
"name": "Placeholder Image Widget",
"description": "Placeholder Image Widget using placeholder images created by https://placeholder.com/ for Kentico 12 MVC.",
"thumbnailUrl": "https://raw.githubusercontent.com/TimLemke/PlaceholderImageWidget/master/SeventyeightDigitalLogo.jpg",
"author": "Tim Lemke - Seventyeight Digital Inc.",
"sourceUrl": "https://github.com/TimLemke/PlaceholderImageWidget",
"version": "12.29.0",
"kenticoVersions": ["12.0.29"],
"category": "mvc widget",
"tags": ["Placeholder", "Images", "Widget"]
},
{
"name": "Masonry Image Gallery Widget",
"description": "Masonry image gallery widget using https://masonry.desandro.com/ for Kentico 12 MVC",
"thumbnailUrl": "https://raw.githubusercontent.com/TimLemke/MasonryImageGalleryWidget/master/SeventyeightDigitalLogo.jpg",
"author": "Tim Lemke - Seventyeight Digital Inc.",
"sourceUrl": "https://github.com/TimLemke/MasonryImageGalleryWidget",
"version": "12.29.0",
"kenticoVersions": ["12.0.29"],
"category": "mvc widget",
"tags": ["Masonry", "Image", "Gallery"]
},
{
"name": "Plyr Media Player Widget",
"description": "Media player widget using https://plyr.io/ for Kentico 12 MVC",
"thumbnailUrl": "https://raw.githubusercontent.com/TimLemke/PlyrMediaPlayerWidget/master/SeventyeightDigitalLogo.jpg",
"author": "Tim Lemke - Seventyeight Digital Inc.",
"sourceUrl": "https://github.com/TimLemke/PlyrMediaPlayerWidget",
"version": "12.29.0",
"kenticoVersions": ["12.0.29"],
"category": "mvc widget",
"tags": ["Media", "Player", "HTML5", "Audio", "Video", "Youtube", "Vimeo"]
},
{
"name": "URL Redirection Module",
"description": "A module that adds support for adding and managing URL redirects through the Kentico CMS interface.",
"thumbnailUrl": "https://github.com/silvertech/KenticoURLRedirectionModule/blob/master/silvertech-logo.png?raw=true",
"author": "SilverTech, Inc.",
"sourceUrl": "https://github.com/silvertech/KenticoURLRedirectionModule",
"version": "12.0.4",
"kenticoVersions": ["12.0.52"],
"category": "module",
"tags": ["url", "redirection", "module"]
},
{
"name": "Automated Image Compressor",
"description": "A utility to automatically compress images uploaded into a kentico media library.",
"thumbnailUrl": "https://raw.githubusercontent.com/QubaDigitalUK/KenticoCMS.Compressor/master/quba.jpg",
"author": "Quba",
"sourceUrl": "https://github.com/QubaDigitalUK/KenticoCMS.Compressor",
"version": "1.0.0",
"kenticoVersions": ["12.0.52"],
"category": "utility",
"tags": ["image", "compression", "performance", "utility"]
},
{
"name": "Slack Integration",
"description": "A quick and easy way to setup automatic slack messaging for Kentico",
"thumbnailUrl": "https://raw.githubusercontent.com/Kentico/devnet.kentico.com/master/marketplace/assets/Orange_Wakefly_Logo.png",
"author": "Wakefly Inc.",
"sourceUrl": "https://bitbucket.org/wakeflyinc/wakefly-slack-integration-marketplace-plugin/src/master/",
"version": "1.0.0",
"kenticoVersions": ["12.0.29"],
"category": "utility",
"tags": ["Slack", "messaging", "workflow", "utility"]
},
{
"name": "CMS Settings Config Builder",
"description": "Unify your CMS settings and app configuration settings behind a single configuration API.",
"thumbnailUrl": "https://raw.githubusercontent.com/Kentico/devnet.kentico.com/master/marketplace/assets/generic-integration.png",
"author": "Chris Meagher",
"sourceUrl": "https://github.com/CMeeg/kentico-contrib/tree/master/src/Meeg.Kentico.Configuration",
"version": "0.1.0",
"kenticoVersions": ["12.0.39"],
"category": "module",
"tags": ["configuration", "configuration builder", "settings"]
},
{
"name": "GatherContent Integration",
"description": "GatherContent’s Kentico integration allows content editors to import and update content from GatherContent to Kentico.",
"thumbnailUrl": "https://raw.githubusercontent.com/gathercontent/kentico-plugin/release/v12/marketplace/assets/kentico-icon.png",
"author": "Brimit",
"sourceUrl": "https://github.com/gathercontent/kentico-plugin/tree/release/v12",
"version": "12.0.1",
"kenticoVersions": ["12.0.29"],
"category": "module",
"tags": ["GatherContent", "integration", "module"]
},
{
"name": "Email Marketing Widgets and Templates",
"description": "A collection of responsive email marketing widgets and templates for Kentico EMS.",
"thumbnailUrl": "https://raw.githubusercontent.com/Kentico/devnet.kentico.com/master/marketplace/assets/generic-integration.png",
"author": "3 Degrees North",
"sourceUrl": "https://github.com/3dn-services/kentico-email-widgets",
"version": "1.0.0",
"kenticoVersions": ["12.0.0"],
"category": "other",
"tags": ["email", "template", "widget", "ems", "marketing"]
},
{
"name": "Email Widgets",
"description": "A collection of email widgets for Kentico EMS",
"thumbnailUrl": "https://raw.githubusercontent.com/Kentico/devnet.kentico.com/master/marketplace/assets/generic-integration.png",
"author": "Lukas Bajer",
"sourceUrl": "https://github.com/lukas-xb/kentico-email-builder-components",
"version": "1.0.0",
"kenticoVersions": ["12.0.45"],
"category": "other",
"tags": ["email", "widget","ems"]
},