forked from kanboard/website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugins.json
986 lines (986 loc) · 49.6 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
{
"s3": {
"title": "Amazon S3 Storage",
"version": "1.0.5",
"author": "Frédéric Guillot",
"license": "MIT",
"description": "This plugin stores uploaded files to Amazon S3 instead of storing files on the local file system.",
"homepage": "https://github.com/kanboard/plugin-s3",
"readme": "https://raw.githubusercontent.com/kanboard/plugin-s3/master/README.md",
"download": "https://github.com/kanboard/plugin-s3/releases/download/v1.0.5/S3-1.0.5.zip",
"remote_install": true,
"compatible_version": ">=1.0.37"
},
"assigncategory": {
"title": "Assign category when moving cards to specified column",
"version": "1.0.0",
"author": "David Morlitz",
"license": "MIT",
"description": "Adds an automatic action which allows you to set the category on a card when moved to a specified column",
"homepage": "https://github.com/dmorlitz/kanboard-TaskAssignCategory",
"readme": "https://raw.githubusercontent.com/dmorlitz/kanboard-TaskAssignCategory/master/README.md",
"download": "https://raw.githubusercontent.com/dmorlitz/kanboard-TaskAssignCategory/master/releases/TaskAssignCategory.zip",
"remote_install": true,
"compatible_version": ">=1.2.5"
},
"assigndate": {
"title": "Assign date to undated cards",
"version": "1.0.0",
"author": "David Morlitz",
"license": "MIT",
"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",
"homepage": "https://github.com/dmorlitz/kanboard-TaskAssignDateToUndated",
"readme": "https://raw.githubusercontent.com/dmorlitz/kanboard-TaskAssignDateToUndated/master/README.md",
"download": "https://raw.githubusercontent.com/dmorlitz/kanboard-TaskAssignDateToUndated/master/releases/TaskAssignDateToUndated.zip",
"remote_install": true,
"compatible_version": ">=1.2.5"
},
"assignduedatecolumn": {
"title": "Assign due date when moving cards to specified column",
"version": "1.0.0",
"author": "Jacob Charles Wilson",
"license": "MIT",
"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",
"homepage": "https://github.com/jclwilson/kanboard-plugin-assignduedate",
"readme": "https://raw.githubusercontent.com/jclwilson/kanboard-plugin-assignduedate/master/README.md",
"download": "https://github.com/jclwilson/kanboard-plugin-assignduedate/archive/1.0.0.zip",
"remote_install": false,
"compatible_version": ">=1.2.0"
},
"autoemailactions": {
"title": "Auto Email Extended Actions",
"version": "1.2.0",
"author": "Craig Crosby",
"license": "MIT",
"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.",
"homepage": "https://github.com/creecros/SendEmailCreator",
"readme": "https://raw.githubusercontent.com/creecros/SendEmailCreator/master/README.md",
"download": "https://github.com/creecros/SendEmailCreator/releases/download/1.2.0/SendEmailCreator-1.2.0.zip",
"remote_install": true,
"compatible_version": ">=1.0.46"
},
"autosubtasks": {
"title": "Auto Subtask Creation",
"version": "2.1.0",
"author": "Craig Crosby",
"license": "MIT",
"description": "Automatic action to create subtasks when a task is created or moves column.",
"homepage": "https://github.com/creecros/AutoSubtasks",
"readme": "https://raw.githubusercontent.com/creecros/AutoSubtasks/master/README.md",
"download": "https://github.com/creecros/AutoSubtasks/releases/download/2.1.0/AutoSubtasks-2.1.0.zip",
"remote_install": true,
"compatible_version": ">=1.0.48"
},
"Bak2topbotm": {
"title": "Bak2topbotm",
"version": "0.0.3",
"author": "Craig Crosby",
"license": "MIT",
"description": "Back to Top and Bottom Buttons for Task Summary",
"homepage": "https://github.com/creecros/Bak2topbotm",
"readme": "https://raw.githubusercontent.com/creecros/Bak2topbotm/master/README.md",
"download": "https://github.com/creecros/Bak2topbotm/releases/download/0.0.3/Bak2topbotm-0.0.3.zip",
"remote_install": true,
"compatible_version": ">=1.0.43"
},
"Boardcustomizer": {
"title": "Boardcustomizer",
"version": "1.0.1",
"author": "BlueTeck",
"license": "MIT",
"description": "Customize board and card style per user",
"homepage": "https://github.com/BlueTeck/kanboard_plugin_boardcustomizer",
"readme": "https://raw.githubusercontent.com/BlueTeck/kanboard_plugin_boardcustomizer/master/README.md",
"download": "https://github.com/BlueTeck/kanboard_plugin_boardcustomizer/releases/download/v1.0.1/BoardCustomizer-1.0.1.zip",
"remote_install": true,
"compatible_version": ">=1.2.10"
},
"commentonly": {
"title": "Comment Only Restrictions for Project Viewers",
"version": "0.0.2",
"author": "Craig Crosby",
"license": "MIT",
"description": "Add Commenting abilities for Project Viewers.",
"homepage": "https://github.com/creecros/opencomment",
"readme": "https://raw.githubusercontent.com/creecros/opencomment/master/README.md",
"download": "https://github.com/creecros/opencomment/releases/download/0.0.2/CommentOnly-0.0.2.zip",
"remote_install": true,
"compatible_version": ">=1.0.46"
},
"customizer": {
"title": "Customizer",
"version": "1.13.3",
"author": "Craig Crosby",
"license": "MIT",
"description": "GUI to add logos, themes, favicons and much more customization.",
"homepage": "https://github.com/creecros/Customizer",
"readme": "https://raw.githubusercontent.com/creecros/Customizer/master/README.md",
"download": "https://github.com/creecros/Customizer/releases/download/1.13.3/Customizer-1.13.3.zip",
"remote_install": true,
"compatible_version": ">=1.0.42"
},
"creecros_filter_pack": {
"title": "Creecros_Filter_Pack",
"version": "1.3.0",
"author": "Craig Crosby",
"license": "MIT",
"description": "Creecros Filter Pack. Request new filters on issue board.",
"homepage": "https://github.com/creecros/Creecros_Filter_Pack",
"readme": "https://raw.githubusercontent.com/creecros/Creecros_Filter_Pack/master/README.md",
"download": "https://github.com/creecros/Creecros_Filter_Pack/releases/download/1.3.0/Creecros_Filter_Pack-1.3.0.zip",
"remote_install": true,
"compatible_version": ">=1.0.42"
},
"MarkdownPlus": {
"title": "MarkdownPlus",
"version": "1.0.0",
"author": "Craig Crosby",
"license": "MIT",
"description": "Improved Markdown, with check boxes, emoji shortcode, inline html, etc...",
"homepage": "https://github.com/creecros/MarkdownPlus",
"readme": "https://raw.githubusercontent.com/creecros/MarkdownPlus/master/README.md",
"download": "https://github.com/creecros/MarkdownPlus/releases/download/1.0.0/MarkdownPlus-1.0.0.zip",
"remote_install": true,
"compatible_version": ">=1.0.46"
},
"group_assign": {
"title": "Group_assign",
"version": "1.7.8",
"author": "Craig Crosby",
"license": "MIT",
"description": "Add group assignment and additional assignees multiselect option to tasks.",
"homepage": "https://github.com/creecros/Group_assign",
"readme": "https://raw.githubusercontent.com/creecros/Group_assign/master/README.md",
"download": "https://github.com/creecros/Group_assign/releases/download/1.7.8/Group_assign-1.7.8.zip",
"remote_install": true,
"compatible_version": ">=1.1.0"
},
"Task2pdf": {
"title": "Task2pdf",
"version": "1.2.0",
"author": "Craig Crosby",
"license": "MIT",
"description": "Create a printer friendly PDF of a task.",
"homepage": "https://github.com/creecros/Task2pdf",
"readme": "https://raw.githubusercontent.com/creecros/Task2pdf/master/README.md",
"download": "https://github.com/creecros/Task2pdf/releases/download/1.2.0/Task2pdf-1.2.0.zip",
"remote_install": true,
"compatible_version": ">=1.0.46"
},
"backlog": {
"title": "Backlog",
"version": "1.0.3",
"author": "vistree + creecros",
"license": "GPL-3.0",
"description": "Plugin to add a backlog column with full height to project board.",
"homepage": "https://github.com/vistree/kanboard-backlog",
"readme": "https://raw.githubusercontent.com/vistree/kanboard-backlog/master/README.md",
"download": "https://github.com/vistree/kanboard-backlog/releases/download/1.0.3/Backlog-1.0.3.zip",
"remote_install": true,
"compatible_version": ">=1.0.45"
},
"bigboard": {
"title": "Bigboard",
"version": "1.0.5",
"author": "Stinnux",
"license": "MIT",
"description": "A Kanboard that can display multiple projects.",
"homepage": "https://github.com/stinnux/kanboard-bigboard",
"readme": "https://raw.githubusercontent.com/stinnux/kanboard-bigboard/master/README.md",
"download": "https://github.com/stinnux/kanboard-bigboard/releases/download/1.0.5/Bigboard-1.0.5.zip",
"remote_install": true,
"compatible_version": ">=1.2.4"
},
"chat": {
"title": "Chat",
"version": "1.0.3",
"author": "Frédéric Guillot",
"license": "MIT",
"description": "Minimalist chat for small teams.",
"homepage": "https://github.com/kanboard/plugin-chat",
"readme": "https://raw.githubusercontent.com/kanboard/plugin-chat/master/README.md",
"download": "https://github.com/kanboard/plugin-chat/releases/download/v1.0.3/Chat-1.0.3.zip",
"remote_install": true,
"compatible_version": ">=1.2.3"
},
"bitbucket-webhook": {
"title": "Bitbucket Webhook",
"version": "1.0.5",
"author": "Frédéric Guillot",
"license": "MIT",
"description": "Bind Bitbucket webhook events to Kanboard automatic actions.",
"homepage": "https://github.com/kanboard/plugin-bitbucket-webhook",
"readme": "https://raw.githubusercontent.com/kanboard/plugin-bitbucket-webhook/master/README.md",
"download": "https://github.com/kanboard/plugin-bitbucket-webhook/releases/download/v1.0.5/BitbucketWebhook-1.0.5.zip",
"remote_install": true,
"compatible_version": ">=1.0.37"
},
"calendar": {
"title": "Calendar",
"version": "1.1.1",
"author": "Frédéric Guillot",
"license": "MIT",
"description": "Embedded calendar into Kanboard.",
"homepage": "https://github.com/kanboard/plugin-calendar",
"readme": "https://raw.githubusercontent.com/kanboard/plugin-calendar/master/README.md",
"download": "https://github.com/kanboard/plugin-calendar/releases/download/v1.1.1/Calendar-1.1.1.zip",
"remote_install": true,
"compatible_version": ">=1.2.13"
},
"cardpushdate": {
"title": "Card Push Date - and other actions",
"version": "1.0",
"author": "David Morlitz",
"license": "MIT",
"description": "Put easy actions on task cards, searches and dashboard - including update card date, show comments, edit, close and move card",
"homepage": "https://github.com/dmorlitz/kanboard-CardPushDate",
"readme": "https://raw.githubusercontent.com/dmorlitz/kanboard-CardPushDate/master/README.md",
"download": "https://raw.githubusercontent.com/dmorlitz/kanboard-CardPushDate/master/releases/CardPushDate.zip",
"remote_install": true,
"compatible_version": ">=1.2.5"
},
"db-storage": {
"title": "Database Storage",
"version": "1.0.0",
"author": "Frédéric Guillot",
"license": "MIT",
"description": "This plugin stores uploaded files into the database instead of using the local filesystem.",
"homepage": "https://github.com/kanboard/plugin-database-storage",
"readme": "https://raw.githubusercontent.com/kanboard/plugin-database-storage/master/README.md",
"download": "https://github.com/kanboard/plugin-database-storage/releases/download/v1.0.0/DatabaseStorage-1.0.0.zip",
"remote_install": false,
"compatible_version": ">=1.0.32"
},
"coverimage": {
"title": "Coverimage",
"version": "1.2.5.0",
"author": "BlueTeck + creecros",
"license": "MIT",
"description": "This plugin adds a coverimage function to tasks on the board, and allows you to set a project image to use as a logo for projects.",
"homepage": "https://github.com/BlueTeck/kanboard_plugin_coverimage",
"readme": "https://raw.githubusercontent.com/BlueTeck/kanboard_plugin_coverimage/master/README.md",
"download": "https://github.com/BlueTeck/kanboard_plugin_coverimage/releases/download/1.2.5.0/Coverimage.zip",
"remote_install": true,
"compatible_version": ">=1.0.42"
},
"duedate": {
"title": "Due Date sorting",
"version": "1.0.0",
"author": "David Morlitz",
"license": "MIT",
"description": "Allow boards to be sorted by card due date",
"homepage": "https://github.com/dmorlitz/kanboard-duedate",
"readme": "https://raw.githubusercontent.com/dmorlitz/kanboard-duedate/master/README.md",
"download": "https://raw.githubusercontent.com/dmorlitz/kanboard-duedate/master/releases/DueDate.zip",
"remote_install": true,
"compatible_version": ">=1.2.5"
},
"essential": {
"title": "Essential",
"version": "1.1.3",
"author": "Valentino Pesce",
"license": "MIT",
"description": "Essential theme returns a new style to your kanboard.",
"homepage": "https://github.com/kenlog/Essential",
"readme": "https://github.com/kenlog/Essential/blob/master/README.md",
"download": "https://github.com/kenlog/Essential/releases/download/v1.1.3/Essential-v1.1.3.zip",
"remote_install": true,
"compatible_version": ">=1.0.48"
},
"encryptedcontent": {
"title": "EncryptedContent",
"version": "1.0.1",
"author": "Valentino Pesce",
"license": "MIT",
"description": "This plugin allows the insertion of text content encrypted in the kanboard database, with the use of random keys.",
"homepage": "https://github.com/kenlog/EncryptedContent",
"readme": "https://github.com/kenlog/EncryptedContent/blob/master/README.md",
"download": "https://github.com/kenlog/EncryptedContent/releases/download/v.1.0.1/EncryptedContent-v.1.0.1.zip",
"remote_install": true,
"compatible_version": ">=1.0.48"
},
"extendedMail": {
"title": "extendedMail",
"version": "0.8.0",
"author": "Rens Sikma",
"license": "MIT",
"description": "Adds extra functionality to kanboard comment by email",
"homepage": "https://github.com/atcomputing/kanboard-ExtendedMail",
"readme": "https://github.com/atcomputing/kanboard-ExtendedMail/raw/master/README.md",
"download": "https://github.com/atcomputing/kanboard-ExtendedMail/releases/download/v0.8/ExtendedMail-0.8.0.zip",
"remote_install": true,
"compatible_version": ">=1.2.2"
},
"gantt": {
"title": "Gantt",
"version": "1.0.5",
"author": "Frédéric Guillot",
"license": "MIT",
"description": "Gantt charts for tasks and projects.",
"homepage": "https://github.com/kanboard/plugin-gantt",
"readme": "https://raw.githubusercontent.com/kanboard/plugin-gantt/master/README.md",
"download": "https://github.com/kanboard/plugin-gantt/releases/download/v1.0.5/Gantt-1.0.5.zip",
"remote_install": true,
"compatible_version": ">=1.2.13"
},
"github-auth": {
"title": "Github Authentication",
"version": "1.0.3",
"author": "Frédéric Guillot",
"license": "MIT",
"description": "Use Github as authentication provider.",
"homepage": "https://github.com/kanboard/plugin-github-auth",
"readme": "https://raw.githubusercontent.com/kanboard/plugin-github-auth/master/README.md",
"download": "https://github.com/kanboard/plugin-github-auth/releases/download/v1.0.3/GithubAuth-1.0.3.zip",
"remote_install": true,
"compatible_version": ">=1.0.37"
},
"github-webhook": {
"title": "Github Webhook",
"version": "1.0.6",
"author": "Frédéric Guillot",
"license": "MIT",
"description": "Connect Github webhook events to Kanboard automatic actions.",
"homepage": "https://github.com/kanboard/plugin-github-webhook",
"readme": "https://raw.githubusercontent.com/kanboard/plugin-github-webhook/master/README.md",
"download": "https://github.com/kanboard/plugin-github-webhook/releases/download/v1.0.6/GithubWebhook-1.0.6.zip",
"remote_install": true,
"compatible_version": ">=1.0.37"
},
"gitlab-auth": {
"title": "Gitlab Authentication",
"version": "1.0.5",
"author": "Frédéric Guillot",
"license": "MIT",
"description": "Use Gitlab as authentication provider.",
"homepage": "https://github.com/kanboard/plugin-gitlab-auth",
"readme": "https://raw.githubusercontent.com/kanboard/plugin-gitlab-auth/master/README.md",
"download": "https://github.com/kanboard/plugin-gitlab-auth/releases/download/v1.0.5/GitlabAuth-1.0.5.zip",
"remote_install": true,
"compatible_version": ">=1.0.37"
},
"gitlab-webhook": {
"title": "Gitlab Webhook",
"version": "1.0.6",
"author": "Frédéric Guillot",
"license": "MIT",
"description": "Connect Gitlab webhook events to Kanboard automatic actions.",
"homepage": "https://github.com/kanboard/plugin-gitlab-webhook",
"readme": "https://raw.githubusercontent.com/kanboard/plugin-gitlab-webhook/master/README.md",
"download": "https://github.com/kanboard/plugin-gitlab-webhook/releases/download/v1.0.6/GitlabWebhook-1.0.6.zip",
"remote_install": true,
"compatible_version": ">=1.0.37"
},
"gogs-webhook": {
"title": "Gogs Webhook",
"version": "1.0.5",
"author": "Frédéric Guillot",
"license": "MIT",
"description": "Connect Gogs webhook events to Kanboard automatic actions.",
"homepage": "https://github.com/kanboard/plugin-gogs-webhook",
"readme": "https://raw.githubusercontent.com/kanboard/plugin-gogs-webhook/master/README.md",
"download": "https://github.com/kanboard/plugin-gogs-webhook/releases/download/v1.0.5/GogsWebhook-1.0.5.zip",
"remote_install": true,
"compatible_version": ">=1.0.37"
},
"google-auth": {
"title": "Google Authentication",
"version": "1.0.8",
"author": "Frédéric Guillot",
"license": "MIT",
"description": "Use Google as authentication provider.",
"homepage": "https://github.com/kanboard/plugin-google-auth",
"readme": "https://raw.githubusercontent.com/kanboard/plugin-google-auth/master/README.md",
"download": "https://github.com/kanboard/plugin-google-auth/releases/download/v1.0.8/GoogleAuth-1.0.8.zip",
"remote_install": true,
"compatible_version": ">=1.0.37"
},
"Greenwing": {
"title": "Greenwing",
"version": "1.2.1",
"author": "Confexion",
"license": "MIT",
"description": "Greenwing is a kanboard beautify theme with a modern design.",
"homepage": "https://github.com/Confexion/Greenwing",
"readme": "https://github.com/Confexion/Greenwing/blob/master/README.md",
"download": "https://github.com/Confexion/Greenwing/releases/download/v1.2.1/Greenwing.zip",
"remote_install": true,
"compatible_version": ">=1.2.9"
},
"highlightcodesyntax": {
"title": "HighlightCodeSyntax",
"version": "1.0.2",
"author": "Valentino Pesce",
"license": "MIT",
"description": "For code snippets the plugin is able to highlight code syntax in more than 151 languages, including PHP, Javascript, Python, HTML and CSS.",
"homepage": "https://github.com/kenlog/HighlightCodeSyntax",
"readme": "https://raw.githubusercontent.com/kenlog/HighlightCodeSyntax/master/README.md",
"download": "https://github.com/kenlog/HighlightCodeSyntax/releases/download/v1.0.2/HighlightCodeSyntax-v1.0.2.zip",
"remote_install": true,
"compatible_version": ">=1.0.48"
},
"imapuserauth": {
"title": "IMAP User Authentication",
"version": "1.0.3",
"author": "Jim Mason",
"license": "MIT",
"description": "Login to Kanboard using your IMAP credentials",
"homepage": "https://github.com/RocketMan/plugin-imap-user-auth",
"readme": "https://github.com/RocketMan/plugin-imap-user-auth/blob/master/README.md",
"download": "https://github.com/RocketMan/plugin-imap-user-auth/releases/download/v1.0.3/IMAPUserAuth-1.0.3.zip",
"remote_install": true,
"compatible_version": ">=1.2.8"
},
"importwithgroup": {
"title": "ImportWithGroup",
"version": "1.0.0",
"author": "Craig Crosby",
"license": "MIT",
"description": "Adds a group name field to Import via CSV.",
"homepage": "https://github.com/creecros/userimport_wgroups",
"readme": "https://github.com/creecros/userimport_wgroups/blob/master/README.md",
"download": "https://github.com/creecros/userimport_wgroups/releases/download/1.0.0/ImportWithGroup-1.0.0.zip",
"remote_install": true,
"compatible_version": ">=1.0.47"
},
"instantactions": {
"title": "Instant Actions for Kanboard Tasks",
"version": "1.0.0",
"author": "Jens Heuschkel",
"license": "MIT",
"description": "Add buttons to tasks in board view for edit, delete and close them.",
"homepage": "https://github.com/juehv/kanboard-InstantActions",
"readme": "https://github.com/juehv/kanboard-InstantActions/blob/master/README.md",
"download": "https://github.com/juehv/kanboard-InstantActions/archive/v1.0.zip",
"remote_install": false,
"compatible_version": ">=1.1.0"
},
"jabber": {
"title": "Jabber",
"version": "1.0.8",
"author": "Frédéric Guillot",
"license": "MIT",
"description": "Receive individual or project notifications on Jabber.",
"homepage": "https://github.com/kanboard/plugin-jabber",
"readme": "https://raw.githubusercontent.com/kanboard/plugin-jabber/master/README.md",
"download": "https://github.com/kanboard/plugin-jabber/releases/download/v1.0.8/Jabber-1.0.8.zip",
"remote_install": true,
"compatible_version": ">=1.0.37"
},
"kanboardcss": {
"title": "KanboardCSS",
"version": "1.5.0",
"author": "Aljawaid",
"license": "MIT",
"description": "A useful and calm theme",
"homepage": "https://github.com/aljawaid/KanboardCSS",
"readme": "https://raw.githubusercontent.com/aljawaid/KanboardCSS/master/README.md",
"download": "https://github.com/aljawaid/KanboardCSS/releases/download/v1.5.0/KanboardCSS-1.5.zip",
"remote_install": true,
"compatible_version": ">=1.0.44"
},
"mailgun": {
"title": "Mailgun",
"version": "1.0.11",
"author": "Frédéric Guillot",
"license": "MIT",
"description": "Use the Mailgun API to send emails and create tasks from emails.",
"homepage": "https://github.com/kanboard/plugin-mailgun",
"readme": "https://raw.githubusercontent.com/kanboard/plugin-mailgun/master/README.md",
"download": "https://github.com/kanboard/plugin-mailgun/releases/download/v1.0.11/Mailgun-1.0.11.zip",
"remote_install": true,
"compatible_version": ">=1.0.40"
},
"mattermost": {
"title": "Mattermost",
"version": "1.0.5",
"author": "Frédéric Guillot",
"license": "MIT",
"description": "Send Kanboard notifications to Mattermost (self-hosted Slack clone).",
"homepage": "https://github.com/kanboard/plugin-mattermost",
"readme": "https://raw.githubusercontent.com/kanboard/plugin-mattermost/master/README.md",
"download": "https://github.com/kanboard/plugin-mattermost/releases/download/v1.0.5/Mattermost-1.0.5.zip",
"remote_install": true,
"compatible_version": ">=1.0.37"
},
"metadata": {
"title": "Metadata Manager",
"version": "1.0.33.2",
"author": "BlueTeck",
"license": "MIT",
"description": "This plugin adds a GUI to manage custom metadata for task, projects and user.",
"homepage": "https://github.com/BlueTeck/kanboard_plugin_metadata",
"readme": "https://raw.githubusercontent.com/BlueTeck/kanboard_plugin_metadata/master/README.md",
"download": "https://github.com/BlueTeck/kanboard_plugin_metadata/releases/download/1.0.33.2/Metadata.zip",
"remote_install": true,
"compatible_version": ">=1.0.33"
},
"metamagik": {
"title": "metaMagik",
"version": "1.4.3",
"author": "Craig Crosby + BlueTeck",
"license": "MIT",
"description": "Custom Fields and advanced GUI for managing them, along with Metadata Manager",
"homepage": "https://github.com/creecros/MetaMagik",
"readme": "https://github.com/creecros/MetaMagik/blob/master/README.md",
"download": "https://github.com/creecros/MetaMagik/releases/download/1.4.3/MetaMagik-1.4.3.zip",
"remote_install": true,
"compatible_version": ">=1.0.33"
},
"minimizesidebar": {
"title": "MinimizeSidebar",
"version": "1.0.1",
"author": "Valentino Pesce",
"license": "MIT",
"description": "Option to minimize sidebar.",
"homepage": "https://github.com/kenlog/MinimizeSidebar",
"readme": "https://github.com/kenlog/MinimizeSidebar/blob/master/README.md",
"download": "https://github.com/kenlog/MinimizeSidebar/releases/download/v1.0.1/MinimizeSidebar-v1.0.1.zip",
"remote_install": true,
"compatible_version": ">=1.0.48"
},
"milestone": {
"title": "Milestone",
"version": "1.1.2",
"author": "Olivier Maridat",
"license": "MIT",
"description": "Add a section for milestones to show their related tasks.",
"homepage": "https://github.com/oliviermaridat/kanboard-milestone-plugin",
"readme": "https://raw.githubusercontent.com/oliviermaridat/kanboard-milestone-plugin/master/README.md",
"download": "https://github.com/oliviermaridat/kanboard-milestone-plugin/releases/download/1.1.2/Milestone-1.1.2.zip",
"remote_install": true,
"compatible_version": ">=1.0.43"
},
"moveondate": {
"title": "Move cards to specific columns when due date passed",
"version": "1.0.0",
"author": "David Morlitz",
"license": "MIT",
"description": "Adds an automatic action which allows you to move cards to a specific column when the due date has passed",
"homepage": "https://github.com/dmorlitz/kanboard-TaskMoveOnDueDate",
"readme": "https://raw.githubusercontent.com/dmorlitz/kanboard-TaskMoveOnDueDate/master/README.md",
"download": "https://raw.githubusercontent.com/dmorlitz/kanboard-TaskMoveOnDueDate/master/releases/TaskMoveOnDueDate.zip",
"remote_install": true,
"compatible_version": ">=1.2.5"
},
"moon": {
"title": "Moon",
"version": "1.4.5",
"author": "Valentino Pesce",
"license": "MIT",
"description": "Theme with a modern design that adds syntax highlighting for Markdown code, compatible with the Customizer plugin.",
"homepage": "https://github.com/kenlog/Moon",
"readme": "https://raw.githubusercontent.com/kenlog/Moon/master/README.md",
"download": "https://github.com/kenlog/Moon/releases/download/v1.4.5/Moon-v1.4.5.zip",
"remote_install": true,
"compatible_version": ">=1.0.48"
},
"nebula": {
"title": "Nebula",
"version": "1.3.4",
"author": "Valentino Pesce",
"license": "MIT",
"description": "Theme with a modern design that adds syntax highlighting for Markdown code, compatible with the Customizer plugin.",
"homepage": "https://github.com/kenlog/Nebula",
"readme": "https://raw.githubusercontent.com/kenlog/Nebula/master/README.md",
"download": "https://github.com/kenlog/Nebula/releases/download/v1.3.4/Nebula-v1.3.4.zip",
"remote_install": true,
"compatible_version": ">=1.0.48"
},
"oauth2": {
"title": "OAuth2",
"version": "1.0.1",
"author": "Frédéric Guillot",
"license": "MIT",
"description": "Generic OAuth2 plugin.",
"homepage": "https://github.com/kanboard/plugin-oauth2",
"readme": "https://raw.githubusercontent.com/kanboard/plugin-oauth2/master/README.md",
"download": "https://github.com/kanboard/plugin-oauth2/releases/download/v1.0.1/OAuth2-1.0.1.zip",
"remote_install": true,
"compatible_version": ">=1.0.37"
},
"overwrite_translation": {
"title": "Overwrite Translation",
"version": "1.0.33.1",
"author": "BlueTeck",
"license": "MIT",
"description": "Overwrite default translations without touching kanboard files.",
"homepage": "https://github.com/BlueTeck/kanboard_plugin_overwrite_translation",
"readme": "https://raw.githubusercontent.com/BlueTeck/kanboard_plugin_overwrite_translation/master/README.md",
"download": "https://github.com/BlueTeck/kanboard_plugin_overwrite_translation/releases/download/1.0.33.1/Overwrite_translation.zip",
"remote_install": true,
"compatible_version": ">=1.0.33"
},
"oxygen": {
"title": "Oxygen",
"version": "1.3.1",
"author": "Valentino Pesce",
"license": "MIT",
"description": "Replaces the logo and adds syntax highlighting for Markdown code.",
"homepage": "https://github.com/kenlog/Oxygen",
"readme": "https://raw.githubusercontent.com/kenlog/Oxygen/master/README.md",
"download": "https://github.com/kenlog/Oxygen/releases/download/v1.3.1/Oxygen-1.3.1.zip",
"remote_install": true,
"compatible_version": ">=1.2.5"
},
"pushdate": {
"title": "Push out due date on cards when moving to specific columns",
"version": "1.0.0",
"author": "David Morlitz",
"license": "MIT",
"description": "Adds an automatic action which allows you to push the due date a specified number of days when moving cards to a specific column",
"homepage": "https://github.com/dmorlitz/kanboard-TaskPushDate",
"readme": "https://raw.githubusercontent.com/dmorlitz/kanboard-TaskPushDate/master/README.md",
"download": "https://raw.githubusercontent.com/dmorlitz/kanboard-TaskPushDate/master/releases/TaskPushDate.zip",
"remote_install": true,
"compatible_version": ">=1.2.5"
},
"registration": {
"title": "Self-Registration",
"version": "1.0.8",
"author": "Frédéric Guillot",
"license": "MIT",
"description": "Self-registration plugin to allow people to sign up on Kanboard.",
"homepage": "https://github.com/kanboard/plugin-registration",
"readme": "https://raw.githubusercontent.com/kanboard/plugin-registration/master/README.md",
"download": "https://github.com/kanboard/plugin-registration/releases/download/v1.0.8/Registration-1.0.8.zip",
"remote_install": true,
"compatible_version": ">=1.0.37"
},
"signal": {
"title": "Signal",
"version": "1.0.1",
"author": "Benedikt Hopmann",
"license": "MIT",
"description": "Receive Kanboard notifications on Signal (via signal-cli).",
"homepage": "https://github.com/stratmaster/kanboard-plugin-signal",
"readme": "https://raw.githubusercontent.com/stratmaster/kanboard-plugin-signal/master/README.md",
"download": "https://github.com/stratmaster/kanboard-plugin-signal/releases/download/v1.0.1/Signal-1.0.1.zip",
"remote_install": true,
"compatible_version": ">=1.0.37"
},
"spectre": {
"title": "Spectre Theme",
"version": "1.0.3",
"author": "Viggo",
"license": "CC-BY-4.0",
"description": "Modern And Simple CSS Theme For Kanboard",
"homepage": "https://github.com/kuerme/kanboard-theme-spectre",
"readme": "https://raw.githubusercontent.com/kuerme/kanboard-theme-spectre/master/README.md",
"download": "https://github.com/kuerme/kanboard-theme-spectre/releases/download/v1.0.3/Spectre-1.0.3.zip",
"remote_install": true,
"compatible_version": ">=1.2.10"
},
"relationgraph": {
"title": "Relationgraph",
"version": "0.3.1",
"author": "BlueTeck, Xavier Vidal",
"license": "MIT",
"description": "Show relations between tasks using a graph library",
"homepage": "https://github.com/BlueTeck/kanboard_plugin_relationgraph",
"readme": "https://raw.githubusercontent.com/BlueTeck/kanboard_plugin_relationgraph/master/README.md",
"download": "https://github.com/BlueTeck/kanboard_plugin_relationgraph/releases/download/0.3.1/Relationgraph-0.3.1.zip",
"remote_install": true,
"compatible_version": "1.2.10"
},
"rocketchat": {
"title": "RocketChat",
"version": "1.0.6",
"author": "Frédéric Guillot",
"license": "MIT",
"description": "Receive individual or project notifications on RocketChat.",
"homepage": "https://github.com/kanboard/plugin-rocketchat",
"readme": "https://raw.githubusercontent.com/kanboard/plugin-rocketchat/master/README.md",
"download": "https://github.com/kanboard/plugin-rocketchat/releases/download/v1.0.6/RocketChat-1.0.6.zip",
"remote_install": true,
"compatible_version": ">=1.0.37"
},
"slack": {
"title": "Slack",
"version": "1.0.7",
"author": "Frédéric Guillot",
"license": "MIT",
"description": "Receive individual or project notifications on Slack.",
"homepage": "https://github.com/kanboard/plugin-slack",
"readme": "https://raw.githubusercontent.com/kanboard/plugin-slack/master/README.md",
"download": "https://github.com/kanboard/plugin-slack/releases/download/v1.0.7/Slack-1.0.7.zip",
"remote_install": true,
"compatible_version": ">=1.0.37"
},
"timetrackingeditor": {
"title": "Time Tracking Editor",
"version": "1.0.21",
"author": "Stinnux",
"license": "MIT",
"description": "Manually Add and Edit Time Tracking entries, add comments and select billable/not billable to time tracking entries. Export Time Tracking Entries as HTML",
"homepage": "https://github.com/stinnux/kanboard-Timetrackingeditor",
"readme": "https://raw.githubusercontent.com/stinnux/kanboard-Timetrackingeditor/master/README.md",
"download": "https://github.com/stinnux/kanboard-Timetrackingeditor/releases/download/1.0.21/Timetrackingeditor-1.0.21.zip",
"remote_install": true,
"compatible_version": ">=1.2.4"
},
"TimeMachine":{
"title": "Plugin to add time machine : Back to the Future",
"version": "1.0.1",
"author": "Yohann Valentin",
"license": "GPL-3.0",
"description": "Add more analytics times datas like time comparison by swimlanes, categories and by dates(only spent time). And a edit form on subtask time tracking",
"homepage": "https://gitlab.com/yv-kanboard-plugin/time-machine",
"readme": "https://gitlab.com/yv-kanboard-plugin/time-machine/blob/master/README.md",
"download": "https://gitlab.com/yv-kanboard-plugin/time-machine/uploads/7633efeee85e7e90b5a8620d5af38160/TimeMachine-1.0.1.zip",
"remote_install": true,
"compatible_version": ">=1.2.6"
},
"starredprojects": {
"title": "Starred Projects",
"version": "0.1.1",
"author": "BibLibre",
"license": "MIT",
"description": "Mark projects as favorite for faster access in dashboard",
"homepage": "https://github.com/biblibre/kanboard-plugin-StarredProjects",
"readme": "https://raw.githubusercontent.com/biblibre/kanboard-plugin-StarredProjects/v0.1.1/README.md",
"download": "https://github.com/biblibre/kanboard-plugin-StarredProjects/releases/download/v0.1.1/StarredProjects-0.1.1.zip",
"remote_install": true,
"compatible_version": ">=1.2.5"
},
"soundnotification": {
"title": "SoundNotification",
"version": "1.1.0",
"author": "Valentino Pesce",
"license": "MIT",
"description": "Each new notification will sound an alert sound.",
"homepage": "https://github.com/kenlog/SoundNotification",
"readme": "https://raw.githubusercontent.com/kenlog/SoundNotification/master/README.md",
"download": "https://github.com/kenlog/SoundNotification/releases/download/v1.1.0/SoundNotification-v1.1.0.zip",
"remote_install": true,
"compatible_version": ">=1.0.48"
},
"subtaskdate": {
"title": "SubtaskDueDate",
"version": "1.1.2",
"author": "Manuel Raposo & Craig Crosby",
"license": "MIT",
"description": "This plugin adds a Due Date to subtasks.",
"homepage": "https://github.com/eSkiSo/Subtaskdate",
"readme": "https://raw.githubusercontent.com/eSkiSo/Subtaskdate/master/README.md",
"download": "https://github.com/eSkiSo/Subtaskdate/releases/download/1.1.2/Subtaskdate-1.1.2.zip",
"remote_install": true,
"compatible_version": ">=1.0.34"
},
"synologychat": {
"title": "SynologyChat",
"version": "1.0.0",
"author": "Paul Sweeney",
"license": "MIT",
"description": "Receive individual or project notifications on Synology Chat.",
"homepage": "https://github.com/Kolossi/plugin-synology-chat",
"readme": "https://raw.githubusercontent.com/Kolossi/plugin-synology-chat/master/README.md",
"download": "https://github.com/Kolossi/plugin-synology-chat/releases/download/v1.0.0/SynologyChat-1.0.0.zip",
"remote_install": true,
"compatible_version": ">=1.2.6"
},
"Taglist": {
"title": "Taglist",
"version": "1.0.1",
"author": "BlueTeck",
"license": "MIT",
"description": "Filter dropdown for tags",
"homepage": "https://github.com/BlueTeck/kanboard_plugin_taglist",
"readme": "https://raw.githubusercontent.com/BlueTeck/kanboard_plugin_taglist/master/README.md",
"download": "https://github.com/BlueTeck/kanboard_plugin_taglist/releases/download/1.0.1/Taglist-1.0.1.zip",
"remote_install": true,
"compatible_version": ">=1.2.10"
},
"timeintervalbutton": {
"title": "Time Interval Button",
"version": "0.9.0",
"author": "Igor Mroz",
"license": "MIT",
"description": "Simple plugins which adds button to incrementally change time spent on task.",
"homepage": "https://github.com/mrozigor/kanboard-add-time-interval-plugin",
"readme": "https://raw.githubusercontent.com/mrozigor/kanboard-add-time-interval-plugin/master/README.md",
"download": "https://github.com/mrozigor/kanboard-add-time-interval-plugin/releases/download/0.9.0/TaskIntervalButton-0.9.0.zip",
"remote_install": true,
"compatible_version": ">=1.0.35"
},
"comment-tooltip": {
"title": "Comment Tooltip",
"version": "1.0.1",
"author": "Enrico Frigo",
"license": "MIT",
"description": "Show task's comments as tooltip as in older kanboard version.",
"homepage": "https://github.com/enricofrigo/kanboard/tree/master/plugin-comment-tooltip",
"readme": "https://github.com/enricofrigo/kanboard/blob/master/plugin-comment-tooltip/CommentTooltip/README.md",
"download": "https://github.com/enricofrigo/kanboard/raw/master/plugin-comment-tooltip/releases/download/v1.0.0/CommentTooltip.zip",
"remote_install": true,
"compatible_version": "<=1.2.3"
},
"telegram": {
"title": "Telegram",
"version": "1.3.2",
"author": "Manu Varkey",
"license": "MIT",
"description": "Receive individual or project notifications on Telegram.",
"homepage": "https://github.com/manuvarkey/kanboard-plugin-telegram",
"readme": "https://raw.githubusercontent.com/manuvarkey/kanboard-plugin-telegram/master/README.md",
"download": "https://github.com/manuvarkey/kanboard-plugin-telegram/releases/download/v1.3.2/Telegram.zip",
"remote_install": true,
"compatible_version": ">=1.0.37"
},
"updatenotifier": {
"title": "UpdateNotifier",
"version": "1.4.3",
"author": "Valentino Pesce",
"license": "MIT",
"description": "What is Update Notifier? The Update Notifier is a utility that scans installed plugin and displays a list of updates.",
"homepage": "https://github.com/kenlog/UpdateNotifier",
"readme": "https://raw.githubusercontent.com/kenlog/UpdateNotifier/master/README.md",
"download": "https://github.com/kenlog/UpdateNotifier/releases/download/v1.4.3/UpdateNotifier-1.4.3.zip",
"remote_install": true,
"compatible_version": ">=1.0.42"
},
"WeKanboard": {
"title": "WeKanboard",
"version": "1.0.2",
"author": "Benno Waldhauer",
"license": "MIT",
"description": "Yet another theme for Kanboard. Strongly inspired by the style of Wekan. Supports the Customizer plugin.",
"homepage": "https://github.com/bw-hro/WeKanboard",
"readme": "https://raw.githubusercontent.com/bw-hro/WeKanboard/master/README.md",
"download": "https://github.com/bw-hro/WeKanboard/releases/download/v1.0.2/WeKanboard_v1.0.2.zip",
"remote_install": true,
"compatible_version": ">=1.2.11"
},
"wiki": {
"title": "Wiki",
"version": "0.3.0",
"author": "lastlink",
"license": "MIT",
"description": "Wiki to document projects.",
"homepage": "https://github.com/funktechno/kanboard-plugin-wiki",
"readme": "https://raw.githubusercontent.com/funktechno/kanboard-plugin-wiki/master/README.md",
"download": "https://github.com/funktechno/kanboard-plugin-wiki/releases/download/0.3.0-alpha/Wiki-0.3.0.zip",
"remote_install": true,
"compatible_version": ">=1.0.37"
},
"weightedvoting": {
"title": "Weighted voting",
"version": "1.0.0",
"author": "Manel Perez",
"license": "MIT",
"description": "This plugin add new features to Kanboard. Weighted voting for the evaluation of group activities in Kanboard.",
"homepage": "https://github.com/manelperez/kanboard-plugin-voting",
"readme": "https://github.com/manelperez/kanboard-plugin-voting/blob/master/README.md",
"download": "https://github.com/manelperez/kanboard-plugin-voting/releases/download/voting-v1.0.0/Voting-1.0.0.zip",
"remote_install": true,
"compatible_version": ">=1.2.5"
},
"AttachDocumentsforViewers": {
"title": "Attach Documents for Project Viewers",
"version": "0.0.1",
"author": "Franklin Hernandez",
"license": "MIT",
"description": "This plugin will allow Project Viewers to attach documents to tasks.",
"homepage": "https://github.com/hernandezfo/AttachDocumentsforViewers",
"readme": "https://raw.githubusercontent.com/hernandezfo/AttachDocumentsforViewers/master/README.md",
"download": "https://github.com/hernandezfo/AttachDocumentsforViewers/releases/download/0.0.1/AttachDocumentsforViewers-0.0.1.zip",
"remote_install": true,
"compatible_version": ">=1.2.5"
},
"zulip": {
"title": "Zulip",
"version": "1.1.0",
"author": "Peter Fejer",
"license": "MIT",
"description": "Receive individual or project notifications on Zulip.",
"homepage": "https://github.com/ptr0x01/kanboard-plugin-zulip",
"readme": "https://github.com/ptr0x01/kanboard-plugin-zulip/blob/master/README.md",
"download": "https://github.com/ptr0x01/kanboard-plugin-zulip/releases/download/1.1.0/Zulip.zip",
"remote_install": true,
"compatible_version": ">=1.2.5"
},
"cas-auth": {
"title": "CAS Authentication",
"version": "1.0.0",
"author": "Jamaïca Servier",
"license": "CC BY-NA-SA 4.0",
"description": "Use CAS as authentication provider.",
"homepage": "https://github.com/DSIEtudes/plugin-cas-auth",
"readme": "https://raw.githubusercontent.com/DSIEtudes/plugin-cas-auth/master/README.md",
"download": "https://github.com/DSIEtudes/plugin-cas-auth/releases/download/1.0.0/CASAuth-1.0.0.zip",
"remote_install": true,
"compatible_version": ">=1.2.5"
},
"offline": {
"title": "Offline",
"version": "1.0.0",
"author": "Andrei Volgin, ipunkt Business Solutions",
"license": "MIT",
"description": "This Plugin is used to automatically alert users when they've lost internet connectivity.",
"homepage": "https://github.com/ipunkt/KanboardOffline",
"readme": "https://github.com/ipunkt/KanboardOffline/blob/master/README.md",
"download": "https://github.com/ipunkt/KanboardOffline/releases/download/1.0.0/OfflineKanboardPlugin-1.0.0.zip",
"remote_install": true,
"compatible_version": ">=1.2.5"
},
"search": {
"title": "Search plugin",
"version": "1.1.0",
"author": "Andrei Volgin, ipunkt Business Solutions",
"license": "MIT",
"description": "This Plugin is created for advanced fulltext search within all Projects. The search will be performed in Task title, Task description, Task comments, Subtask title and in Attachments. All 5 filters can be turned on/off in Kanboard Settings page.",
"homepage": "https://github.com/ipunkt/KanboardSearch",
"readme": "https://github.com/ipunkt/KanboardSearch/blob/master/README.md",
"download": "https://github.com/ipunkt/KanboardSearch/releases/download/v1.1.0/KanboardSearchPlugin-1.1.0.zip",
"remote_install": true,
"compatible_version": ">=1.2.5"
},
"CommentActions": {
"title": "Comment Actions",
"version": "1.0.1",
"author": "Andrei Volgin, ipunkt Business Solutions",
"license": "MIT",
"description": "This plugin gives the ability to assign actual Task (direct in comment-create section) to one of the users in Project.",
"homepage": "https://github.com/ipunkt/KanboardCommentActions",
"readme": "https://github.com/ipunkt/KanboardCommentActions/blob/master/README.md",
"download": "https://github.com/ipunkt/KanboardCommentActions/releases/download/v1.0.1/KanboardCommentActions-1.0.1.zip",
"remote_install": true,
"compatible_version": ">=1.2.5"
},
"TaskButtonsReposition": {
"title": "Task Buttons reposition",
"version": "1.0.0",
"author": "Andrei Volgin, ipunkt Business Solutions",
"license": "MIT",
"description": "By this Plugin some action buttons are duplicated from sidebar list to corresponding accordion section in Task content view.",
"homepage": "https://github.com/ipunkt/KanboardTaskButtonsReposition",
"readme": "https://github.com/ipunkt/KanboardTaskButtonsReposition/blob/1.0.0/README.md",
"download": "https://github.com/ipunkt/KanboardTaskButtonsReposition/releases/download/v1.0.0/KanboardTaskButtonsReposition-1.0.0.zip",
"remote_install": true,
"compatible_version": ">=1.2.5"
},
"KanboardProjectInvitation": {
"title": "Project Invitation",
"version": "1.0.0",
"author": "Andrei Volgin / Hussein Khalil, ipunkt Business Solutions",
"license": "MIT",
"description": "Plugin is used to invite new users to actual Project by typing user's email. Input for invitation is located in Project Settings->Permissions.",
"homepage": "https://github.com/ipunkt/KanboardProjectInvitation",
"readme": "https://github.com/ipunkt/KanboardProjectInvitation/blob/master/README.md",
"download": "https://github.com/ipunkt/KanboardProjectInvitation/releases/download/v1.0.0/KanboardProjectInvitation-1.0.0.zip",
"remote_install": true,
"compatible_version": ">=1.0.11"
},
"GrabScroll": {
"title": "GrabScroll",
"version": "0.2.1",
"author": "Ramón Cahenzli",
"license": "MIT",
"description": "Click and drag anywhere on your Kanboard to scroll horizontally.",
"homepage": "https://github.com/psy-q/kanboard-plugin-grabscroll",
"readme": "https://github.com/psy-q/kanboard-plugin-grabscroll/blob/master/README.md",
"download": "https://github.com/psy-q/kanboard-plugin-grabscroll/archive/0.2.1.tar.gz",
"remote_install": false,
"compatible_version": ">=1.2.10"
}
}