forked from kanboard/website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugins.json
2552 lines (2552 loc) · 122 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
{
"AddressBook": {
"author": "aljawaid",
"compatible_version": ">=1.2.20",
"description": "Use the dedicated Address Book to create and manage contacts or organisations in projects and tasks. Add custom properties to standardise a deeper relationship between tasks and people or places. \n \n Contacts can be linked exclusively to tasks in a project. Users can sort their contact properties to show the first 3 properties (e.g. name, number and email) for quick reference from the task summary and the project board view.",
"download": "https://github.com/aljawaid/AddressBook/releases/download/v1.3/AddressBook-1.3.zip",
"has_hooks": true,
"has_overrides": false,
"has_schema": true,
"homepage": "https://github.com/aljawaid/AddressBook",
"is_type": "plugin",
"last_updated": "2023-07-04",
"license": "MIT",
"readme": "https://github.com/aljawaid/AddressBook/blob/master/README.md",
"remote_install": true,
"title": "AddressBook",
"version": "1.3.0"
},
"AddShortcuts": {
"author": "Tagirijus",
"compatible_version": ">=1.2.27",
"description": "A plugin, which adds certain shortcuts to Kanboard.",
"download": "https://github.com/Tagirijus/AddShortcuts/archive/refs/tags/v1.6.1.zip",
"has_hooks": true,
"has_overrides": true,
"has_schema": false,
"homepage": "https://github.com/Tagirijus/AddShortcuts",
"is_type": "plugin",
"last_updated": "2023-03-17",
"license": "MIT",
"readme": "https://github.com/Tagirijus/AddShortcuts/blob/master/README.md",
"remote_install": false,
"title": "AddShortcuts",
"version": "1.6.1"
},
"AddSpentTime": {
"author": "Tagirijus",
"compatible_version": ">=1.2.27",
"description": "Adds a button for a task to quickly add spent time with an time-input prompt.",
"download": "https://github.com/Tagirijus/AddSpentTime/releases/download/v1.6.0/AddSpentTime-1.6.0.zip",
"has_hooks": true,
"has_overrides": false,
"has_schema": false,
"homepage": "https://github.com/Tagirijus/AddSpentTime",
"is_type": "plugin",
"last_updated": "2023-05-30",
"license": "MIT",
"readme": "https://github.com/Tagirijus/AddSpentTime/blob/master/README.md",
"remote_install": false,
"title": "AddSpentTime",
"version": "1.6.0"
},
"AgileIndicators": {
"author": "aljawaid",
"compatible_version": ">=1.2.20",
"description": "Agile Indicators display the measurements for Task Priorities and Task Complexities in an easy to use general format. Task Priorities are scaled between P1 and P5 whilst Task Complexities are scored as 0-50.",
"download": "https://github.com/aljawaid/AgileIndicators/releases/download/v1.4/AgileIndicators-1.4.zip",
"has_hooks": true,
"has_overrides": false,
"has_schema": false,
"homepage": "https://github.com/aljawaid/AgileIndicators",
"is_type": "plugin",
"last_updated": "2023-08-09",
"license": "MIT",
"readme": "https://github.com/aljawaid/AgileIndicators/blob/master/README.md",
"remote_install": true,
"title": "AgileIndicators",
"version": "1.4.0"
},
"ApplicationBranding": {
"author": "aljawaid",
"compatible_version": ">=1.2.20",
"description": "This plugin will rename your installation to 'My Workspace' (or a custom name) and include matching device favicons, description and logo in the site metadata for a better user experience. \n \n Users will experience a revamped login page, security page and password reminder page, with a new Admin Dashboard showing global installation activity data with corrected page titles will give a more professional appeal across the site and when sharing links.",
"download": "https://github.com/aljawaid/ApplicationBranding/releases/download/v4.0/ApplicationBranding-4.0.zip",
"has_hooks": true,
"has_overrides": true,
"has_schema": false,
"homepage": "https://github.com/aljawaid/ApplicationBranding",
"is_type": "plugin",
"last_updated": "2023-08-20",
"license": "MIT",
"readme": "https://github.com/aljawaid/ApplicationBranding/blob/master/README.md",
"remote_install": true,
"title": "ApplicationBranding",
"version": "4.0.0"
},
"assigncategory": {
"author": "David Morlitz",
"compatible_version": ">=1.2.5",
"description": "Adds an automatic action which allows you to set the category on a card when moved to a specified column.",
"download": "https://raw.githubusercontent.com/dmorlitz/kanboard-TaskAssignCategory/master/releases/TaskAssignCategory.zip",
"has_hooks": false,
"has_overrides": false,
"has_schema": false,
"homepage": "https://github.com/dmorlitz/kanboard-TaskAssignCategory",
"is_type": "action",
"last_updated": "2017-11-15",
"license": "MIT",
"readme": "https://raw.githubusercontent.com/dmorlitz/kanboard-TaskAssignCategory/master/README.md",
"remote_install": true,
"title": "Assign category when moving cards to specified column",
"version": "1.0.0"
},
"assigndate": {
"author": "David Morlitz",
"compatible_version": ">=1.2.5",
"description": "Adds an automatic action which allows you to set a due date on undated cards to allow card to appear on calendar and ICS feed.",
"download": "https://raw.githubusercontent.com/dmorlitz/kanboard-TaskAssignDateToUndated/master/releases/TaskAssignDateToUndated.zip",
"has_hooks": false,
"has_overrides": false,
"has_schema": false,
"homepage": "https://github.com/dmorlitz/kanboard-TaskAssignDateToUndated",
"is_type": "action",
"last_updated": "2017-11-15",
"license": "MIT",
"readme": "https://raw.githubusercontent.com/dmorlitz/kanboard-TaskAssignDateToUndated/master/README.md",
"remote_install": true,
"title": "Assign date to undated cards",
"version": "1.0.0"
},
"assignduedatecolumn": {
"author": "Jacob Charles Wilson",
"compatible_version": ">=1.2.0",
"description": "Adds an automatic action which allows you to set a due date (relative to the current time in days) on a card when moved to a specified column.",
"download": "https://github.com/jclwilson/kanboard-plugin-assignduedate/archive/1.0.0.zip",
"has_hooks": false,
"has_overrides": false,
"has_schema": false,
"homepage": "https://github.com/jclwilson/kanboard-plugin-assignduedate",
"is_type": "action",
"last_updated": "2018-03-08",
"license": "MIT",
"readme": "https://raw.githubusercontent.com/jclwilson/kanboard-plugin-assignduedate/master/README.md",
"remote_install": false,
"title": "Assign due date when moving cards to specified column",
"version": "1.0.0"
},
"AttachDocumentsforViewers": {
"author": "Franklin Hernandez",
"compatible_version": ">=1.2.5",
"description": "This plugin will allow Project Viewers to attach documents to tasks.",
"download": "https://github.com/hernandezfo/AttachDocumentsforViewers/releases/download/0.0.1/AttachDocumentsforViewers-0.0.1.zip",
"has_hooks": true,
"has_overrides": false,
"has_schema": false,
"homepage": "https://github.com/hernandezfo/AttachDocumentsforViewers",
"is_type": "plugin",
"last_updated": "2018-08-15",
"license": "MIT",
"readme": "https://raw.githubusercontent.com/hernandezfo/AttachDocumentsforViewers/master/README.md",
"remote_install": true,
"title": "Attach Documents for Project Viewers",
"version": "0.0.1"
},
"autoemailactions": {
"author": "Craig Crosby",
"compatible_version": ">=1.0.46",
"description": "Add the automatic actions to send a task by email to the creator or assignee of the task. Also included are actions to send a notification via email when a task or subtask due date is impending within a duration or overdue.",
"download": "https://github.com/creecros/SendEmailCreator/releases/download/1.2.5/SendEmailCreator-1.2.6.zip",
"has_hooks": false,
"has_overrides": false,
"has_schema": false,
"homepage": "https://github.com/creecros/SendEmailCreator",
"is_type": "action",
"last_updated": "2023-10-06",
"license": "MIT",
"readme": "https://raw.githubusercontent.com/creecros/SendEmailCreator/master/README.md",
"remote_install": true,
"title": "Auto Email Extended Actions",
"version": "1.2.6"
},
"AutomaticActionUX": {
"author": "aljawaid",
"compatible_version": ">=1.2.20",
"description": "This plugin gives the Automatic Action interface a complete makeover to make it more user friendly. Particularly useful for visual learners and non-English speaking users, this plugin adds a quick glance of Actions on the board avoiding careless drag-happy mistakes.",
"download": "https://github.com/aljawaid/AutomaticActionUX/releases/download/v2.6/AutomaticActionUX-2.6.zip",
"has_hooks": true,
"has_overrides": true,
"has_schema": false,
"homepage": "https://github.com/aljawaid/AutomaticActionUX",
"is_type": "plugin",
"last_updated": "2023-05-21",
"license": "MIT",
"readme": "https://github.com/aljawaid/AutomaticActionUX/blob/master/README.md",
"remote_install": true,
"title": "AutomaticActionUX",
"version": "2.6.0"
},
"autosubtasks": {
"author": "Craig Crosby",
"compatible_version": ">=1.0.48",
"description": "Automatic Action to create subtasks when a task is created or moves column.",
"download": "https://github.com/creecros/AutoSubtasks/releases/download/2.1.0/AutoSubtasks-2.1.0.zip",
"has_hooks": false,
"has_overrides": true,
"has_schema": false,
"homepage": "https://github.com/creecros/AutoSubtasks",
"is_type": "action",
"last_updated": "2019-02-13",
"license": "MIT",
"readme": "https://raw.githubusercontent.com/creecros/AutoSubtasks/master/README.md",
"remote_install": true,
"title": "Auto Subtask Creation",
"version": "2.1.0"
},
"backlog": {
"author": "vistree + creecros",
"compatible_version": ">=1.0.45",
"description": "Plugin to add a backlog column with full height to the project board.",
"download": "https://github.com/vistree/kanboard-backlog/releases/download/1.0.3/Backlog-1.0.3.zip",
"has_hooks": true,
"has_overrides": true,
"has_schema": false,
"homepage": "https://github.com/vistree/kanboard-backlog",
"is_type": "plugin",
"last_updated": "2019-04-02",
"license": "GPL-3.0",
"readme": "https://raw.githubusercontent.com/vistree/kanboard-backlog/master/README.md",
"remote_install": true,
"title": "Backlog",
"version": "1.0.3"
},
"Bak2topbotm": {
"author": "Craig Crosby",
"compatible_version": ">=1.0.43",
"description": "Back to Top and Bottom buttons for the task summary.",
"download": "https://github.com/creecros/Bak2topbotm/releases/download/0.0.3/Bak2topbotm-0.0.3.zip",
"has_hooks": false,
"has_overrides": false,
"has_schema": false,
"homepage": "https://github.com/creecros/Bak2topbotm",
"is_type": "plugin",
"last_updated": "2018-10-16",
"license": "MIT",
"readme": "https://raw.githubusercontent.com/creecros/Bak2topbotm/master/README.md",
"remote_install": true,
"title": "Bak2topbotm",
"version": "0.0.3"
},
"bigboard": {
"author": "BlueTeck, Thomas Stinner, Pierre Cadeot, PapeCoding, Chaosmeister, Jieiku",
"compatible_version": ">=1.2.12",
"description": "An interface that can display multiple projects.",
"download": "https://github.com/BlueTeck/kanboard_plugin_bigboard/releases/download/1.5.1/Bigboard-1.5.1.zip",
"has_hooks": true,
"has_overrides": true,
"has_schema": true,
"homepage": "https://github.com/BlueTeck/kanboard_plugin_bigboard",
"is_type": "plugin",
"last_updated": "2021-12-13",
"license": "MIT",
"readme": "https://raw.githubusercontent.com/BlueTeck/kanboard_plugin_bigboard/master/README.md",
"remote_install": true,
"title": "Bigboard",
"version": "1.5.1"
},
"bitbucket-webhook": {
"author": "Frédéric Guillot",
"compatible_version": ">=1.0.37",
"description": "Bind [Bitbucket](https://bitbucket.org) webhook events to Kanboard Automatic Actions. \n \n ⚠️ This plugin connects to a third party service.",
"download": "https://github.com/kanboard/plugin-bitbucket-webhook/releases/download/v1.0.5/BitbucketWebhook-1.0.5.zip",
"has_hooks": true,
"has_overrides": false,
"has_schema": false,
"homepage": "https://github.com/kanboard/plugin-bitbucket-webhook",
"is_type": "connector",
"last_updated": "2018-04-13",
"license": "MIT",
"readme": "https://raw.githubusercontent.com/kanboard/plugin-bitbucket-webhook/master/README.md",
"remote_install": true,
"title": "Bitbucket Webhook",
"version": "1.0.5"
},
"Boardcustomizer": {
"author": "BlueTeck, Craig Crosby, Jake G",
"compatible_version": ">=1.2.10",
"description": "Customize the board and card style per user.",
"download": "https://github.com/BlueTeck/kanboard_plugin_boardcustomizer/releases/download/v1.1.0/Boardcustomizer-1.1.0.zip",
"has_hooks": true,
"has_overrides": true,
"has_schema": false,
"homepage": "https://github.com/BlueTeck/kanboard_plugin_boardcustomizer",
"is_type": "plugin",
"last_updated": "2022-06-30",
"license": "MIT",
"readme": "https://raw.githubusercontent.com/BlueTeck/kanboard_plugin_boardcustomizer/master/README.md",
"remote_install": true,
"title": "Boardcustomizer",
"version": "1.1.0"
},
"Broadcast": {
"author": "Frédéric Guillot, Balázs Úr, Rainer Bielefeld",
"compatible_version": ">=1.2.3",
"description": "Broadcast Messages by WEB Popup or E-Mail",
"download": "https://github.com/RainerBielefeld/KANBOARD-plugin-broadcast/releases/download/1.1.1/Broadcast-1.1.1.zip",
"has_hooks": true,
"has_overrides": true,
"has_schema": true,
"homepage": "https://github.com/RainerBielefeld/KANBOARD-plugin-broadcast/",
"is_type": "plugin",
"last_updated": "2024-11-22",
"license": "MIT",
"readme": "https://github.com/RainerBielefeld/KANBOARD-plugin-broadcast/blob/master/README.md",
"remote_install": true,
"title": "Broadcast",
"version": "1.1.1"
},
"Budget": {
"author": "Frédéric Guillot",
"compatible_version": ">=1.0.37",
"description": "Add a budget section for projects and expense reports based on user hourly rates.",
"download": "https://github.com/kanboard/plugin-budget/releases/download/v1.0.9/Budget-1.0.9.zip",
"has_hooks": true,
"has_overrides": false,
"has_schema": true,
"homepage": "https://github.com/kanboard/plugin-budget",
"is_type": "plugin",
"last_updated": "2017-01-04",
"license": "MIT",
"readme": "https://github.com/kanboard/plugin-budget/blob/master/README.md",
"remote_install": false,
"title": "Budget",
"version": "1.0.9"
},
"Calendar": {
"author": "Frédéric Guillot, Alfred Bühler",
"compatible_version": ">=1.2.13",
"description": "Embedded calendar for Kanboard.",
"download": "https://codeberg.org/api/packages/abu/generic/Calendar/1.5.0/Calendar-1.5.0.zip",
"has_hooks": true,
"has_overrides": false,
"has_schema": false,
"homepage": "https://codeberg.org/abu/Calendar/",
"is_type": "plugin",
"last_updated": "2023-08-08",
"license": "MIT",
"readme": "https://codeberg.org/abu/Calendar/src/branch/master/README.md",
"remote_install": true,
"title": "Calendar",
"version": "1.5.0"
},
"cardpushdate": {
"author": "David Morlitz",
"compatible_version": ">=1.2.5",
"description": "Place easy actions on task cards, searches and the dashboard - including updating the card date, show comments, edit, close and moving the card.",
"download": "https://raw.githubusercontent.com/dmorlitz/kanboard-CardPushDate/master/releases/CardPushDate.zip",
"has_hooks": true,
"has_overrides": true,
"has_schema": false,
"homepage": "https://github.com/dmorlitz/kanboard-CardPushDate",
"is_type": "plugin",
"last_updated": "2019-12-13",
"license": "MIT",
"readme": "https://raw.githubusercontent.com/dmorlitz/kanboard-CardPushDate/master/README.md",
"remote_install": true,
"title": "Card Push Date and other actions",
"version": "1.0"
},
"cas-auth": {
"author": "Jamaïca Servier",
"compatible_version": ">=1.2.5",
"description": "Use CAS as an authentication provider. \n \n ⚠️ This plugin may require extra configuration to your application.",
"download": "https://github.com/DSIEtudes/plugin-cas-auth/releases/download/1.0.0/CASAuth-1.0.0.zip",
"has_hooks": true,
"has_overrides": false,
"has_schema": false,
"homepage": "https://github.com/DSIEtudes/plugin-cas-auth",
"is_type": "connector",
"last_updated": "2019-02-28",
"license": "CC BY-NA-SA 4.0",
"readme": "https://raw.githubusercontent.com/DSIEtudes/plugin-cas-auth/master/README.md",
"remote_install": true,
"title": "CAS Authentication",
"version": "1.0.0"
},
"chat": {
"author": "Frédéric Guillot",
"compatible_version": ">=1.2.3",
"description": "Minimalist chat for small teams.",
"download": "https://github.com/kanboard/plugin-chat/releases/download/v1.0.3/Chat-1.0.3.zip",
"has_hooks": true,
"has_overrides": false,
"has_schema": true,
"homepage": "https://github.com/kanboard/plugin-chat",
"is_type": "plugin",
"last_updated": "2018-04-19",
"license": "MIT",
"readme": "https://raw.githubusercontent.com/kanboard/plugin-chat/master/README.md",
"remote_install": true,
"title": "Chat",
"version": "1.0.3"
},
"ClearDueDateTaskNotMovedColumn": {
"author": "Manfred Hoffmann",
"compatible_version": ">=1.2.19",
"description": "Adds an Automatic Action that allows you to clear the due date of tasks in a specific column which haven't been moved during a given period.",
"download": "https://github.com/manne65-hd/kanboard-ClearDueDateTaskNotMovedColumn/archive/refs/tags/v0.8.0.zip",
"has_hooks": false,
"has_overrides": false,
"has_schema": false,
"homepage": "https://github.com/manne65-hd/kanboard-ClearDueDateTaskNotMovedColumn",
"is_type": "action",
"last_updated": "2022-07-24",
"license": "MIT",
"readme": "https://github.com/manne65-hd/kanboard-ClearDueDateTaskNotMovedColumn/blob/main/README.md",
"remote_install": false,
"title": "ClearDueDateTaskNotMovedColumn",
"version": "0.8.0"
},
"ColorManager": {
"author": "aljawaid",
"compatible_version": ">=1.2.20",
"description": "Use a new way to utilise colors to their full potential in Kanboard. Choose from 3 color palettes or create your own. Across all palettes, choose from over 85 colors to match your workflow across the entire interface.",
"download": "https://github.com/aljawaid/ColorManager/releases/download/v3.7/ColorManager-3.7.zip",
"has_hooks": false,
"has_overrides": false,
"has_schema": false,
"homepage": "https://github.com/aljawaid/ColorManager",
"is_type": "plugin",
"last_updated": "2023-05-21",
"license": "MIT",
"readme": "https://github.com/aljawaid/ColorManager/blob/master/README.md",
"remote_install": true,
"title": "ColorManager",
"version": "3.7.0"
},
"comment-tooltip": {
"author": "Enrico Frigo",
"compatible_version": "<=1.2.3",
"description": "Show a task's comments as a tooltip as in older kanboard version.",
"download": "https://github.com/enricofrigo/kanboard/raw/master/plugin-comment-tooltip/releases/download/v1.0.0/CommentTooltip.zip",
"has_hooks": true,
"has_overrides": false,
"has_schema": false,
"homepage": "https://github.com/enricofrigo/kanboard/tree/master/plugin-comment-tooltip",
"is_type": "plugin",
"last_updated": "2018-05-25",
"license": "MIT",
"readme": "https://github.com/enricofrigo/kanboard/blob/master/plugin-comment-tooltip/CommentTooltip/README.md",
"remote_install": true,
"title": "Comment Tooltip",
"version": "1.0.1"
},
"CommentActions": {
"author": "Andrei Volgin, ipunkt Business Solutions",
"compatible_version": ">=1.2.5",
"description": "This plugin gives the ability to assign the actual task (directly in the comment-create section) to one of the users in project.",
"download": "https://github.com/ipunkt/KanboardCommentActions/releases/download/v1.0.1/KanboardCommentActions-1.0.1.zip",
"has_hooks": false,
"has_overrides": true,
"has_schema": false,
"homepage": "https://github.com/ipunkt/KanboardCommentActions",
"is_type": "plugin",
"last_updated": "2019-10-29",
"license": "MIT",
"readme": "https://github.com/ipunkt/KanboardCommentActions/blob/master/README.md",
"remote_install": true,
"title": "Comment Actions",
"version": "1.0.1"
},
"commentonly": {
"author": "Craig Crosby",
"compatible_version": ">=1.0.46",
"description": "Add commenting abilities for Project Viewers.",
"download": "https://github.com/creecros/opencomment/releases/download/0.0.2/CommentOnly-0.0.2.zip",
"has_hooks": true,
"has_overrides": false,
"has_schema": false,
"homepage": "https://github.com/creecros/opencomment",
"is_type": "plugin",
"last_updated": "2018-05-18",
"license": "MIT",
"readme": "https://raw.githubusercontent.com/creecros/opencomment/master/README.md",
"remote_install": true,
"title": "Comment Only Restrictions for Project Viewers",
"version": "0.0.2"
},
"CompletedComplexity": {
"author": "Andrew Cziryak",
"compatible_version": ">=1.2.13",
"description": "Add tracking of Completed Complexity of tasks over dates in a date range. This chart shows the completed complexity (throughput) of tasks moved into the right-most column over the time interval.",
"download": "https://gitlab.com/smacz/kanboard-completedcomplexity/uploads/628495306175fc1ec0764d64993d7c0e/CompletedComplexity-0.3.0.zip",
"has_hooks": true,
"has_overrides": false,
"has_schema": false,
"homepage": "https://gitlab.com/smacz/kanboard-completedcomplexity",
"is_type": "multi",
"last_updated": "2021-08-27",
"license": "MIT",
"readme": "https://gitlab.com/smacz/kanboard-completedcomplexity",
"remote_install": true,
"title": "Completed Complexity",
"version": "0.3.0"
},
"ContentCleaner": {
"author": "aljawaid",
"compatible_version": ">=1.2.20",
"description": "This tool allows admins to cleanup their Kanboard database by selectively deleting useless data saved by Kanboard and leftover data after uninstalling plugins. Keep your database clean and free from cluttered and expired data using cleaning jobs to solve specific application issues.",
"download": "https://github.com/aljawaid/ContentCleaner/releases/download/v1.0/ContentCleaner-1.0.zip",
"has_hooks": true,
"has_overrides": false,
"has_schema": false,
"homepage": "https://github.com/aljawaid/ContentCleaner",
"is_type": "plugin",
"last_updated": "2023-08-22",
"license": "MIT",
"readme": "https://github.com/aljawaid/ContentCleaner/blob/master/README.md",
"remote_install": true,
"title": "ContentCleaner",
"version": "1.0.0"
},
"CostControl": {
"author": "aljawaid",
"compatible_version": ">=1.2.20",
"description": "Use the new Cost Control section to enable currencies and budgeting in Kanboard. Get live currency rates automatically for over 120 currencies allowing users to compare with manually saved rates. Using this plugin enables projects to have an associated cost element. \n \n ⚠️ This plugin _replaces and extends_ the features from the original [Budget](https://github.com/kanboard/plugin-budget) plugin.",
"download": "https://github.com/aljawaid/CostControl/releases/download/v1.2/CostControl-1.2.zip",
"has_hooks": true,
"has_overrides": true,
"has_schema": true,
"homepage": "https://github.com/aljawaid/CostControl",
"is_type": "plugin",
"last_updated": "2023-08-21",
"license": "MIT",
"readme": "https://github.com/aljawaid/CostControl/blob/master/README.md",
"remote_install": true,
"title": "CostControl",
"version": "1.2.0"
},
"coverimage": {
"author": "BlueTeck + creecros",
"compatible_version": ">=1.2.14",
"description": "This plugin adds a cover image function to tasks on the board and allows you to set a project image to use as a logo for projects.",
"download": "https://github.com/BlueTeck/kanboard_plugin_coverimage/releases/download/1.2.14.1/Coverimage-1.2.14.1.zip",
"has_hooks": true,
"has_overrides": true,
"has_schema": false,
"homepage": "https://github.com/BlueTeck/kanboard_plugin_coverimage",
"is_type": "plugin",
"last_updated": "2020-04-20",
"license": "MIT",
"readme": "https://raw.githubusercontent.com/BlueTeck/kanboard_plugin_coverimage/master/README.md",
"remote_install": true,
"title": "Coverimage",
"version": "1.2.14.1"
},
"creecros_filter_pack": {
"author": "Craig Crosby",
"compatible_version": ">=1.0.42",
"description": "Creecros Filter Pack. Request new filters on issue board.",
"download": "https://github.com/creecros/Creecros_Filter_Pack/releases/download/1.3.1/Creecros_Filter_Pack-1.3.1.zip",
"has_hooks": false,
"has_overrides": false,
"has_schema": false,
"homepage": "https://github.com/creecros/Creecros_Filter_Pack",
"is_type": "plugin",
"last_updated": "2020-12-09",
"license": "MIT",
"readme": "https://raw.githubusercontent.com/creecros/Creecros_Filter_Pack/master/README.md",
"remote_install": true,
"title": "Creecros_Filter_Pack",
"version": "1.3.1"
},
"customizer": {
"author": "Craig Crosby",
"compatible_version": ">=1.0.42",
"description": "A new GUI to add logos, themes, favicons and much more customization.",
"download": "https://github.com/creecros/Customizer/releases/download/1.14.2/Customizer-1.14.2.zip",
"has_hooks": true,
"has_overrides": true,
"has_schema": false,
"homepage": "https://github.com/creecros/Customizer",
"is_type": "multi",
"last_updated": "2023-05-25",
"license": "MIT",
"readme": "https://github.com/creecros/Customizer/blob/master/README.md",
"remote_install": true,
"title": "Customizer",
"version": "1.14.2"
},
"CustomUserCSS": {
"author": "Sebastian Pape",
"compatible_version": ">=1.2.13",
"description": "Adds a setting for custom CSS per user.",
"download": "https://github.com/PapeCoding/kanboard-CustomUserCSS/releases/download/v1.0.0/CustomUserCSS.zip",
"has_hooks": true,
"has_overrides": false,
"has_schema": false,
"homepage": "https://github.com/PapeCoding/kanboard-CustomUserCSS",
"is_type": "plugin",
"last_updated": "2020-04-18",
"license": "MIT",
"readme": "https://github.com/PapeCoding/kanboard-CustomUserCSS/blob/master/README.md",
"remote_install": true,
"title": "CustomUserCSS",
"version": "1.0.0"
},
"DashboardTaskSorting": {
"author": "Tagirijus",
"compatible_version": ">=1.2.26",
"description": "DashboardTaskSorting changes the default sorting logic for tasks on the main dashboard for both the overview and the tasks site to: \n 1. Due Date ASC \n 2. Priority DESC",
"download": "https://github.com/Tagirijus/DashboardTaskSorting/archive/refs/tags/v1.4.0.zip",
"has_hooks": false,
"has_overrides": true,
"has_schema": false,
"homepage": "https://github.com/Tagirijus/DashboardTaskSorting",
"is_type": "plugin",
"last_updated": "2023-03-17",
"license": "MIT",
"readme": "https://github.com/Tagirijus/DashboardTaskSorting/blob/master/README.md",
"remote_install": false,
"title": "DashboardTaskSorting",
"version": "1.4.0"
},
"db-storage": {
"author": "Frédéric Guillot",
"compatible_version": ">=1.0.32",
"description": "This plugin stores uploaded files into the database instead of using the local filesystem.",
"download": "https://github.com/kanboard/plugin-database-storage/releases/download/v1.0.2/DatabaseStorage-1.0.2.zip",
"has_hooks": false,
"has_overrides": false,
"has_schema": true,
"homepage": "https://github.com/kanboard/plugin-database-storage",
"is_type": "plugin",
"last_updated": "2020-06-13",
"license": "MIT",
"readme": "https://raw.githubusercontent.com/kanboard/plugin-database-storage/master/README.md",
"remote_install": false,
"title": "Database Storage",
"version": "1.0.2"
},
"DefinitionOfDone": {
"author": "Tomas Dittmann",
"compatible_version": ">=1.2.32",
"description": "This plugin adds a simple checklist to the taskview, similar to subtasks. Each entry consists of a title, a description and a toggleable '**done**' field. \n \n ⚠️ Compatible with [MarkdownPlus](https://github.com/creecros/MarkdownPlus/releases)",
"download": "https://github.com/Chaosmeister/DefinitionOfDone/releases/download/1.3.0/DefinitionOfDone.zip",
"has_hooks": true,
"has_overrides": true,
"has_schema": true,
"homepage": "https://github.com/Chaosmeister/DefinitionOfDone",
"is_type": "plugin",
"last_updated": "2023-08-29",
"license": "Unlicense",
"readme": "https://github.com/Chaosmeister/DefinitionOfDone/blob/main/README.md",
"remote_install": true,
"title": "Definition of Done",
"version": "1.3.0"
},
"duedate": {
"author": "JustFxDev (Fx)",
"compatible_version": ">=1.2.5",
"description": "Switch sorting cards in all columns by card due date, last modification of tasks or default view.",
"download": "https://github.com/JustFxDev/kanboard-duedate/releases/download/v1.2.1/DueDate_v1.2.1.zip",
"has_hooks": true,
"has_overrides": true,
"has_schema": false,
"homepage": "https://github.com/JustFxDev/kanboard-duedate",
"is_type": "plugin",
"last_updated": "2023-03-29",
"license": "MIT",
"readme": "https://github.com/JustFxDev/kanboard-duedate/blob/master/README.md",
"remote_install": true,
"title": "Due Date sorting",
"version": "1.2.1"
},
"EAR": {
"author": "Tomas Dittmann",
"compatible_version": ">=1.2.23",
"description": "Add a button on attachments that allows you to rename them.",
"download": "https://github.com/Chaosmeister/EAR/releases/download/1.1.2/EAR.zip",
"has_hooks": true,
"has_overrides": false,
"has_schema": false,
"homepage": "https://github.com/Chaosmeister/EAR",
"is_type": "plugin",
"last_updated": "2022-11-30",
"license": "Unlicense",
"readme": "https://github.com/Chaosmeister/EAR/blob/main/README.md",
"remote_install": true,
"title": "Enable attachment renaming",
"version": "1.1.2"
},
"EmbedAnything": {
"author": "greyaz",
"compatible_version": ">=1.2.8",
"description": "Embed anything into Kanboard. This plugin utilizes HTML iframes and allows you to embed any web content into your project as a standalone page.",
"download": "https://github.com/greyaz/EmbedAnything/releases/download/0.3.0/EmbedAnything.zip",
"has_hooks": true,
"has_overrides": false,
"has_schema": false,
"homepage": "https://github.com/greyaz/EmbedAnything",
"is_type": "plugin",
"last_updated": "2022-12-14",
"license": "MIT",
"readme": "https://raw.githubusercontent.com/greyaz/EmbedAnything/main/README.md",
"remote_install": true,
"title": "EmbedAnything",
"version": "0.3.0"
},
"encryptedcontent": {
"author": "Valentino Pesce",
"compatible_version": ">=1.0.48",
"description": "This plugin allows the insertion of text content encrypted in the kanboard database, with the use of random keys.",
"download": "https://github.com/kenlog/EncryptedContent/releases/download/v.1.0.1/EncryptedContent-v.1.0.1.zip",
"has_hooks": true,
"has_overrides": false,
"has_schema": true,
"homepage": "https://github.com/kenlog/EncryptedContent",
"is_type": "plugin",
"last_updated": "2019-01-26",
"license": "MIT",
"readme": "https://github.com/kenlog/EncryptedContent/blob/master/README.md",
"remote_install": true,
"title": "EncryptedContent",
"version": "1.0.1"
},
"essential": {
"author": "Valentino Pesce",
"compatible_version": ">=1.0.48",
"description": "Essential theme returns a new style to your Kanboard.",
"download": "https://github.com/kenlog/Essential/releases/download/v1.1.3/Essential-v1.1.3.zip",
"has_hooks": false,
"has_overrides": true,
"has_schema": false,
"homepage": "https://github.com/kenlog/Essential",
"is_type": "theme",
"last_updated": "2020-01-25",
"license": "MIT",
"readme": "https://github.com/kenlog/Essential/blob/master/README.md",
"remote_install": true,
"title": "Essential",
"version": "1.1.3"
},
"EssentialTheme": {
"author": "Valentino Pesce, Alfred Bühler",
"compatible_version": ">=1.0.48",
"description": "A modern theme for Kanboard, returning a new style to your instance. \n \n ⚠️ Replaces [Essential](https://github.com/kenlog/Essential) theme.",
"download": "https://codeberg.org/api/packages/abu/generic/EssentialTheme/1.1.4/EssentialTheme-1.1.4.zip",
"has_hooks": false,
"has_overrides": true,
"has_schema": false,
"homepage": "https://codeberg.org/abu/EssentialTheme/",
"is_type": "theme",
"last_updated": "2023-08-10",
"license": "MIT",
"readme": "https://codeberg.org/abu/EssentialTheme/src/branch/master/README.md",
"remote_install": true,
"title": "EssentialTheme",
"version": "1.1.4"
},
"extendedMail": {
"author": "Rens Sikma",
"compatible_version": ">=1.2.2",
"description": "Adds extra functionality to Kanboard comment by email.",
"download": "https://github.com/atcomputing/kanboard-ExtendedMail/releases/download/v0.8/ExtendedMail-0.8.0.zip",
"has_hooks": true,
"has_overrides": true,
"has_schema": false,
"homepage": "https://github.com/atcomputing/kanboard-ExtendedMail",
"is_type": "plugin",
"last_updated": "2018-04-26",
"license": "MIT",
"readme": "https://github.com/atcomputing/kanboard-ExtendedMail/raw/master/README.md",
"remote_install": true,
"title": "extendedMail",
"version": "0.8.0"
},
"FontSwitcher": {
"author": "aljawaid",
"compatible_version": ">=1.2.20",
"description": "Choose a new font style from a variety of self-hosted fonts replacing the default 'Helvetica Neue' (Mac), and 'Arial' (Windows) fonts to a different typeface giving your application a fresh new look. \n \n Improve readability and reduce eye strain by choosing from different styles of sans-serif fonts or select an article-type serif type or even a code-type monospace style. Font styles are applied instantly across the site for all users.",
"download": "https://github.com/aljawaid/FontSwitcher/releases/download/v1.6/FontSwitcher-1.6.zip",
"has_hooks": true,
"has_overrides": false,
"has_schema": false,
"homepage": "https://github.com/aljawaid/FontSwitcher",
"is_type": "theme",
"last_updated": "2023-09-04",
"license": "MIT",
"readme": "https://github.com/aljawaid/FontSwitcher/blob/master/README.md",
"remote_install": true,
"title": "FontSwitcher",
"version": "1.6.0"
},
"gantt": {
"author": "Frédéric Guillot",
"compatible_version": ">=1.2.15",
"description": "Gantt charts for tasks and projects.",
"download": "https://github.com/kanboard/plugin-gantt/releases/download/v1.0.6/Gantt-1.0.6.zip",
"has_hooks": true,
"has_overrides": false,
"has_schema": false,
"homepage": "https://github.com/kanboard/plugin-gantt",
"is_type": "plugin",
"last_updated": "2020-06-19",
"license": "MIT",
"readme": "https://raw.githubusercontent.com/kanboard/plugin-gantt/master/README.md",
"remote_install": true,
"title": "Gantt",
"version": "1.0.6"
},
"gitea-webhook": {
"author": "Chris Metz",
"compatible_version": ">=1.0.37",
"description": "Connect [Gitea](https://gitea.io/en-us/) webhook events to Kanboard Automatic Actions. \n \n ⚠️ This plugin connects to a third party service.",
"download": "https://github.com/chriswep/plugin-gitea-webhook/releases/download/v1.1.2/GiteaWebhook-1.1.2.zip",
"has_hooks": true,
"has_overrides": false,
"has_schema": false,
"homepage": "https://github.com/chriswep/plugin-gitea-webhook",
"is_type": "connector",
"last_updated": "2020-12-17",
"license": "MIT",
"readme": "https://raw.githubusercontent.com/chriswep/plugin-gitea-webhook/master/README.md",
"remote_install": true,
"title": "Gitea Webhook",
"version": "1.1.2"
},
"github-auth": {
"author": "Frédéric Guillot",
"compatible_version": ">=1.0.37",
"description": "Use [GitHub](https://github.com) as an authentication provider. \n \n ⚠️ This plugin connects to a third party service.",
"download": "https://github.com/kanboard/plugin-github-auth/releases/download/v1.0.3/GithubAuth-1.0.3.zip",
"has_hooks": true,
"has_overrides": false,
"has_schema": false,
"homepage": "https://github.com/kanboard/plugin-github-auth",
"is_type": "connector",
"last_updated": "2017-01-15",
"license": "MIT",
"readme": "https://raw.githubusercontent.com/kanboard/plugin-github-auth/master/README.md",
"remote_install": true,
"title": "Github Authentication",
"version": "1.0.3"
},
"github-release-notifier": {
"author": "Shaun Fong",
"compatible_version": ">=1.0.37",
"description": "Kanboard Plugin to a create task when [GitHub](https://github.com) release. \n \n ⚠️ Requires GitHub webhooks to be configured for a project. \n \n ⚠️ This plugin connects to a third party service.",
"download": "https://github.com/Shaun-Fong/github-release-notifier/releases/download/1.1.0/GithubReleaseNotifier-1.1.0.zip",
"has_hooks": true,
"has_overrides": false,
"has_schema": false,
"homepage": "https://github.com/Shaun-Fong/github-release-notifier",
"is_type": "connector",
"last_updated": "2022-04-19",
"license": "MIT",
"readme": "https://raw.githubusercontent.com/Shaun-Fong/github-release-notifier/main/README.md",
"remote_install": true,
"title": "Github Release Notifier",
"version": "1.1.0"
},
"github-webhook": {
"author": "Frédéric Guillot",
"compatible_version": ">=1.0.37",
"description": "Connect [GitHub](https://github.com) webhook events to Kanboard Automatic Actions. \n \n ⚠️ This plugin connects to a third party service.",
"download": "https://github.com/kanboard/plugin-github-webhook/releases/download/v1.0.6/GithubWebhook-1.0.6.zip",
"has_hooks": true,
"has_overrides": false,
"has_schema": false,
"homepage": "https://github.com/kanboard/plugin-github-webhook",
"is_type": "connector",
"last_updated": "2018-04-13",
"license": "MIT",
"readme": "https://raw.githubusercontent.com/kanboard/plugin-github-webhook/master/README.md",
"remote_install": true,
"title": "Github Webhook",
"version": "1.0.6"
},
"gitlab-auth": {
"author": "Frédéric Guillot",
"compatible_version": ">=1.0.37",
"description": "Use [GitLab](https://gitlab.com) as an authentication provider. \n \n ⚠️ This plugin connects to a third party service.",
"download": "https://github.com/kanboard/plugin-gitlab-auth/releases/download/v1.0.5/GitlabAuth-1.0.5.zip",
"has_hooks": true,
"has_overrides": false,
"has_schema": false,
"homepage": "https://github.com/kanboard/plugin-gitlab-auth",
"is_type": "connector",
"last_updated": "2018-04-02",
"license": "MIT",
"readme": "https://raw.githubusercontent.com/kanboard/plugin-gitlab-auth/master/README.md",
"remote_install": true,
"title": "Gitlab Authentication",
"version": "1.0.5"
},
"gitlab-webhook": {
"author": "Frédéric Guillot",
"compatible_version": ">=1.0.37",
"description": "Connect [GitLab](https://gitlab.com) webhook events to Kanboard Automatic Actions. \n \n ⚠️ This plugin connects to a third party service.",
"download": "https://github.com/kanboard/plugin-gitlab-webhook/releases/download/v1.0.6/GitlabWebhook-1.0.6.zip",
"has_hooks": true,
"has_overrides": false,
"has_schema": false,
"homepage": "https://github.com/kanboard/plugin-gitlab-webhook",
"is_type": "connector",
"last_updated": "2018-04-13",
"license": "MIT",
"readme": "https://raw.githubusercontent.com/kanboard/plugin-gitlab-webhook/master/README.md",
"remote_install": true,
"title": "Gitlab Webhook",
"version": "1.0.6"
},
"Glancer": {
"author": "aljawaid",
"compatible_version": ">=1.2.20",
"description": "Following the 'Getting Things Done' methodology, productive users can glance through their workflow easily. \n \n Quickly jump to a project, task or comment through a bar at the bottom of the screen. Use the new copy to clipboard feature in different formats coupled with the new global shortcut icon to realise why Glancer was built for power users.",
"download": "https://github.com/aljawaid/Glancer/releases/download/v2.7.1/Glancer-2.7.1.zip",
"has_hooks": true,
"has_overrides": false,
"has_schema": false,
"homepage": "https://github.com/aljawaid/Glancer",
"is_type": "plugin",
"last_updated": "2023-08-22",
"license": "MIT",
"readme": "https://github.com/aljawaid/Glancer/blob/master/README.md",
"remote_install": true,
"title": "Glancer",
"version": "2.7.1"
},
"global-search": {
"author": "Valentino Pesce",
"compatible_version": ">=1.2.32",
"description": "The Global Search Plugin adds a powerful global search functionality to Kanboard, allowing users to search for tasks, comments, and projects across all available projects they have access to. The search results are filtered by permissions, ensuring that users only see the content they are authorized to view. The search results can also be filtered to display only tasks, comments, or projects.",
"download": "https://github.com/kenlog/global-search-kanboard/releases/download/v1.0.5/Globalsearch.zip",
"has_hooks": true,
"has_overrides": false,
"has_schema": false,
"homepage": "https://github.com/kenlog/global-search-kanboard",
"is_type": "plugin",
"last_updated": "2024-09-24",
"license": "MIT",
"readme": "https://raw.githubusercontent.com/kenlog/global-search-kanboard/refs/heads/master/README.md",
"remote_install": true,
"title": "Global Search",
"version": "1.0.5"
},
"gogs-webhook": {
"author": "Frédéric Guillot",
"compatible_version": ">=1.0.37",
"description": "Connect [Gogs](https://gogs.io) webhook events to Kanboard Automatic Actions. \n \n ⚠️ This plugin connects to a third party service.",
"download": "https://github.com/kanboard/plugin-gogs-webhook/releases/download/v1.0.5/GogsWebhook-1.0.5.zip",
"has_hooks": true,
"has_overrides": false,
"has_schema": false,
"homepage": "https://github.com/kanboard/plugin-gogs-webhook",
"is_type": "connector",
"last_updated": "2018-04-13",
"license": "MIT",
"readme": "https://raw.githubusercontent.com/kanboard/plugin-gogs-webhook/master/README.md",
"remote_install": true,
"title": "Gogs Webhook",
"version": "1.0.5"
},
"google-auth": {
"author": "Frédéric Guillot",
"compatible_version": ">=1.0.37",
"description": "Use [Google](https://github.com/google/google-authenticator/wiki) as an authentication provider. \n \n ⚠️ This plugin connects to a third party service.",
"download": "https://github.com/kanboard/plugin-google-auth/releases/download/v1.0.8/GoogleAuth-1.0.8.zip",
"has_hooks": true,
"has_overrides": false,
"has_schema": false,
"homepage": "https://github.com/kanboard/plugin-google-auth",
"is_type": "connector",
"last_updated": "2019-08-30",
"license": "MIT",
"readme": "https://raw.githubusercontent.com/kanboard/plugin-google-auth/master/README.md",
"remote_install": true,
"title": "Google Authentication",
"version": "1.0.8"
},
"GrabScroll": {
"author": "Ramón Cahenzli",
"compatible_version": ">=1.2.10",
"description": "Click and drag anywhere on your Kanboard to scroll horizontally.",
"download": "https://github.com/psy-q/kanboard-plugin-grabscroll/archive/0.2.1.tar.gz",
"has_hooks": true,
"has_overrides": false,
"has_schema": false,
"homepage": "https://github.com/psy-q/kanboard-plugin-grabscroll",
"is_type": "plugin",
"last_updated": "2021-03-05",
"license": "MIT",
"readme": "https://github.com/psy-q/kanboard-plugin-grabscroll/blob/master/README.md",
"remote_install": false,
"title": "GrabScroll",
"version": "0.2.1"
},
"Greenwing": {
"author": "Confexion",
"compatible_version": ">=1.2.9",
"description": "Greenwing is a Kanboard beautify theme with a modern design.",
"download": "https://github.com/Confexion/Greenwing/releases/download/1.3.2/Greenwing.zip",
"has_hooks": false,
"has_overrides": true,
"has_schema": false,
"homepage": "https://github.com/Confexion/Greenwing",
"is_type": "theme",
"last_updated": "2021-07-26",
"license": "MIT",
"readme": "https://github.com/Confexion/Greenwing/blob/master/README.md",