forked from kanboard/website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugins.html
917 lines (899 loc) · 56.8 KB
/
plugins.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Kanboard Plugins</title>
<link rel="icon" type="images/png" href="/assets/img/favicon.png">
<link rel="apple-touch-icon" href="/assets/img/touch-icon-iphone.png">
<link rel="apple-touch-icon" sizes="72x72" href="/assets/img/touch-icon-ipad.png">
<link rel="apple-touch-icon" sizes="114x114" href="/assets/img/touch-icon-iphone-retina.png">
<link rel="apple-touch-icon" sizes="144x144" href="/assets/img/touch-icon-ipad-retina.png">
<link rel="alternate" type="application/atom+xml" title="Kanboard Releases" href="https://github.com/kanboard/kanboard/releases.atom">
<style>
body {
color: #555;
font-family: 'Helvetica Neue', Helvetica, sans-serif;
font-size: 110%;
margin: 0 auto;
max-width: 800px;
padding-left: 5px;
padding-right: 5px;
}
a {
color: #3366CC;
border: 1px solid rgba(255, 255, 255, 0);
}
a:focus {
outline: 0;
color: red;
text-decoration: none;
border: 1px dotted #aaa;
}
a:hover {
color: #333;
text-decoration: none;
}
li {
margin-bottom: 10px;
line-height: 18px;
}
li ul {
margin-top: 5px;
}
li a {
overflow-wrap: break-word;
}
dt {
margin-bottom: 8px;
color: #555;
font-size: 1.3em;
}
dt a {
color: #3366CC;
font-weight: 400;
}
dt a:hover,
dt a:focus {
color: #555;
text-decoration: none;
}
dd {
margin-bottom: 15px;
margin-left: 15px;
border-left: 3px solid #eee;
padding-left: 10px;
line-height: 1.4em;
color: #999;
font-weight: 300;
}
dd ul {
padding-left: 20px;
}
dd li {
list-style-type: circle;
}
input[type="text"] {
border: 1px solid #ccc;
padding: 3px;
height: 22px;
width: 250px;
font-size: 99%;
margin-bottom: 15px;
}
input[type="text"]:focus {
color: #000;
border-color: rgba(82, 168, 236, 0.8);
outline: 0;
box-shadow: 0 0 8px rgba(82, 168, 236, 0.6);
}
#plugins dt {
font-size: 1.0em;
}
footer {
text-align: center;
font-size: 0.9em;
margin-top: 80px;
margin-bottom: 50px;
}
</style>
</head>
<body>
<div id="overview">
<h1>Kanboard Plugins</h1>
<p>You can extend the features of Kanboard by installing some extensions.</p>
<p><em>There is no approval process and code review. This is up to you to validate the compatibility of these plugins with your Kanboard instance.</em></p>
</div>
<div id="plugins">
<input type="text" id="pluginsfilter_input" onkeyup="pluginFilter()" placeholder="Search for plugin.." title="Search input for plugin filter">
<dl id="pluginsfilter">
<dt><a href="https://github.com/Chaosmeister/KADIFF">Activitystream diff</a></dt>
<dd>
<p>Shows a side-by-side diff if applicable in the activity streams</p>
<p><em>By Tomas Dittmann</em></p>
</dd>
<dt><a href="https://github.com/Zaunmich/mathjaxForKanboard">Add MathJax to Kanboard</a></dt>
<dd>
<p>Adds MathJax capabilites to your Kanboard. Use $$ \alpha $$ for inline math and $$$ \beta $$$ for block math</p>
<p><em>By Michael Zauner</em></p>
</dd>
<dt><a href="https://github.com/aljawaid/AddressBook">Address Book</a></dt>
<dd>
<p>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. 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.</p>
<p><em>By aljawaid</em></p>
</dd>
<dt><a href="https://github.com/aljawaid/AgileIndicators">AgileIndicators</a></dt>
<dd>
<p>Agile Indicators for Kanboard 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.</p>
<p><em>By aljawaid</em></p>
</dd>
<dt><a href="https://github.com/kanboard/plugin-s3">Amazon S3 Storage</a></dt>
<dd>
<p>This plugin stores uploaded files to Amazon S3 instead of storing files on the local file system.</p>
<p><em>By Frédéric Guillot</em></p>
</dd>
<dt><a href="https://github.com/aljawaid/ApplicationBranding">ApplicationBranding</a></dt>
<dd>
<p>This plugin will rename your installation to 'My Workspace' and include matching device icons in the site metadata for a better user experience. A revamped login 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.</p>
<p><em>By aljawaid</em></p>
</dd>
<dt><a href="https://github.com/dmorlitz/kanboard-TaskAssignCategory">Assign category when moving cards to specified column</a></dt>
<dd>
<p>Adds an automatic action which allows you to set the category on a card when moved to a specified column.</p>
<p><em>By David Morlitz</em></p>
</dd>
<dt><a href="https://github.com/dmorlitz/kanboard-TaskAssignDateToUndated">Assign date to undated cards</a></dt>
<dd>
<p>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.</p>
<p><em>By David Morlitz</em></p>
</dd>
<dt><a href="https://github.com/jclwilson/kanboard-plugin-assignduedate">Assign due date when moving card to specified column</a></dt>
<dd>
<p>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</p>
<p><em>By Jacob Charles Wilson</em></p>
</dd>
<dt><a href="https://github.com/hernandezfo/AttachDocumentsforViewers">Attach Documents for Project Viewers</a></dt>
<dd>
<p>This plugin will allow Project Viewers to attach documents to tasks.</p>
<p><em>Franklin Hernandez</em></p>
</dd>
<dt><a href="https://github.com/creecros/SendEmailCreator">Auto Email Extended Actions</a></dt>
<dd>
<p>This plugin will add 4 new automatic email actions to Kanboard.</p>
<ul>
<li>Send task by email to assignee</li>
<li>Send task by email to creator</li>
<li>Send email of an impending due date</li>
<li>Send email of an impending subtask due date, requires <a href="https://github.com/eSkiSo/Subtaskdate">Subtask Due Date Plugin</a></li>
</ul>
<p><em>By Craig Crosby</em></p>
</dd>
<dt><a href="https://github.com/creecros/AutoSubtasks">Auto Subtask Creation</a></dt>
<dd>
<p>Automatic action to create subtasks when a task is created or moves column.</p>
<p><em>By Craig Crosby</em></p>
</dd>
<dt><a href="https://github.com/aljawaid/AutomaticActionUX">AutomaticActionUX</a></dt>
<dd>
<p>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.</p>
<p><em>By aljawaid</em></p>
</dd>
<dt><a href="https://github.com/vistree/kanboard-backlog">Backlog</a></dt>
<dd>
<p>Plugin to add a backlog column with full height to project board. One Column to rule them all.</p>
<p><em>By vistree + creecros</em></p>
</dd>
<dt><a href="https://github.com/creecros/Bak2topbotm">Back to Top and Bottom buttons</a></dt>
<dd>
<p>Adds a back to top and bottom button to Kanboard Task Summary.</p>
<p><em>By Craig Crosby</em></p>
</dd>
<dt><a href="https://github.com/kanboard/plugin-beanstalk">Beanstalk</a></dt>
<dd>
<p>Use Beanstalkd to process background jobs.</p>
<p><em>By Frédéric Guillot</em></p>
</dd>
<dt><a href="https://github.com/kanboard/plugin-bitbucket-webhook">Bitbucket Webhook</a></dt>
<dd>
<p>Bind Bitbucket webhook events to Kanboard automatic actions.</p>
<p><em>By Frédéric Guillot</em></p>
</dd>
<dt><a href="https://github.com/bgibout/blueboard">Blueboard</a></dt>
<dd>
<p>Simple blue CSS Theme.</p>
<p><em>By bgibout</em></p>
</dd>
<dt><a href="https://github.com/BlueTeck/kanboard_plugin_boardcustomizer">BoardCustomizer</a></dt>
<dd>
<p>Customize board and card styles per user.</p>
<p><em>By BlueTeck, Craig Crosby, Jake G</em></p>
</dd>
<dt><a href="https://github.com/kanboard/plugin-broadcast">Broadcast</a></dt>
<dd>
<p>Plugin to broadcast messages to users via the application or email.</p>
<p><em>By Frédéric Guillot</em></p>
</dd>
<dt><a href="https://github.com/kanboard/plugin-budget">Budget</a></dt>
<dd>
<p>Budget planning based on sub-task time tracking: create budget lines, See the expenses based on sub-task time tracking, Manage user hourly rates.</p>
<p><em>By Frédéric Guillot</em></p>
</dd>
<dt><a href="https://codeberg.org/abu/Calendar">Calendar</a></dt>
<dd>
<p>Embedded calendar into Kanboard.</p>
<p><em>By Frédéric Guillot, Alfred Bühler</em></p>
</dd>
<dt><a href="https://github.com/dmorlitz/kanboard-CardPushDate">CardPushDate</a></dt>
<dd>
<p>Add action buttons to cards - including pushing due date, viewing last comment, edit, close and move.</p>
<p><em>By David Morlitz</em></p>
</dd>
<dt><a href="https://github.com/DSIEtudes/plugin-cas-auth">CAS Authentication</a></dt>
<dd>
<p>Use CAS as authentication provider.</p>
<p><em>By Jamaïca Servier (École des Ponts ParisTech)</em></p>
</dd>
<dt><a href="https://github.com/kanboard/plugin-chat">Chat</a></dt>
<dd>
<p>Minimalist chat for small teams.</p>
<p><em>By Frédéric Guillot</em></p>
</dd>
<dt><a href="https://github.com/manne65-hd/kanboard-ClearDueDateTaskNotMovedColumn">ClearDueDateTaskNotMovedColumn</a></dt>
<dd>
<p>Adds an automatic action, that allows you to clear the due date of tasks in a specific column, that haven't been moved during a given period.</p>
<p><em>By Manfred Hoffmann</em></p>
</dd>
<dt><a href="https://github.com/kanboard/plugin-client-certificate">Client SSL Certificate Authentication</a></dt>
<dd>
<p>Use SSL client certificate for Kanboard authentication.</p>
<p><em>By Frédéric Guillot</em></p>
</dd>
<dt><a href="https://github.com/aljawaid/ColorManager">ColorManager</a></dt>
<dd>
<p>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 interface.</p>
<p><em>By aljawaid</em></p>
</dd>
<dt><a href="https://github.com/ipunkt/KanboardCommentActions">Comment Actions</a></dt>
<dd>
<p>This plugin gives the ability to assign actual Task (direct in comment-create section) to one of the users in Project.</p>
<p><em>By Andrei Volgin, ipunkt Business Solutions</em></p>
</dd>
<dt><a href="https://github.com/enricofrigo/kanboard/tree/master/plugin-comment-tooltip">Comment Tooltip</a></dt>
<dd>
<p>Show task's comments as tooltip as in older kanboard version.</p>
<p><em>By Enrico Frigo</em></p>
</dd>
<dt><a href="https://github.com/creecros/opencomment">Commenting only for Project Viewers</a></dt>
<dd>
<p>Plugin adds commenting abilities for Project Viewers.</p>
<p><em>By Craig Crosby</em></p>
</dd>
<dt><a href="https://gitlab.com/smacz/kanboard-completedcomplexity">Completed Complexity</a></dt>
<dd>
<p>Plugin to 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.</p>
<p><em>By Andrew Cziryak</em></p>
</dd>
<dt><a href="https://github.com/aljawaid/ContentCleaner">ContentCleaner</a></dt>
<dd>
<p>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.</p>
<p><em>By aljawaid</em></p>
</dd>
<dt><a href="https://github.com/aljawaid/CostControl">CostControl</a></dt>
<dd>
<p>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. This plugin replaces and extends the features from the original <a href="https://github.com/kanboard/plugin-budget">Budget</a> plugin enabling projects to have an associated cost element.</p>
<p><em>By aljawaid</em></p>
</dd>
<dt><a href="https://github.com/BlueTeck/kanboard_plugin_coverimage">Coverimage</a></dt>
<dd>
<p>This plugin adds a coverimage function to the board, and a project logo function to projects.</p>
<p><em>By BlueTeck</em></p>
</dd>
<dt><a href="https://github.com/creecros/Creecros_Filter_Pack">Creecros Filter Pack.</a></dt>
<dd>
<p>A collection of filters. Make requests for additional filters on issue board.</p>
<p><em>By Craig Crosby</em></p>
</dd>
<dt><a href="https://github.com/creecros/Customizer">Customizer</a></dt>
<dd>
<p>GUI to add logos, favicon, customize login page, multiple themes, manage themes, create themes.</p>
<p><em>By Craig Crosby</em></p>
</dd>
<dt><a href="https://github.com/PapeCoding/kanboard-CustomUserCSS">CustomUserCSS</a></dt>
<dd>
<p>Adds a setting for custom CSS per user</p>
<p><em>By Sebastian Pape</em></p>
</dd>
<dt><a href="https://github.com/kanboard/plugin-database-storage">Database Storage</a></dt>
<dd>
<p>This plugin stores uploaded files into the database instead of using the local filesystem.</p>
<p><em>By Frédéric Guillot</em></p>
</dd>
<dt><a href="https://github.com/Chaosmeister/DefinitionOfDone">Definition of done</a></dt>
<dd>
<p>Adds a simple checklist to the taskview, similar to subtasks. Each entry consists of a title-, a description- and a toggleable "done"-field - compatible with MarkdownPlus</p>
<p><em>By Tomas Dittmann</em></p>
</dd>
<dt><a href="https://github.com/JustFxDev/kanboard-duedate">Due Date sorting</a></dt>
<dd>
<p>Allows sorting all tasks in all columns by due date, date of last modification or how they were placed on the board. With three clicks.</p>
<p><em>By JustFxDev (Fx), David Morlitz</em></p>
</dd>
<dt><a href="https://github.com/greyaz/EmbedAnything">EmbedAnything</a></dt>
<dd>
<p>Embed anything into Kanboard. This plugin utilizes HTML iframes and allows you to embed any web content into your project as a stand-alone page.</p>
<p><em>By greyaz</em></p>
</dd>
<dt><a href="https://github.com/Chaosmeister/EAR">Enable attachment renaming</a></dt>
<dd>
<p>Adds a button on attachments that allows you to rename them</p>
<p><em>By Tomas Dittmann</em></p>
</dd>
<dt><a href="https://github.com/kenlog/EncryptedContent">Encrypted Content</a></dt>
<dd>
<p>This plugin allows the insertion of text content encrypted in the kanboard database, with the use of random keys.</p>
<p><em>Valentino Pesce</em></p>
</dd>
<dt><a href="https://github.com/kenlog/Essential">Essential</a></dt>
<dd>
<p>Essential theme returns a new style to your kanboard.</p>
<p><em>Valentino Pesce</em></p>
</dd>
<dt><a href="https://codeberg.org/abu/EssentialTheme">EssentialTheme</a></dt>
<dd>
<p>A modern theme for Kanboard, returning a new style to your instance.</p>
<p><em>Valentino Pesce, Alfred Bühler</em></p>
</dd>
<dt><a href="https://github.com/atcomputing/kanboard-ExtendedMail">Extend comment by email</a></dt>
<dd>
<p>Extend comment by email with templates and reply-to</p>
<p><em>Rens Sikma</em></p>
</dd>
<dt><a href="https://github.com/aljawaid/FontSwitcher">FontSwitcher</a></dt>
<dd>
<p>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. 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.</p>
<p><em>By aljawaid</em></p>
</dd>
<dt><a href="https://github.com/kanboard/plugin-gantt">Gantt</a></dt>
<dd>
<p>Gantt charts for tasks and projects.</p>
<p><em>By Frédéric Guillot</em></p>
</dd>
<dt><a href="https://github.com/chriswep/plugin-gitea-webhook">Gitea Webhook</a></dt>
<dd>
<p>Connect Gitea webhook events to Kanboard automatic actions.</p>
<p><em>By Chris Metz</em></p>
</dd>
<dt><a href="https://github.com/kanboard/plugin-github-auth">GitHub Authentication</a></dt>
<dd>
<p>Use GitHub as authentication provider.</p>
<p><em>By Frédéric Guillot</em></p>
</dd>
<dt><a href="https://github.com/kanboard/plugin-github-frontend">GitHub Frontend</a></dt>
<dd>
<p>Use Kanboard to manage GitHub Issues.</p>
<p><em>By Frédéric Guillot</em></p>
</dd>
<dt><a href="https://github.com/kanboard/plugin-github-webhook">GitHub Webhook</a></dt>
<dd>
<p>Connect GitHub webhook events to Kanboard automatic actions.</p>
<p><em>By Frédéric Guillot</em></p>
</dd>
<dt><a href="https://github.com/kanboard/plugin-gitlab-auth">GitLab Authentication</a></dt>
<dd>
<p>Use GitLab as authentication provider.</p>
<p><em>By Frédéric Guillot</em></p>
</dd>
<dt><a href="https://github.com/kanboard/plugin-gitlab-webhook">GitLab Webhook</a></dt>
<dd>
<p>Connect GitLab webhook events to Kanboard automatic actions.</p>
<p><em>By Frédéric Guillot</em></p>
</dd>
<dt><a href="https://github.com/aljawaid/Glancer">Glancer</a></dt>
<dd>
<p>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. Following the 'Getting Things Done' methodology, productive users can glance through their workflow easily.</p>
<p><em>By aljawaid</em></p>
</dd>
<dt><a href="https://github.com/kanboard/plugin-gogs-webhook">Gogs Webhook</a></dt>
<dd>
<p>Connect Gogs webhook events to Kanboard automatic actions.</p>
<p><em>By Frédéric Guillot</em></p>
</dd>
<dt><a href="https://github.com/kanboard/plugin-google-auth">Google Authentication</a></dt>
<dd>
<p>Use Google as authentication provider.</p>
<p><em>By Frédéric Guillot</em></p>
</dd>
<dt><a href="https://github.com/psy-q/kanboard-plugin-grabscroll">GrabScroll</a></dt>
<dd>
<p>Click and drag anywhere on your Kanboard to scroll horizontally.</p>
<p><em>By Ramón Cahenzli</em></p>
</dd>
<dt><a href="https://github.com/kanboard/plugin-gravatar">Gravatar</a></dt>
<dd>
<p>Use Gravatar to display user avatars images.</p>
<p><em>By Frédéric Guillot</em></p>
</dd>
<dt><a href="https://github.com/Confexion/Greenwing">Greenwing</a></dt>
<dd>
<p>Greenwing is a kanboard beautify theme with a modern design.</p>
<p><em>By Confexion</em></p>
</dd>
<dt><a href="https://github.com/creecros/Group_assign">Group assignment for tasks</a></dt>
<dd>
<p>Plugin adds Group Assignment and additional multiple users assignment for tasks</p>
<p><em>By Craig Crosby</em></p>
</dd>
<dt><a href="https://github.com/Cyboulette/Group_owners">Group owners</a></dt>
<dd>
<p>Plugin that allows application managers to create their own groups and manage it</p>
<p><em>By Cyboulette</em></p>
</dd>
<dt><a href="https://github.com/kenlog/HighlightCodeSyntax">Highlight Code Syntax</a></dt>
<dd>
<p>For code snippets the plugin is able to highlight code syntax in more than 151 languages, including PHP, Javascript, Python, HTML and CSS.</p>
<p><em>By Valentino Pesce</em></p>
</dd>
<dt><a href="https://github.com/kanboard/plugin-hipchat">Hipchat</a></dt>
<dd>
<p>Receive individual or project notifications on Hipchat.</p>
<p><em>By Frédéric Guillot</em></p>
</dd>
<dt><a href="https://codeberg.org/abu/ICalConfig">ICalConfig</a></dt>
<dd>
<p>Allow some configuration of the iCal calendar feeds.</p>
<p><em>By Alfred Bühler</em></p>
</dd>
<dt><a href="https://github.com/RocketMan/plugin-imap-user-auth">IMAP User Authentication</a></dt>
<dd>
<p>Login to Kanboard using your IMAP credentials</p>
<p><em>By Jim Mason</em></p>
</dd>
<dt><a href="https://github.com/creecros/userimport_wgroups">Import user with group</a></dt>
<dd>
<p>Adds a group name field to Import via CSV.</p>
<p><em>By Craig Crosby</em></p>
</dd>
<dt><a href="https://github.com/juehv/kanboard-InstantActions">Instant Actions for Kanboard Tasks</a></dt>
<dd>
<p>Add buttons to tasks in board view for edit, delete and close them.</p>
<p><em>By Jens Heuschkel et. al.</em></p>
</dd>
<dt><a href="https://github.com/kanboard/plugin-jabber">Jabber</a></dt>
<dd>
<p>Receive individual or project notifications on Jabber.</p>
<p><em>By Frédéric Guillot</em></p>
</dd>
<dt><a href="https://github.com/aljawaid/KanboardCSS">KanboardCSS</a></dt>
<dd>
<p>This pure CSS theme replaces the look and feel of the Kanboard user interface. For modern browsers using gradients and shades of blue and red, KanboardCSS refreshes the the user experience. A new animated notification icon easily identifies new messages without affecting browser performance. All tables and forms are restyled to save screen space and improve productivity. Install with FontSwitcher to give a complete new overhaul to your application.</p>
<p><em>By aljawaid</em></p>
</dd>
<dt><a href="https://github.com/aljawaid/KanboardEmailHistory">KanboardEmailHistory</a></dt>
<dd>
<p>This plugin adds a new Automatic Action to provide any user or department to receive a final email report when a task is closed. Automatic emails are sent detailing the task description including the full comment history. Let this plugin create a digital file copy of your tasks using advanced options including emailing different recipients, adding comment logs and a fallback for a blank email subject line.</p>
<p><em>By aljawaid</em></p>
</dd>
<dt><a href="https://gitlab.com/taeluf/php/kanboard-essentials">Kanboard Essentials</a></dt>
<dd>
<p>Adds many quality of life features, like edit buttons on columns & cards, among others.</p>
<p><em>By Taeluf</em></p>
</dd>
<dt><a href="https://github.com/kenlog/KangarooJump">KangarooJump</a></dt>
<dd>
<p>You can switch from one task to another by entering number on any page of your Kanboard.</p>
<p><em>By Valentino Pesce</em></p>
</dd>
<dt><a href="https://github.com/theobald-software/KanboardPermalink">KanboardPermalink</a></dt>
<dd>
<p>This plugin adds a link to Actions sidebar menu in tasks and in the dropdown menu on Boards that copies the relevant task link to the clipboard. This is especially useful when frequently moving tasks between projects and wanting to quickly copy links for sharing.</p>
<p><em>By Theobald Software GmbH</em></p>
</dd>
<dt><a href="https://github.com/aljawaid/KanboardSupport">KanboardSupport</a></dt>
<dd>
<p>Display the environment and configuration settings of your Kanboard instance all from one dedicated page. View and compare all options from the config file directly from the interface. Users will benefit from identifying problems caused by missing extensions and server misconfigurations without needing backend access to the server.</p>
<p>Made for both regular users and administrators, this privacy and user friendly plugin provides a range of features including integrated webhook documentation, downloading backup copies of the config file and displaying, downloading or deleting the debug log file.</p>
<p><em>By aljawaid</em></p>
</dd>
<dt><a href="https://github.com/kanboard/plugin-mailgun">Mailgun</a></dt>
<dd>
<p>Use the Mailgun API to send emails and create tasks from emails.</p>
<p><em>By Frédéric Guillot</em></p>
</dd>
<dt><a href="https://github.com/creecros/Mailmagik">Mailmagik</a></dt>
<dd>
<p>Have you ever asked yourself, how do I send an email to Kanboard to create a task? Did someone suggest the MailGun Plugin, and you got stumped, annoyed, and finally figured it out to realize that it cost your hard earned money to keep using it? Did someone then suggest something like Zapier and the API to try to accomplish this, and you found yourself asking WTF are they talking about? WELL THIS IS THE PLUGIN FOR YOU! Install this plugin today, connect to an IMAP server of your choosing, and boom! You will be making MailMagik in no time! So come on, give it a go, and let's all make MailMagik happen together! This plugin allows you to connect Kanboard directly to an IMAP server to Send emails directly to a task, Send emails to a project to automatically be converted into a task within the project, Send emails to a task to automatically convert into a task comment.</p>
<p><em>By Craig Crosby & Alfred Bühler</em></p>
</dd>
<dt><a href="https://github.com/creecros/MarkdownPlus">MarkdownPlus</a></dt>
<dd>
<p>Improved Markdown, with check boxes, emoji shortcode, inline html, etc...</p>
<p><em>Craig Crosby</em></p>
</dd>
<dt><a href="https://github.com/aljawaid/MatomoConnector">MatomoConnector</a></dt>
<dd>
<p>Connect your Kanboard instance to Matomo Analytics to track visitors to your site. Set the standard tracking code or use the optional JavaScript fallback code with further options for image tracking.</p>
<p><em>By aljawaid</em></p>
</dd>
<dt><a href="https://github.com/chriswep/kanboard-plugin-matrix">Matrix</a></dt>
<dd>
<p>Send Kanboard notifications to Matrix Synapse (federated messaging platform).</p>
<p><em>By Chris Metz</em></p>
</dd>
<dt><a href="https://github.com/kanboard/plugin-mattermost">Mattermost</a></dt>
<dd>
<p>Send Kanboard notifications to Mattermost (self-hosted Slack clone).</p>
<p><em>By Frédéric Guillot</em></p>
</dd>
<dt><a href="https://github.com/BlueTeck/kanboard_plugin_metadata">Metadata Manager</a></dt>
<dd>
<p>This plugin adds a GUI to manage custom metadata for task, projects and user.</p>
<p><em>By BlueTeck</em></p>
</dd>
<dt><a href="https://github.com/creecros/MetaMagik">MetaMagik</a></dt>
<dd>
<p>Customizable Fields for Tasks, with advanced GUI and many more features, includes Metadata Manager.</p>
<p><em>By Craig Crosby + BlueTeck</em></p>
</dd>
<dt><a href="https://github.com/oliviermaridat/kanboard-milestone-plugin">Milestone</a></dt>
<dd>
<p>Add a section for milestones to show their related tasks.</p>
<p><em>By Olivier Maridat</em></p>
</dd>
<dt><a href="https://github.com/kenlog/MinimizeSidebar">MinimizeSidebar</a></dt>
<dd>
<p>Option to minimize sidebar.</p>
<p><em>By Valentino Pesce</em></p>
</dd>
<dt><a href="https://github.com/dmorlitz/kanboard-TaskMoveOnDueDate">Move cards to specific columns when due date passed</a></dt>
<dd>
<p>Adds an automatic action which allows you to move cards to a specific column when the due date has passed.</p>
<p><em>By David Morlitz</em></p>
</dd>
<dt><a href="https://github.com/kenlog/Moon">Moon</a></dt>
<dd>
<p>This theme allows you to add special features like replacing the logo and adds syntax highlighting for Markdown code.</p>
<p><em>By Valentino Pesce</em></p>
</dd>
<dt><a href="https://github.com/kenlog/Nebula">Nebula</a></dt>
<dd>
<p>This theme allows you to add special features like replacing the logo and adds syntax highlighting for Markdown code.</p>
<p><em>By Valentino Pesce</em></p>
</dd>
<dt><a href="https://gitlab.com/colonelpopcorn/kanboard-notes-plugin">Notes</a></dt>
<dd>
<p>A simple notes plugin for taking notes on your dashboard in markdown.</p>
<p><em>By Jonathan Ling</em></p>
</dd>
<dt><a href="https://github.com/kanboard/plugin-oauth2">OAuth2</a></dt>
<dd>
<p>Generic OAuth2 plugin.</p>
<p><em>By Frédéric Guillot</em></p>
</dd>
<dt><a href="https://github.com/ipunkt/KanboardOffline">Offline</a></dt>
<dd>
<p>This Plugin is used to automatically alert users when they've lost internet connection.</p>
<p><em>By Andrei Volgin, ipunkt Business Solutions</em></p>
</dd>
<dt><a href="https://github.com/BlueTeck/kanboard_plugin_overwrite_translation">Overwrite Translation</a></dt>
<dd>
<p>Overwrite default translations without touching kanboard files.</p>
<p><em>By BlueTeck</em></p>
</dd>
<dt><a href="https://github.com/kenlog/Oxygen">Oxygen</a></dt>
<dd>
<p>This theme allows you to add special features like replacing the logo and adds syntax highlighting for Markdown code.</p>
<p><em>By Valentino Pesce</em></p>
</dd>
<dt><a href="https://github.com/k10blogger/kanboard-plugin-outlook">Outlook</a></dt>
<dd>
<p>This added integration allows you to recieve notification on the Outlook as an incoming webhook email. </p>
<p><em>By Siddharth Kaul</em></p>
</dd>
<dt><a href="https://github.com/Chaosmeister/PITM">Paste image to markdown</a></dt>
<dd>
<p>Allows to paste images directly into markdown enabled textfields (task descriptions, comments, etc) - requires markdownplus</p>
<p><em>By Tomas Dittmann</em></p>
</dd>
<dt><a href="https://github.com/mer30hamid/PersianBoard">Persian Board</a></dt>
<dd>
<p>Make Kanboard compatible with Iranian Calendar (Persian or jalali Calendar) and support RTL (Right To Left) direction.</p>
<p><em>By Hamid Kord</em></p>
</dd>
<dt><a href="https://github.com/aljawaid/PluginManager">PluginManager</a></dt>
<dd>
<p>Replace the Installed Plugins section within the Kanboard interface with a new Plugin Manager and revamped Plugins Directory. Plugin Manager provides both users and developers with an improved comprehensive interface displaying a section for troubleshooting plugins and a new plugin structure breakdown for each plugin. View the building blocks of plugins and when they were last updated before you install them.</p>
<p><em>By aljawaid</em></p>
</dd>
<dt><a href="https://github.com/kanboard/plugin-postmark">Postmark</a></dt>
<dd>
<p>Use the Postmark API to send emails and create tasks from emails.</p>
<p><em>By Frédéric Guillot</em></p>
</dd>
<dt><a href="https://github.com/Chaosmeister/PAM">Project activity modifier</a></dt>
<dd>
<p>Add hide/show and delete buttons for administrators to every event on activity streams</p>
<p><em>By Tomas Dittmann</em></p>
</dd>
<dt><a href="https://github.com/ipunkt/KanboardProjectInvitation">Project Invitation</a></dt>
<dd>
<p>Plugin is used to invite new users to actual Project by typing user's email. Input for invitation is located in Project Settings->Permissions.</p>
<p><em>By Andrei Volgin / Hussein Khalil, ipunkt Business Solutions</em></p>
</dd>
<dt><a href="https://github.com/dmorlitz/kanboard-TaskPushDate">Push out due date on cards when moving to specific columns</a></dt>
<dd>
<p>Adds an automatic action which allows you to push the due date a specified number of days when moving cards to a specific column.</p>
<p><em>By David Morlitz</em></p>
</dd>
<dt><a href="https://gitlab.com/quamob/QuaBDD">QuaBDD</a></dt>
<dd>
<p>This plugin give you an new interface that help you create Gherkin tests for a task.</p>
<p><em>By Quamob</em></p>
</dd>
<dt><a href="https://gitlab.com/quamob/QuaCICD">QuaCICD</a></dt>
<dd>
<p>This plugin allow you to execute automated deployment in qualification and production directly on your board.</p>
<p><em>By Quamob</em></p>
</dd>
<dt><a href="https://github.com/kanboard/plugin-rabbitmq">RabbitMQ</a></dt>
<dd>
<p>This plugin use RabbitMQ to process background jobs for Kanboard.</p>
<p><em>By Frédéric Guillot</em></p>
</dd>
<dt><a href="https://github.com/BlueTeck/kanboard_plugin_relationgraph">Relation Graph</a></dt>
<dd>
<p>Show relations between tasks using a graph library.</p>
<p><em>By BlueTeck, Xavier Vidal</em></p>
</dd>
<dt><a href="https://github.com/Chaosmeister/RCB">Resizable codeblocks</a></dt>
<dd>
<p>Make codeblocks resizable, scrollable and also initially limit their height to 200px</p>
<p><em>By Tomas Dittmann</em></p>
</dd>
<dt><a href="https://github.com/kanboard/plugin-reverse-proxy-ldap">Reverse-Proxy Authentication with LDAP user provider</a></dt>
<dd>
<p>Authenticate users with Reverse-Proxy method but populate user information from the LDAP directory.</p>
<p><em>By Frédéric Guillot</em></p>
</dd>
<dt><a href="https://github.com/oliviermaridat/plugin-rocketchat">RocketChat</a></dt>
<dd>
<p>Receive individual or project notifications on RocketChat.</p>
<p><em>By Frédéric Guillot, Olivier Maridat</em></p>
</dd>
<dt><a href="https://github.com/ipunkt/KanboardSearch">Search Plugin</a></dt>
<dd>
<p>This Plugin is created for advanced fulltext search within all Projects.</p>
<p><em>By Andrei Volgin, ipunkt Business Solutions</em></p>
</dd>
<dt><a href="https://github.com/kanboard/plugin-registration">Self-Registration</a></dt>
<dd>
<p>Self-registration plugin to allow people to sign up on Kanboard.</p>
<p><em>By Frédéric Guillot</em></p>
</dd>
<dt><a href="https://github.com/kanboard/plugin-sendgrid">Sendgrid</a></dt>
<dd>
<p>Use the Sendgrid API to send emails and create tasks from emails.</p>
<p><em>By Frédéric Guillot</em></p>
</dd>
<dt><a href="https://github.com/stratmaster/kanboard-plugin-signal">Signal</a></dt>
<dd>
<p>Receive Kanboard notifications on Signal (via signal-cli).</p>
<p><em>By Benedikt Hopmann</em></p>
</dd>
<dt><a href="https://github.com/kanboard/plugin-slack">Slack</a></dt>
<dd>
<p>Receive individual or project notifications on Slack.</p>
<p><em>By Frédéric Guillot</em></p>
</dd>
<dt><a href="https://github.com/kanboard/plugin-sms-2fa">SMS Two-Factor Authentication</a></dt>
<dd>
<p>Use SMS text messages for two-factor authentication.</p>
<p><em>By Frédéric Guillot</em></p>
</dd>
<dt><a href="https://github.com/manne65-hd/Kanboard-SortBoardByDates">Sort Board by Dates</a></dt>
<dd>
<p>This plugin will allow boards to be sorted by different dates.</p>
<ul>
<li>Date due, started, created, modified, moved, closed ...</li>
<li>... or (of course) in kanboard default-mode</li>
<li>ONLY project-managers/admins can set the preferences via a new "Board sort-settings"-panel on a per-project base</li>
</ul>
<p><em>By Manfred Hoffmann</em></p>
</dd>
<dt><a href="https://github.com/kenlog/SoundNotification">Sound Notification</a></dt>
<dd>
<p>Each new notification will sound an alert sound.</p>
<p><em>By Valentino Pesce</em></p>
</dd>
<dt><a href="https://github.com/kuerme/kanboard-theme-spectre">Spectre Theme</a></dt>
<dd>
<p>Modern And Simple CSS theme.</p>
<p><em>By viggo</em></p>
</dd>
<dt><a href="https://github.com/biblibre/kanboard-plugin-StarredProjects">Starred Projects</a></dt>
<dd>
<p>Mark projects as favorite for faster access in dashboard</p>
<p><em>By BibLibre</em></p>
</dd>
<dt><a href="https://github.com/eSkiSo/Subtaskdate">Subtask Due Date</a></dt>
<dd>
<p>This plugin adds a Due Date to subtasks.</p>
<p><em>By Manuel Raposo</em></p>
</dd>
<dt><a href="https://github.com/kanboard/plugin-subtask-forecast">Subtask Forecast</a></dt>
<dd>
<p>This plugin display estimates of subtasks in the user calendar. The user timetable must be filled to see time slots in the calendar.</p>
<p><em>By Frédéric Guillot</em></p>
</dd>
<dt><a href="https://github.com/JustFxDev/SubtasksOnBoard">Subtasks on Board</a></dt>
<dd>
<p>Display subtasks of a task on the task cards on a board and run, start or clear them directly on the task card.</p>
<p><em>By JustFxDev (Fx), rfde</em></p>
</dd>
<dt><a href="https://github.com/kolossi/plugin-synology-chat">Synology Chat</a></dt>
<dd>
<p>Receive individual or project notifications on Synology Chat.</p>
<p><em>By Paul Sweeney</em></p>
</dd>
<dt><a href="https://github.com/greyaz/TableView">TableView</a></dt>
<dd>
<p>A Kanboard plugin that provides a table view of tasks in your project.</p>
<p><em>By greyaz</em></p>
</dd>
<dt><a href="https://github.com/TimoStahl/kanboard_plugin_taglist">Taglist</a></dt>
<dd>
<p>This plugin adds Filter Dropdown with all availiable tags.</p>
<p><em>By TimoStahl</em></p>
</dd>
<dt><a href="https://github.com/aljawaid/TagManager">TagManager</a></dt>
<dd>
<p>Use tags like you have never used them before. This plugin revamps the whole project and global tags concept to provide the user with a clearer process of creating and associating tags to better improve their workflow.</p>
<p><em>By aljawaid</em></p>
</dd>
<dt><a href="https://github.com/creecros/Task2pdf">Task2pdf</a></dt>
<dd>
<p>Convert a Task to a PDF, Printer Friendly!</p>
<p><em>By Craig Crosby</em></p>
</dd>
<dt><a href="https://github.com/manne65-hd/kanboard-TaskAssignPriorityToCategory">TaskAssignPriorityToCategory</a></dt>
<dd>
<p>Adds an automatic action to assign a priority based on a category.</p>
<p><em>By Manfred Hoffmann</em></p>
</dd>
<dt><a href="https://github.com/kanboard/plugin-task-board-date">Task Board Date</a></dt>
<dd>
<p>Add a new date field for tasks to define the visibility on the board and dashboard.</p>
<p><em>By Frédéric Guillot</em></p>
</dd>
<dt><a href="https://github.com/ipunkt/KanboardTaskButtonsReposition">Task Buttons Reposition</a></dt>
<dd>
<p>By this Plugin some action buttons are duplicated from sidebar list to corresponding accordion section in Task content view.</p>
<p><em>By Andrei Volgin, ipunkt Business Solutions</em></p>
</dd>
<dt><a href="https://github.com/kenlog/TaskProgressBar">TaskProgressBar</a></dt>
<dd>
<p>Show the progress bar of sub-tasks from the bulletin board</p>
<p><em>By Valentino Pesce</em></p>
</dd>
<dt><a href="https://github.com/manuvarkey/kanboard-plugin-telegram">Telegram</a></dt>
<dd>
<p>Receive individual or project notifications on Telegram.</p>
<p><em>By Manu Varkey</em></p>
</dd>
<dt><a href="https://github.com/aljawaid/TemplateManager">TemplateManager</a></dt>
<dd>
<p>Predefined Contents is replaced by the Template Manager. Improve consistency of your project data and save time for repetitive comments using saved templates. Project Editors can create, update and delete templates for each project. Templates can be created for task descriptions (core feature), comments (new feature), global templates (new feature) and email subjects (core feature) all in one place including adding notes and instructions separate to the template content to help keep content neat. The global templates feature shows for every project and can be used as a way to guide and advise users within tasks. Templates can also be useful in environments where auditing is required.</p>
<p><em>By aljawaid</em></p>
</dd>
<dt><a href="https://github.com/JustFxDev/ThemeMaestro">ThemeMaestro</a></dt>
<dd>
<p>A colorful theme to refresh the interface providing different color schemes.</p>
<p><em>By JustFxDev (Fx)</em></p>
</dd>
<dt><a href="https://github.com/greyaz/ThemeRevision">ThemeRevision for Kanboard</a></dt>
<dd>
<p>A clean and high-quality theme for Kanboard. It's aimed at better mobile experiences, common plugin compatibilities, and customization friendly.</p>
<p><em>By greyaz</em></p>
</dd>
<dt><a href="https://github.com/mrozigor/kanboard-add-time-interval-plugin">Time Interval Button</a></dt>
<dd>
<p>Simple plugins which adds button to incrementally change time spent on task.</p>
<p><em>By Igor Mroz</em></p>
</dd>
<dt><a href="https://github.com/kanboard/plugin-timetable">Timetable</a></dt>
<dd>
<p>Working timetable management for users.</p>
<p><em>By Frédéric Guillot</em></p>
</dd>
<dt><a href="https://gitlab.com/yv-kanboard-plugin/time-machine">Time Machine: Back to the Future</a></dt>
<dd>
<p>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</p>
<p><em>By Yohann Valentin</em></p>
</dd>
<dt><a href="https://github.com/stinnux/kanboard-Timetrackingeditor">Time Tracking Editor</a></dt>
<dd>
<p>Manually Add and Edit Time Tracking entries, add comments and select billable/not billable to time tracking entries. Export Time Tracking Entries as HTML.</p>
<p><em>By Stinnux</em></p>
</dd>
<dt><a href="https://github.com/Chaosmeister/TNID">Task number in details</a></dt>
<dd>
<p>Shows the task number in the task details, so if you use the MinimizeSidebar plugin, you can still see the tasknumber</p>
<p><em>By Tomas Dittmann</em></p>
</dd>
<dt><a href="https://github.com/kenlog/UpdateNotifier">Update Notifier</a></dt>
<dd>
<p>What is Update Notifier? The Update Notifier is a utility that scans installed plugin and displays a list of updates.</p>
<p><em>By Valentino Pesce</em></p>
</dd>
<dt><a href="https://github.com/aljawaid/URLCleaner">URLCleaner</a></dt>
<dd>
<p>This simple tool extends the rewriting of browser URLs for your Kanboard application. Sanitize those long URLs automatically creating neat pretty easy to remember bookmarks. This plugin extends URLs from the core and from plugins. <a href="https://docs.kanboard.org/v1/admin/url-rewriting/" target="_blank" title="Opens in a new window">URL Rewriting</a> must be correctly configured for this plugin to function properly.</p>
<p><em>By aljawaid</em></p>
</dd>
<dt><a href="https://github.com/greyaz/WechatWorkNotifier">Wechat Work Notifier</a></dt>
<dd>
<p>A notification plugin for Kanboard, which helps you receive notifications on Wechat Work (企业微信), aka Wecom.</p>
<p><em>By greyaz</em></p>
</dd>
<dt><a href="https://github.com/PapeCoding/kanboard-WeeklyRecurringTasks">WeeklyRecurringTasks</a></dt>
<dd>
<p>Duplicate Tasks by nightly Cron Job</p>
<p><em>By Sebastian Pape and Sebastien Diot</em></p>
</dd>
<dt><a href="https://github.com/manelperez/kanboard-plugin-voting">Weighted voting</a></dt>
<dd>
<p>This plugin add new features to Kanboard. Weighted voting for the evaluation of group activities in Kanboard.</p>
<p><em>By Manel Perez</em></p>
</dd>
<dt><a href="https://github.com/bw-hro/WeKanboard">WeKanboard</a></dt>
<dd>
<p>Yet another theme for Kanboard. Strongly inspired by the style of Wekan. Supports the Customizer plugin.</p>
<p><em>By Benno Waldhauer</em></p>
</dd>
<dt><a href="https://github.com/funktechno/kanboard-plugin-wiki">Wiki</a></dt>
<dd>
<p>Wiki to document projects.</p>
<p><em>By lastlink</em></p>
</dd>
<dt><a href="https://github.com/EpocDotFr/kanboard-wunderlist">Wunderlist</a></dt>
<dd>
<p>This plugin allows you to import Wunderlist tasks and lists directly from the user interface of Kanboard by uploading a Wunderlist export file.</p>
<p><em>By Maxime (Epoc)</em></p>
</dd>
<dt><a href="https://github.com/imfx77/kanboard-plugin-Wysiwyg-MD-Editor">Wysiwyg MD Editor</a></dt>
<dd>
<p>Integrates external MD editors into Kanboard in order to conveniently edit and preview the markdown textareas, as well as render the markdown fields in the Kanboard interface. Each editor may allow for different customizations of functionality, MD features, and UI themes. Rendering can parametrize theme, code highlight, and background transparency.</p>
<p><em>By Im[F(x)]</em></p>
</dd>
<dt><a href="https://github.com/ptr0x01/kanboard-plugin-zulip">Zulip</a></dt>
<dd>
<p>Receive individual or project notifications on Zulip.</p>
<p><em>By Peter Fejer</em></p>
</dd>
</dl>
</div>
<footer>
Discover <a href="https://miniflux.app/">Miniflux</a>, a minimalist of opinionated feed reader.
</footer>
<script>
function pluginFilter() {
var input, filter, dl, dt, dd, a, b, i;
input = document.getElementById("pluginsfilter_input");
filter = input.value.toUpperCase();
dl = document.getElementById("pluginsfilter");
dt = dl.getElementsByTagName("dt");
dd = dl.getElementsByTagName("dd");
for (i = 0; i < dt.length; i++) {
a = dt[i].innerHTML;
b = dd[i].innerHTML;
if (a.toUpperCase().indexOf(filter) > -1 || b.toUpperCase().indexOf(filter) > -1) {
dt[i].style.display = "";
dd[i].style.display = "";
} else {
dt[i].style.display = "none";
dd[i].style.display = "none";
}
}
}
</script>
</body>
</html>