forked from kanboard/website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugins.html
701 lines (683 loc) · 37.4 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
<!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/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/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/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/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/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</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://gitlab.com/smacz/kanboard-plugin-calendar">Calendar</a></dt>
<dd>
<p>Embedded calendar into Kanboard.</p>
<p><em>By Frédéric Guillot, forked and maintained by Andrew Cziryak</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/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/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/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/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://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/dmorlitz/kanboard-duedate">Due Date sorting</a></dt>
<dd>
<p>Allow boards to be sorted by card due date.</p>
<p><em>By David Morlitz</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://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/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/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/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/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://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>A useful and calm theme</p>
<p><em>By Aljawaid</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/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/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/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://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/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/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/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/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/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/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/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/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://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://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/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/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/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/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>
<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/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>
</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>