-
Notifications
You must be signed in to change notification settings - Fork 357
/
pl.x64.json
1605 lines (1605 loc) · 90 KB
/
pl.x64.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"name": "npp-pluginList",
"version": "1.7.4",
"arch": "64",
"npp-plugins": [
{
"folder-name": "3P",
"display-name": "3P - Progress Programmers Pal",
"version": "1.8.8",
"id": "505d2fbd6fb97a4660e65d3498e12f2ef21b4d6c30c91016a6300b4c0e818973",
"repository": "https://github.com/jcaillon/3P/releases/download/v1.8.8/3P_x64.zip",
"description": "[Requires .NET framework v4.6.1]\r\nDesigned to help writing OpenEdge ABL (formerly known as Progress 4GL) code. It provides :\r\n- a powerful auto-completion\r\n- tool-tips on every words\r\n- a code explorer to quickly navigate through your code\r\n- a file explorer to easily access all your sources\r\n- the ability to run/compile and even PROLINT your source file with an in-line visualization of errors\r\n- more than 50 options to better suit your needs\r\n- and so much more!\r\nVisit https://jcaillon.github.io/3P/ for more details on the plugin",
"author": "Julien Caillon",
"homepage": "https://jcaillon.github.io/3P/"
},
{
"folder-name": "ActiveX",
"display-name": "ActiveX Plugin",
"version": "1.1.8.7",
"id": "225110f20d750272c1300aa7c30e3b642702cffea2eadd9ee1a5e68fa3511c10",
"repository": "https://sourceforge.net/projects/nppactivexplugin/files/bin/ActiveX_x64_1_1_8_7.zip",
"description": "Allows you to control Notepad++ via ActiveX.\r\nYou can use ActiveX with many scripting languages (VBScript, JScript, PHP, ...) and other languages (C++, C+, VB.NET, Delphi, ...).\r\nSo you are not bound to a single language.",
"author": "Bananen-Joe",
"homepage": "https://sourceforge.net/projects/nppactivexplugin/"
},
{
"folder-name": "AnalysePlugin",
"display-name": "AnalysePlugin",
"version": "1.13.49.0",
"npp-compatible-versions": "[8.3,]",
"old-versions-compatibility": "[,1.12.47.0][,8.2.1]",
"id": "5ff269f9981d5b21342179e188a75795092068925c44f92048d4cca75e091afc",
"repository": "https://sourceforge.net/projects/analyseplugin/files/binaries/v01.13-R49/AnalysePlugin-v01.13-R49-x64.zip",
"description": "AnalysePlugin will help you to search for more than one search pattern at a time. Great for analysing big log files...\r\nLast changes and how to use you will find in Help... in Plugins Menu.",
"author": "Mattes H.",
"homepage": "https://sourceforge.net/projects/analyseplugin"
},
{
"folder-name": "nppAutoDetectIndent",
"display-name": "Auto Detect Indention",
"version": "2.3",
"npp-compatible-versions": "[8.3,]",
"old-versions-compatibility": "[,2.0][,8.2.1]",
"id": "5d1982a3fb4609d74dde0deaf631526646d393fc26e6d7a11c72f9d0456d69f1",
"repository": "https://github.com/Chocobo1/nppAutoDetectIndent/releases/download/2.3/x64.zip",
"description": "Detects indention (tab or spaces) and auto adjust Tab key on-the-fly.",
"author": "Mike Tzou (Chocobo1)",
"homepage": "https://github.com/Chocobo1/nppAutoDetectIndent"
},
{
"folder-name": "AutoCodepage",
"display-name": "AutoCodepage",
"version": "1.2.7",
"npp-compatible-versions": "[7.7,]",
"old-versions-compatibility": "[,1.2.4][7.7,]",
"id": "f8d7bf70ce06c39b40c35a1ddf2ef587fb158985f3a642ee2003ea726999c450",
"repository": "https://sourceforge.net/projects/autocodepage/files/v1.2.7/plugin/x64/AutoCodepage_v1.2.7_x64.zip",
"description": "Automatically sets a document's code page to your needs on loading or renaming a document, changing its language or activating its tab. Usefull especially when coding batch scripts.",
"author": "Andreas Heim",
"homepage": "https://sourceforge.net/projects/autocodepage"
},
{
"folder-name": "AutoEolFormat",
"display-name": "AutoEolFormat",
"version": "1.0.4",
"npp-compatible-versions": "[7.7,]",
"old-versions-compatibility": "[,1.0.2][7.7,]",
"id": "2498593a5533acd3416188b1eee740d7e35bc69d76ff048b9bab0462ff3210a6",
"repository": "https://sourceforge.net/projects/autoeolformat/files/v1.0.4/plugin/x64/AutoEolFormat_v1.0.4_x64.zip",
"description": "A plugin to automatically set a document's EOL (End Of Line) format to your needs on loading, saving or renaming a document or activating its tab.",
"author": "Andreas Heim",
"homepage": "https://sourceforge.net/projects/autoeolformat"
},
{
"folder-name": "NppScripts",
"display-name": "Automation Scripts",
"version": "2.0.0.0",
"id": "905fbb62dee256a4609f7860b280616cce3a131c8faff3916f89adcf52c3ec2a",
"repository": "https://github.com/oleg-shilo/scripts.npp/releases/download/v2.0.0.0/NppScripts.x64.zip",
"description": "C# based automation. Allows implementing a simple macros-like automations as well as the full scale script based plugins by means of C# scripts. The solution is based on CS-Script C# script engine.",
"author": "Oleg Shilo",
"homepage": "https://github.com/oleg-shilo"
},
{
"folder-name": "AutoSave",
"display-name": "AutoSave",
"version": "2.0",
"id": "1396d0f2a98be097c316be6639693b528b98f57afadf2f762d00eaf4e8d9ca60",
"repository": "https://github.com/francostellari/NppPlugins/raw/main/AutoSave/AutoSave_dll_2v00_x64.zip",
"description": "Automatically save the currently open files based on a timer schedule and/or upon the application losing focus.\r\nThe plugin offers several options to save the current (or all the files), selecting only the named ones, accessible through an options dialog box.",
"author": "Franco Stellari",
"homepage": "https://github.com/francostellari/NppPlugins"
},
{
"folder-name": "BetterMultiSelection",
"display-name": "BetterMultiSelection",
"version": "1.5",
"id": "a33dddd93d40a2bb595ea44eeb5bcdaefd3189c5fae3c40a052da9d02597bb63",
"repository": "https://github.com/dail8859/BetterMultiSelection/releases/download/v1.5/BetterMultiSelection_v1.5_x64.zip",
"description": "Provides better cursor movements when using multiple selections.",
"author": "Justin Dailey",
"homepage": "https://github.com/dail8859/BetterMultiSelection"
},
{
"folder-name": "BigFiles",
"display-name": "BigFiles - Open Very Large Files",
"version": "0.1.3",
"id": "BADB0BC15E38FFACBF7112C8FA5F31EAF139D2DC30171CB53CF3B0530426012E",
"repository": "https://github.com/superolmo/BigFiles/releases/download/v0.1.3.x64/BigFiles.zip",
"description": "Reads very large files. It does this by only showing a small buffer of the file and let the user move back anf forth in the page.\r\nThis is useful when you want to preview very large text files. Opening is done separately from Notepad++ and there is no option to save.\r\nhttps://github.com/superolmo/BigFiles",
"author": "Claudio Olmi",
"homepage": "https://github.com/superolmo/BigFiles"
},
{
"folder-name": "BookmarksDook",
"display-name": "Bookmarks@Dook",
"version": "4.0.4",
"id": "EBC9BFD352F33B60879F73A21CE9909B91600EE0D46EC26998B63E8B3BB8F69E",
"repository": "https://github.com/Dook1/Bookmarks-Dook/releases/download/v4.0.4/BookmarksDook.64.4.0.4.zip",
"description": "Bookmarks panel",
"author": "Dook",
"homepage": "https://github.com/Dook1/Bookmarks-Dook"
},
{
"folder-name": "BracketsCheck",
"display-name": "BracketsCheck",
"version": "1.2.2",
"id": "f9d53b1825723b566a024ddaef2a99673d22d55bbffb4ed77d25d8008d2059cc",
"repository": "https://github.com/niccord/BracketsCheck/releases/download/v1.2.3/BracketsCheck_1-2-3_x64.zip",
"description": "Helps to check if brackets in your file are balanced.\r\nYou can check all text in a file or only the part you selected.",
"author": "niccord",
"homepage": "https://github.com/niccord/BracketsCheck/"
},
{
"folder-name": "CADdyTools",
"display-name": "CADdyTools",
"version": "1.1.3.7",
"id": "65c03a40c28dd1b65489aa5dee4df5219ac1db476b751a9c3312aea3cb60cda2",
"repository": "https://github.com/MarioRosi/CADdyTools/releases/download/1.1.3.7/CADdyTools_v1137_x64.zip",
"description": "Notepad++-Plugin for manipulate CADdy-formated coordinate- and measure-textfiles",
"author": "Mario Rosenbohm",
"homepage": "https://github.com/MarioRosi/CADdyTools"
},
{
"folder-name": "CodeAlignmentNpp",
"display-name": "Code Alignment",
"version": "14.1.107",
"id": "A11C60AD2DCAF0064A5C3CCA01AA2D2A6743897875E23887867783A2756B796B",
"repository": "https://github.com/cpmcgrath/codealignment/releases/download/v14.1/CodeAlignmentNpp_v14.1_x64.zip",
"description": "Code alignment helps you present your code beautifully, enhancing clarity and readability.\r\nAlign your code by any character. Fast logical shortcuts to perform common alignments such as equals and period.",
"author": "Chris McGrath",
"homepage": "https://github.com/cpmcgrath/codealignment"
},
{
"folder-name": "CodeStats",
"display-name": "Code::Stats",
"version": "1.1.1",
"id": "d572893b9ddbfd06a15cccee07283059284fd86c148eda7b9bd94285d8a6b837",
"repository": "https://github.com/p0358/notepadpp-CodeStats/releases/download/v1.1.1/notepadpp-CodeStats_x64.zip",
"description": "Write code, level up, show off! A free stats tracking service for programmers. Enables XP tracking in Notepad++.\r\nRequires a codestats.net account for its functionality.\r\n\r\nAnonymous usage statistics:\r\nOn the next Notepad++ launches, after API token has been provided, this plugin is making HTTPS request to analytics server containing plugin version and unique randomly generated ID. This is because the author would like to see the amount of people using this. The usage statistic collection is not related to the Code::Stats service itself. If you really do not want to be included, you can opt-out in plugin settings.\r\n",
"author": "p0358",
"homepage": "https://github.com/p0358/notepadpp-CodeStats"
},
{
"folder-name": "ColumnsPlusPlus",
"display-name": "Columns++",
"version": "1.1.2",
"id": "120D14E881C6FAD09CD10F052A2788987E0467A095468A00A52CB508E9DD83D2",
"repository": "https://github.com/Coises/ColumnsPlusPlus/releases/download/v1.1.2/ColumnsPlusPlus-1.1.2-x64.zip",
"description": "Offers features for working with text and data arranged in columns, including an implementation of elastic tabstops, enhanced searching and sorting, column alignment and numeric calulations.",
"author": "Randall Joseph Fellmy",
"homepage": "https://github.com/Coises/ColumnsPlusPlus",
"npp-compatible-versions": "[8.4.3,]"
},
{
"folder-name": "ColumnTools",
"display-name": "ColumnTools",
"version": "1.4.5.1",
"id": "de96034be8cd8dadecb77bd5a608467cfbdb0bdc2ba4238af7f0996dc687b65a",
"repository": "https://github.com/vinsworldcom/nppColumnTools/releases/download/1.4.5.1/ColumnTools-v1.4.5.1-x64.zip",
"description": "Notepad++ Highlight Current Column and Horizontal Ruler",
"author": "Vin's World",
"homepage": "https://github.com/vinsworldcom/nppColumnTools"
},
{
"folder-name": "CommentToggler",
"display-name": "Comment Toggler",
"version": "1.0.0.0",
"npp-compatible-versions": "[8.0,]",
"id": "10369d81bfdc565d7536fd6d98e9ee7cfdaf692c1a4354f7c50acc2982cc11d2",
"repository": "https://github.com/ScienceDiscoverer/CommentToggler/releases/download/1.0.0/CommentToggler.zip",
"description": "Smart single button comment toggler. Features:\r\n- Does not insert space in front of the comment\r\n- Supports all the built-in languages and even user defined languages\r\n- Can do simple single line comments without selection\r\n- Preserves indentation in the commented code block\r\n- Fixes some indentation inconsistencies\r\n- Supports block comments\r\n- Supports multiple selections\r\n- With every type of comment at the same time!",
"author": "ScienceDiscoverer",
"homepage": "https://github.com/ScienceDiscoverer/CommentToggler"
},
{
"folder-name": "BlitzSearch",
"display-name": "Blitz Search",
"version": "1.0.0.0",
"npp-compatible-versions": "[8.0,]",
"id": "b834b07e61f4ad93562eac353f182c1499c5031b29546936190bcd6e0f6353a8",
"repository": "https://github.com/Natestah/BlitsNppPlugin/releases/download/InitialRelease/BlitzSearch-v1.0.0.0-x64.zip",
"description": "Adds Blitz Search This to the Toolbar. Features:\r\n- Search This command with selection to run Blitz Search with substring\r\n- Search This command with no selection to run Blitz Search with Whole word match",
"author": "NateStah",
"homepage": "https://github.com/Natestah/BlitsNppPlugin"
},
{
"folder-name": "Comment Wrap",
"display-name": "Comment Wrap",
"version": "1.0.0.7",
"npp-compatible-versions": "[8.3,]",
"old-versions-compatibility": "[,1.0.0.4][,8.2.1]",
"id": "86d58ea9fdc94467fd5ff0ca273f9ad2a7252dff22ef76302d40d5484aecb704",
"repository": "https://sourceforge.net/projects/kered13-notepad-plugins/files/Comment%20Wrap%20x64%20v1.0.0.7.zip",
"description": "Wraps comments as you type. Supports C-style, Python-style, and Lua-style comments.",
"author": "Derek Brown",
"homepage": "https://sourceforge.net/projects/kered13-notepad-plugins/"
},
{
"folder-name": "ComparePlugin",
"display-name": "Compare",
"version": "2.0.2",
"npp-compatible-versions": "[8.3,]",
"old-versions-compatibility": "[,2.0.1][7.7,8.2.1]",
"id": "4151fbc9778047991cf4b900363d846bda5b0d1783e5fed9eb77e4c8253ba315",
"repository": "https://github.com/pnedev/compare-plugin/releases/download/v2.0.2/ComparePlugin_v2.0.2_X64.zip",
"description": "Shows the differences between 2 files (side by side).",
"author": "Ty Landercasper, Jean-Sebastien Leroy, Pavel Nedev",
"homepage": "https://github.com/pnedev/compare-plugin"
},
{
"folder-name": "ComparePlus",
"display-name": "ComparePlus",
"version": "1.2.0",
"npp-compatible-versions": "[8.4.7,]",
"old-versions-compatibility": "[,1.0.0][8.4.2,8.4.6]",
"id": "ff4a7c9b32c8cbbda4144f82e0f30d567fb12f8fd3401b4005f7a170a198ac23",
"repository": "https://github.com/pnedev/comparePlus/releases/download/cp_1.2.0/ComparePlus_cp_1.2.0_x64.zip",
"description": "Advanced compare tool based on the well-known Compare-plugin by Ty Landercasper and Jean-Sebastien Leroy.",
"author": "Pavel Nedev",
"homepage": "https://github.com/pnedev/comparePlus"
},
{
"folder-name": "CSScriptNpp",
"display-name": "CS-Script - C# Intellisense",
"version": "2.0.5.0",
"npp-compatible-versions": "[8.3,]",
"old-versions-compatibility": "[,1.7.26][,8.2.1]",
"id": "6FE8AE8C4C5DEF546310FF36FE83BE37DEDFC751099B5241D9EF64766EB24BCC",
"repository": "https://github.com/oleg-shilo/cs-script.npp/releases/download/v2.0.5.0/CSScriptNpp.2.0.5.0.x64.zip",
"description": "CS-Script integration. Implements a real C# Intellisense solution based on CS-Script and Roslyn. Allows loading, executing modifying and debugging C# scripts in a way very similar to the Visual Studio C# projects support. This includes referencing assemblies and other scripts, code formatting, adding missing namespaces and intercepting Debug and Console output.",
"author": "Oleg Shilo",
"homepage": "https://github.com/oleg-shilo/cs-script.npp"
},
{
"folder-name": "CSVLint",
"display-name": "CSV Lint",
"version": "0.4.6.7",
"npp-compatible-versions": "[8.4,]",
"old-versions-compatibility": "[,0.4.5.1][,8.3.3]",
"id": "04fa3bf4d6eacdf3d260a06564d5ec779aaeba443dfad8ac00547bbcb2a90595",
"repository": "https://github.com/BdR76/CSVLint/releases/download/0.4.6.7/CSVLint_x64.zip",
"description": "Syntax highlighting and quality control for csv and fixed width data, detect column and datatypes, convert datetime/decimal format, sql, xml",
"author": "Bas de Reuver",
"homepage": "https://github.com/BdR76/CSVLint/"
},
{
"folder-name": "CsvQuery",
"display-name": "CsvQuery",
"version": "1.2.9",
"npp-compatible-versions": "[8.3,]",
"id": "3babdffa1e5a9973e2e98aa84598d869463520e646dc32fd112c583082636218",
"repository": "https://github.com/jokedst/CsvQuery/releases/download/v1.2.9/CsvQuery-v1.2.9-x64.zip",
"description": "Enables SQL queries against CSV files.",
"author": "jokedst",
"homepage": "https://github.com/jokedst/CsvQuery"
},
{
"folder-name": "_CustomizeToolbar",
"display-name": "Customize Toolbar",
"version": "5.3",
"id": "cb415b51d78ff7d505d5966865bbba67216a00955462db0187448b06efedd50a",
"repository": "https://sourceforge.net/projects/npp-customize/files/Customize%20Toolbar%20v5.3/CustomizeToolbar_5_3_x64_UNI.zip",
"description": "Allows the toolbar to be fully customised by the user, and includes twenty-six additional buttons for frequently used menu commands. All buttons on the toolbar can be customized, whether Notepad++ buttons, additional buttons, or other plugin buttons.\r\n\r\nCustom buttons for Notepad++ menu commands or other plugin menu commands can be created using a configuration file. It is possible to replace the icons of existing Notepad++ buttons or other plugin buttons.\r\n",
"author": "dw-dev@gmx.com",
"homepage": "https://sourceforge.net/projects/npp-customize"
},
{
"folder-name": "CustomLineNumbers",
"display-name": "CustomLineNumbers",
"version": "1.1.10",
"npp-compatible-versions": "[7.7,]",
"old-versions-compatibility": "[,1.1.7][7.7,]",
"id": "2883d7ca2e5324f03be0578c3981f186ed84a7fc7e4ae1ac287346b0d0562ec7",
"repository": "https://sourceforge.net/projects/customlinenumbers/files/v1.1.10/plugin/x64/CustomLineNumbers_v1.1.10_x64.zip",
"description": "Displays line numbers as hex numbers or as relative numbers. You can also configure the starting line number.",
"author": "Andreas Heim",
"homepage": "https://sourceforge.net/projects/customlinenumbers"
},
{
"folder-name": "dbgpPlugin",
"display-name": "DBGp",
"version": "0.14.2.1",
"npp-compatible-versions": "[8.3,]",
"id": "e86ef5b0cc263d314d367f6016836e65b0e624d96c2ff447a8a70cc3d8415efd",
"repository": "https://bitbucket.org/rdipardo/dbgp/downloads/dbgpPlugin_v0.14.2.1_x64.zip",
"description": "PHP debugger (XDebug) which talks with the DBGP protocol. Transforms Notepad++ into a PHP IDE.",
"author": "Damjan Zobo Cvetko",
"homepage": "https://bitbucket.org/rdipardo/dbgp"
},
{
"folder-name": "DiscordRPC",
"display-name": "Discord Rich Presence",
"version": "2.0.625.1",
"id": "bce28c82442dca8c317891a31ea11cc710b89eae4bf0d71c4b227c5bc20b6298",
"repository": "https://github.com/Zukaritasu/notepadpp_rpc/releases/download/v2.0/DiscordRPC_v2.0_x64.zip",
"description": "Shows in discord the file that is currently being edited in Notepad++.",
"author": "Zukaritasu",
"homepage": "https://github.com/Zukaritasu/notepadpp_rpc"
},
{
"folder-name": "DoxyIt",
"display-name": "DoxyIt",
"version": "0.4.4",
"id": "1f3970b0fa2a87f76de0fee921e9c52ce931d552d9be73a4b820cd321457510c",
"repository": "https://github.com/dail8859/DoxyIt/releases/download/v0.4.4/DoxyIt_v0.4.4_x64.zip",
"description": "Supports creating Doxygen comments.",
"author": "Justin Dailey",
"homepage": "https://github.com/dail8859/DoxyIt"
},
{
"folder-name": "DSpellCheck",
"display-name": "DSpellCheck",
"version": "1.5.0",
"npp-compatible-versions": "[8.3,]",
"old-versions-compatibility": "[,1.4.22][,8.2.1]",
"id": "e906fdd4758732d56e54c9e7ce56be7d9356f818fb6f1710f47fbdca6cbb9a26",
"repository": "https://github.com/Predelnik/DSpellCheck/releases/download/v1.5.0/DSpellCheck_x64.zip",
"description": "Spell-checking with these main features:\r\n-Underlining spelling mistakes\r\n-Iterating through all mistakes in document\r\n-Finding mistakes only in comments and strings (For files with standard programming language syntax e.g. C++)\r\n-Possible usage of multiple languages (dictionaries) simultaneously to do spell-checking.\r\n-Getting suggestions for words by either using default Notepad++ menu or separate context menu called by special button appearing under word.\r\n-Able to add words to user dictionary or ignore them for current session of Notepad++\r\n-Using either Hunspell library (included in plugin) or Aspell library (needs to be installed).\r\n-A lot of customizing available from Plugin settings (Ignoring/Allowing only specific files, Choosing delimiters for words, Maximum number of suggestions etc)\r\n-Support for downloading and removing Hunspell dictionaries through user friendly GUI interface\r\n-Ability to quickly change current language through the nice menu.",
"author": "Sergey Semushin",
"homepage": "https://github.com/Predelnik/DSpellCheck"
},
{
"folder-name": "NppEditorConfig",
"display-name": "EditorConfig",
"version": "0.4.0",
"id": "ae43152e91d8310ab28859992d3661aba24d8d69a64b93cd12b2f531a1038f56",
"repository": "https://github.com/editorconfig/editorconfig-notepad-plus-plus/releases/download/v0.4.0/NppEditorConfig-040-x64.zip",
"description": "EditorConfig is a text file that defines coding conventions for a project to help maintain them consistent no matter which text editor you use. This plugin adds support for .editorconfig files to Notepad++. It will automatically discover and apply matching .editorconfig settings to the files that you open for editing. For the EditorConfig recommended use, file format and samples, visit https://editorconfig.org/.",
"author": "EditorConfig Team",
"homepage": "https://github.com/editorconfig/editorconfig-notepad-plus-plus"
},
{
"folder-name": "ElasticTabstops",
"display-name": "ElasticTabstops",
"version": "1.5.0",
"npp-compatible-versions": "[8.4.4,]",
"old-versions-compatibility": "[,1.3][,8.2.1]",
"id": "48f94a2691d0926ab0c6ac10e23d4a4cdc79b7fa468ed6b0b172fa8de79166fd",
"repository": "https://github.com/mariusv-github/ElasticTabstops/releases/download/v1.5.0/ElasticTabstops_x64_1.5.0.zip",
"description": "Support for Elastic Tabstops.",
"author": "Marius Vasiliu, Justin Dailey",
"homepage": "https://github.com/mariusv-github/ElasticTabstops"
},
{
"folder-name": "EnhanceAnyLexer",
"display-name": "EnhanceAnyLexer",
"version": "1.4.0",
"npp-compatible-versions": "[8.4.1,]",
"id": "e09f05c641faa60968f99cfacaafa0599b351a8aeec837eeb0599dcd16f8f5a8",
"repository": "https://github.com/Ekopalypse/EnhanceAnyLexer/releases/download/v.1.4.0/EnhanceAnyLexer_x64_PluginAdmin.zip",
"description": "Adds more styling, colors only, options to any Lexer",
"author": "Ekopalypse",
"homepage": "https://github.com/Ekopalypse/EnhanceAnyLexer"
},
{
"folder-name": "ERPHelper",
"display-name": "ERP Helper",
"version": "1.1.2",
"id": "c02c3c15d6eac9bd863c555a228f5b89a4606d9c63730826c13305233ec4f443",
"repository": "https://github.com/swhitley/ERPHelper/releases/download/v1.1.2/ERPHelper_x64.zip",
"description": "A set of utilities for developing ERP integrations, includes XSL transformation and Workday API SOAP calls.",
"author": "Whitley Media",
"homepage": "https://github.com/swhitley/erphelper"
},
{
"folder-name": "Explorer",
"display-name": "Explorer",
"version": "1.9.9.0",
"id": "2009ae9c68ef45c691c88b9c4663030299263b4de6f6553ca7f07446f36943a6",
"repository": "https://github.com/oviradoi/npp-explorer-plugin/releases/download/v1.9.9/Explorer_x64.zip",
"description": "File browser. You can open files from your local drives in Notepad++, just double click!",
"author": "Jens Lorenz",
"homepage": "https://github.com/oviradoi/npp-explorer-plugin"
},
{
"folder-name": "PlanetCNCNpp64",
"display-name": "Expression calculator",
"version": "3001.21.1125.1",
"id": "4e9aa9f6b20e3301f7558c0230839f1604427c6d8ffeac911dbc7fec4ff98cb9",
"repository": "https://raw.githubusercontent.com/PlanetCNC/PlanetCNCNpp/main/PlanetCNCNpp64.zip",
"description": "Expression calculator plugin for Notepad++",
"author": "PlanetCNC",
"homepage": "https://github.com/PlanetCNC/PlanetCNCNpp"
},
{
"folder-name": "ExtSettings",
"display-name": "ExtSettings",
"version": "1.3.1",
"npp-compatible-versions": "[7.7,]",
"old-versions-compatibility": "[,1.2.2][7.7,]",
"id": "a2b338b093c4ef9b3a7cd354821697d1d6a8c1ab50d70c9002e4306aede1fa31",
"repository": "https://sourceforge.net/projects/extsettings/files/v1.3.1/plugin/x64/ExtSettings_v1.3.1_x64.zip",
"description": "Set various Scintilla settings which are not available via Notepad++ preferences dialog.",
"author": "Andreas Heim",
"homepage": "https://sourceforge.net/projects/extsettings"
},
{
"folder-name": "NPPFSIPlugin",
"display-name": "F# Interactive",
"version": "0.2.2.0",
"npp-compatible-versions": "[7.7,]",
"id": "de9fe425e2f3dbc8c46cdec34b2128332c5c5d227f55d122aa52d203ee35a31d",
"repository": "https://github.com/rdipardo/nppFSIPlugin/releases/download/v0.2.2.0/NPPFSIPlugin_v0.2.2.0_x64.zip",
"description": "F# source code lexer and IPC client for F# Interactive.\r\nNote: the .NET SDK must be installed separately.",
"author": "Prapin Peethambaran",
"homepage": "https://github.com/rdipardo/nppFSIPlugin"
},
{
"folder-name": "FileFinder",
"display-name": "FileFinder",
"version": "0.3",
"id": "9582adb0d78e550d1dc0ad13c463b3a3c442bc1db43a7301c55c8b34a256e25c",
"repository": "https://bitbucket.org/uph0/filefinder/downloads/FileFinder.v0.3.0.x64.bin.zip",
"description": "Quickly and comfortably find files by name, both in folders and in N++'s file history.",
"author": "UFO-Pu55y",
"homepage": "https://bitbucket.org/uph0/filefinder"
},
{
"folder-name": "FWDataViz",
"display-name": "Fixed-width Data Visualizer",
"version": "2.6.3.1",
"npp-compatible-versions": "[8.4.1,]",
"old-versions-compatibility": "[,2.4.0.1][8,8.2.1]",
"id": "92e35fa333fa7fc497ce4f2a25a202131573897b34b1291e2e932839dbacd278",
"repository": "https://github.com/shriprem/FWDataViz/releases/download/v2.6.3.1/FWDataViz_x64.zip",
"description": "Fixed Width Data Visualizer adds Excel-like features for fixed-width data files in Notepad++. Displays cursor position data. Foldable Record Blocks; Hop & Jump to specific fields. Field Copy & Field Paste. Data Extraction. Builtin dialogs to configure file-type, record-type & fields; and themes & colors. Automatic File Type Detection. Handles homogenous, mixed & multi-line records. Full Multi-byte character support. Darkmode enabled.",
"author": "Shridhar Kumar",
"homepage": "https://github.com/shriprem/FWDataViz"
},
{
"folder-name": "GedcomLexer",
"display-name": "GEDCOM Lexer",
"version": "0.5.0.170",
"npp-compatible-versions": "[8.4,]",
"old-versions-compatibility": "[,0.4.0][,8.3.3]",
"id": "65ac992a35a4237c8e563fd9b456fe77196a550ed91a5ef301094355515300fe",
"repository": "https://sourceforge.net/projects/gedcomlexer/files/GedcomLexer-0.5.0-r170/GedcomLexer-0.5.0-r170-x64.zip",
"description": "View and edit GEDCOM files with syntax highlighting of: level, xref id, tag, pointer, value and escape tokens. Customize coloration and font styles. Grammar errors are also highlighted. View GEDCOM files in outline mode by folding sections based on line level.",
"author": "Stan Mitchell",
"homepage": "https://sourceforge.net/projects/gedcomlexer/"
},
{
"folder-name": "GitSCM",
"display-name": "GitSCM",
"version": "1.4.9.1",
"id": "ae7b256a17844a7898f3edc1212e63ffbad13a7dd7206fc38dfa54b9013a9d8c",
"repository": "https://github.com/vinsworldcom/nppGitSCM/releases/download/1.4.9.1/GitSCM-v1.4.9.1-x64.zip",
"description": "N++ Gui for already installed Git SCM for Windows. Optionally TortoiseGit.",
"author": "Michael J. Vincent",
"homepage": "https://github.com/vinsworldcom/nppGitSCM"
},
{
"folder-name": "GotoLineCol",
"display-name": "GotoLineCol",
"version": "2.4.3.0",
"npp-compatible-versions": "[8.4.2,]",
"old-versions-compatibility": "[,2.2.0.1][,8.2.1]",
"id": "f07463d3292779f39b1a7d27354d317379640597611f4f1b749bc6ed9668e8c8",
"repository": "https://github.com/shriprem/Goto-Line-Col-NPP-Plugin/releases/download/v2.4.3.0/GotoLineCol_x64.zip",
"description": "A plugin to navigate to a specified line and (byte-based or character-based) column position. Will also display character byte code, UTF-8 byte sequence & Unicode code point at cursor position. Darkmode enabled. Command line options.",
"author": "Shridhar Kumar",
"homepage": "https://github.com/shriprem/Goto-Line-Col-NPP-Plugin"
},
{
"folder-name": "HexEditor",
"display-name": "HEX-Editor",
"version": "0.9.12.0",
"npp-compatible-versions": "[8.3,]",
"old-versions-compatibility": "[,0.9.11][,8.2.1]",
"id": "8a5076ad37c1675b2848f5f34b25e4e78af454c441718cfddc663dee5f698bf9",
"repository": "https://github.com/chcg/NPP_HexEdit/releases/download/0.9.12/HexEditor_0.9.12_x64.zip",
"description": "Hex editor. Some reported issues, however many bugs fixed in latest release.",
"author": "Jens Lorenz",
"homepage": "https://github.com/chcg/NPP_HexEdit"
},
{
"folder-name": "HTMLTag",
"display-name": "HTML Tag",
"version": "1.4.4.0",
"npp-compatible-versions": "[8.3,]",
"old-versions-compatibility": "[,1.1][,8.2.1]",
"id": "465c63b74bc1090171095b4da9082d7304b87b71b08d8f1766aee75ef0f72c1e",
"repository": "https://bitbucket.org/rdipardo/htmltag/downloads/HTMLTag_v1.4.4_x64.zip",
"description": "Provides three core functions:\r\n- HTML and XML tag jumping, like the built-in brace matching and selection\r\n of tags and/or contents.\r\n- HTML entity encoding/decoding (example: é to é)\r\n- JS character encoding/decoding (example: é to \\u00E9)",
"author": "Martijn Coppoolse",
"homepage": "https://bitbucket.org/rdipardo/htmltag/"
},
{
"folder-name": "HugeFiles",
"display-name": "HugeFiles",
"version": "0.4.1",
"id": "57cc30dd736115f7eab19ad02fc69e2f447bda18522ae42bdda06d7952d53736",
"repository": "https://github.com/molsonkiko/HugeFiles/releases/download/v0.4.1/Release_x64.zip",
"description": "Reads very large files one chunk at a time, ensuring that each chunk breaks at the end of a line.\r\nCan also break JSON files into syntactically valid JSON chunks.\r\nCan find/replace text in big files without huge memory consumption.\r\nFind/replace form for editing the big file without reading it all into memory.",
"author": "Mark Johnston Olson",
"homepage": "https://github.com/molsonkiko/HugeFiles/",
"npp-compatible-versions": "[7.3.3,]"
},
{
"folder-name": "ImgTag",
"display-name": "ImgTag",
"version": "2.0.1",
"id": "731d0fa26cea7057c694fb84364cd8f4905002c4e2e21bea2799b6ba6f0ab265",
"repository": "https://github.com/chcg/ImgTag/releases/download/2.0.1.8/ImgTag_2.0.1.8_x64.zip",
"description": "Insert IMG tags, in your HTML document, using the Open File dialog box to select image files.",
"author": "salvom",
"homepage": "https://sourceforge.net/projects/imgtag/"
},
{
"folder-name": "IndentByFold",
"display-name": "Indent By Fold",
"version": "0.7.3",
"id": "a37aec05fc51433495462768ac572f30519ea8119db558ba3d4608eba32cd957",
"repository": "https://github.com/ffes/indentbyfold/releases/download/v0.7.3/IndentByFold-073-x64.zip",
"description": "Indent using Fold points\r\nNote: Disable Notepad++'s Auto Indent in Settings - Preferences - MISC - Untick Auto Indent.",
"author": "Ben Bluemel, Frank Fesevur",
"homepage": "https://github.com/ffes/indentbyfold/"
},
{
"folder-name": "NppJavaPlugin",
"display-name": "Java Plugin",
"version": "0.4.0",
"id": "e2ac3bfd6fac22d6a977a82f725e3cc0949f59daa41153aba54c5bef3c87816e",
"repository": "https://github.com/dominikcebula/npp-java-plugin/releases/download/v0.4.0/NppJavaPlugin_v0.4.0_x64.zip",
"description": "Allows Java Code Compilation and Execution directly from Notepad++.",
"author": "Dominik Cebula",
"homepage": "https://github.com/dominikcebula/npp-java-plugin"
},
{
"folder-name": "JsMapParser.NppPlugin",
"display-name": "JavaScript Map Parser",
"version": "4.2",
"id": "87adc16dafdc1438fe9ab2a9377adb205bc1f75f00cc4541431afeb83240d8c3",
"repository": "https://github.com/megaboich/js-map-parser/releases/download/4.2/JsMapParser_NppPlugin_4_2_x64.zip",
"description": "Provides better JavaScript support. Provides a panel with hierarchy structure of functions in your js file.",
"author": "Oleksandr Boiko",
"homepage": "https://github.com/megaboich/js-map-parser/"
},
{
"folder-name": "jN",
"display-name": "jN Notepad++ Plugin",
"version": "2.2.185.9",
"npp-compatible-versions": "[8.4,]",
"old-versions-compatibility": "[,2.2.185.7][,8.3.3]",
"id": "4dad997496602a724b79e1e825ed0008e4315959ce85c6466a01ea93e1738bce",
"repository": "https://github.com/sieukrem/jn-npp-plugin/releases/download/2.2.185.9/jN_2.2.185.9_x64.zip",
"description": "Allows you to extend Notepad++ by using JavaScript.\r\n- You can create new menu elements which execute JavaScript\r\n- You can use manu ActiveX components available on your PC\r\n- You can add shortcuts executing JavaScript\r\n- You can create HTML-based dialogs and docking windows\r\n- You can write JavaScript wrappers around Win32 API\r\n - Since version 2.0.116 you can debug your automating scripts\r\n - Selection highlighting and navigation bar\r\n - Integrated Zen Coding v0.7\r\n - You can catch context menu request and create your own",
"author": "Eugen Kremer",
"homepage": "https://github.com/sieukrem/jn-npp-plugin/wiki"
},
{
"folder-name": "JSFunctionViewer",
"display-name": "JSFunctionViewer",
"version": "1.1.0",
"id": "26b30ff8596a1ae8e277d65213bcb0f51e40acb49f26d956b6ba49e7046db219",
"repository": "https://github.com/davidsover/nppJSFunctionViewer/releases/download/v1.1.0/JSFunctionViewer_x64.zip",
"description": "Provides an easier way to view and/or navigate to functions from function calls. Also works with external files if the src attribute is the last attribute of the <script> tag. Select the name of a function to view it. Recommended: In the Find/Replace window (Ctrl+F), tick the 'Match case' and untick the 'Match whole word only' check box.",
"author": "Sover David",
"homepage": "https://github.com/davidsover/nppJSFunctionViewer"
},
{
"folder-name": "JsonTools",
"display-name": "JSON Tools",
"version": "8.1",
"id": "5be0b90df90918eab6f1203bcb93035be7e2c6fdf7ad074015c6766aeea5af0b",
"repository": "https://github.com/molsonkiko/JsonToolsNppPlugin/releases/download/v8.1/Release_x64.zip",
"description": "Query/editing tool for JSON including linting, reformatting, a tree viewer with file navigation, JSON schema validation and generation, escaping/unescaping strings, and much more.\r\nThe tree viewer can also be used to explore CSV files and regex search results (experimental).",
"author": "Mark Johnston Olson",
"homepage": "https://github.com/molsonkiko/JsonToolsNppPlugin",
"npp-compatible-versions": "[7.3.3,]",
"old-versions-compatibility": "[,4.10.0][8.4.1,]"
},
{
"folder-name": "NPPJSONViewer",
"display-name": "JSON Viewer",
"version": "2.0.7.0",
"id": "462a9af49765eba42bf8273f0c17d9cc399d396ff1b8cb619dc30d024ffb74ff",
"repository": "https://github.com/kapilratnani/JSON-Viewer/releases/download/v2.0.7.0/NPPJSONViewer_x64.zip",
"description": "JSON viewer that displays the selected JSON string in a tree view.",
"author": "Kapil Ratnani, Rajendra Singh",
"homepage": "https://github.com/kapilratnani/JSON-Viewer",
"npp-compatible-versions": "[8.4.5,]"
},
{
"folder-name": "JSMinNPP",
"display-name": "JSTool",
"version": "1.2312.0",
"id": "bc819fad1a12a6a29392ad67dfb88d730bb8ac4ecee98f47bb73a0fab387c63e",
"repository": "https://sourceforge.net/projects/jsminnpp/files/Uni/JSToolNPP.1.2312.0.uni.64.zip",
"description": "Javascript plugin.\r\n * Douglas Crockford's JSMin algorithm to minimize javascript code.\r\n * My own algorithm to format javascript code.\r\n * A JSON data viewer. This JSON data viewer can handle >10MB JSON file easily.\r\n * Support 64bit Notepad++ (from version 1.20.0).\r\nReally helpful to javascript coder on Notepad++ and really easy to use it.\r\nMade in China.",
"author": "Sun Junwen",
"homepage": "https://github.com/sunjw/jstoolnpp"
},
{
"folder-name": "LanguageHelp",
"display-name": "LanguageHelp",
"version": "1.7.5.0",
"id": "ba4aeafc0d35010a0fc8a65f800da95cfb60d94d211a86e27aec28f8ee299284",
"repository": "https://github.com/francostellari/NppPlugins/raw/main/LanguageHelp/LanguageHelp_dll_1v75_x64.zip",
"description": "Allows loading a language specific help file (CHM, HLP, PDF) and search for the keyword under the cursor.\r\nThe latest version allows showing the help files as menu entries or in the context menu.",
"author": "Franco Stellari",
"homepage": "https://github.com/francostellari/NppPlugins"
},
{
"folder-name": "Linefilter3",
"display-name": "Linefilter3",
"version": "1.0.0.0",
"id": "ecf5800b8e48e0dbcc84bbe494e515ab481a22b79b5ac596bdb2b8995baef5ed",
"repository": "https://www.seelisoft.net/Linefilter3/Linefilter3_x64.zip",
"description": "Allows filtering for a given text and display the matching lines in a new window.",
"author": "SeeliSoft",
"homepage": "https://www.seelisoft.net/Linefilter3/"
},
{
"folder-name": "Linter",
"display-name": "Linter",
"version": "0.1.0.0",
"id": "9e973e8c6d74cfc27f93ae8aedf169c4f83442c42042c519a4a3adfdb5e75292",
"repository": "https://github.com/deadem/notepad-pp-linter/raw/v0.1.0.0/bin/x64/linter.zip",
"description": "Allows realtime code check against any checkstyle-compatible linter: jshint, eslint, jscs, phpcs, csslint, and many others.",
"author": "Vladimir Soshkin",
"homepage": "https://github.com/deadem/notepad-pp-linter"
},
{
"folder-name": "LocationNavigate",
"display-name": "Location Navigate",
"version": "0.4.8.1",
"id": "b818c6d33ecbc6e240baec449d0cfe9af242b130833a657f64aedfaa41a4d413",
"repository": "https://sourceforge.net/projects/locationnav/files/LocationNavigate_v0.4.8.1_x64.zip",
"description": "Navigate between your last edit/view points. Useful for code/text edit and view, especially for many and large text files\r\n1. Automatically record the cursor position and modified points\r\n2. You can jump to any position that your cursor has visited.\r\n3. Can use shortcuts (Ctrl+- for previous position and Ctrl+Shift+- for next position) to jump forward and back in code\r\n4. Can jump to any modified points (Ctrl+Alt+Z) back and forward (Ctrl+Alt+Y)\r\n5. History positions are automatically adjusted when text is modified.\r\n6. Can record positions data when application exit and it will be loaded in next run.\r\n7. Can navigate only in current file",
"author": "Austin Young",
"homepage": "https://sourceforge.net/projects/locationnav/"
},
{
"folder-name": "LuaScript",
"display-name": "LuaScript",
"version": "0.12",
"npp-compatible-versions": "[8.3,]",
"old-versions-compatibility": "[,0.11][,8.2.1]",
"id": "f44a7b543165171baee3952661744319dddc7da0bea299d583b0219aa297d51f",
"repository": "https://github.com/dail8859/LuaScript/releases/download/v0.12/LuaScript_v0.12_x64.zip",
"description": "Adds Lua scripting capabilities. This provides control over all of Scintilla's features and options with a light-weight, fully-functional programming language.",
"author": "Justin Dailey",
"homepage": "https://github.com/dail8859/LuaScript"
},
{
"folder-name": "NppMarkdownPanel",
"display-name": "Markdown Panel",
"version": "0.7.3",
"id": "f599299a0020cd0ceb812bfe5c52aa5f6c29bf5628ca8b00dff70decb0193e89",
"repository": "https://github.com/mohzy83/NppMarkdownPanel/releases/download/0.7.3.1/NppMarkdownPanel-0.7.3.0-x64.zip",
"description": "Lightweight plugin to display rendered Markdown files.",
"author": "Mohzy83",
"homepage": "https://github.com/mohzy83/NppMarkdownPanel"
},
{
"folder-name": "MarkdownViewerPlusPlus",
"display-name": "MarkdownViewer++",
"version": "0.8.2",
"id": "e343c52798d76ef91bba41821088cc3e199d475c7124571881b560b6a3ec4693",
"repository": "https://github.com/nea/MarkdownViewerPlusPlus/releases/download/0.8.2/MarkdownViewerPlusPlus-0.8.2-x64.zip",
"description": "View Markdown/CommonMark compliant text files rendered on-the-fly directly in Notepad++ in a docked panel.\r\nExport the rendered result as HTML or PDF and configure the file extensions to be rendered.",
"author": "nea",
"homepage": "https://nea.github.io/MarkdownViewerPlusPlus/"
},
{
"folder-name": "MenuIcons",
"display-name": "MenuIcons",
"version": "2.0.7",
"id": "420a77889502b43fc33d3ff0f93c13906f2dbd73fafcfe6126a46cf3c22aeaf7",
"repository": "https://github.com/francostellari/NppPlugins/raw/main/MenuIcons/MenuIcons_dll_2v07_x64.zip",
"description": "Adds icons to the main menu, tab menu, context menu, and the tabs themselves.",
"author": "Franco Stellari",
"homepage": "https://github.com/francostellari/NppPlugins"
},
{
"folder-name": "Merge files in one",
"display-name": "Merge files in one",
"version": "1.2.0.0",
"id": "eab174d0f5926a64a75978c7efe2ff508c9bb7c13f7c97eb8bb410afa8604fed",
"repository": "https://github.com/gurikbal/Merge-files-in-one/releases/download/1.2.0.0/Merge.files.in.one_x64.zip",
"description": "Copy lines from multiple files into one.",
"author": "G. Singh",
"homepage": "https://github.com/gurikbal/Merge-files-in-one"
},
{
"folder-name": "mimeTools",
"display-name": "Mime tools",
"version": "3.1",
"npp-compatible-versions": "[8.4.7,]",
"old-versions-compatibility": "[,2.8][,8.4.6]",
"id": "8df4ef5c94579639f5c429f97e13fe39802552d56db7e7eb3df226ccc9caae9b",
"repository": "https://github.com/npp-plugins/mimetools/releases/download/v3.1/mimetools.v3.1.x64.zip",
"description": "Implements several main functionalities defined in MIME (Multipurpose Internet Mail Extensions): Base64, Quoted-printable and URL encode/decode",
"author": "Don HO",
"homepage": "https://github.com/npp-plugins/mimetools"
},
{
"folder-name": "MultiReplace",
"display-name": "MultiReplace",
"version": "3.1.2.18",
"npp-compatible-versions": "[8.5.4,]",
"id": "9c2a453f195fdc4b394c844c8654cf7d3fa44db4b0c9a910769a86517652f335",
"repository": "https://github.com/daddel80/notepadpp-multireplace/releases/download/3.1.2.18/MultiReplace-v3.1.2.18-x64.zip",
"description": "Advanced multi-string replacement; storage of search/replace patterns; CSV column highlighting, targeting, and sorting; dynamic computational operations; rectangular selection support.",
"author": "Thomas Knoefel",
"homepage": "https://github.com/daddel80/notepadpp-multireplace"
},
{
"folder-name": "MusicPlayer_1.0.11x64",
"display-name": "MusicPlayer",
"version": "1.0.0.3",
"id": "beff62a207cceb47be805a4c32f8e791cf61bc3338e7bb13308dd0358354f439",
"repository": "https://github.com/gallettube/MusicPlayer/releases/download/1.0.11/MusicPlayer_1.0.11x64.dll.zip",
"description": "Open and play music files.\r\nSupports: *.wav, *.mp3, *.aiff, *.wma",
"author": "Jon Galletero",
"homepage": "https://sourceforge.net/projects/nppmusicplayer"
},
{
"folder-name": "MZC8051",
"display-name": "MZC8051",
"version": "0.0.1",
"id": "70c0a56a16fe9334ba2c7468dda6cd64a09eab14fcbd3134b8bb6f29d96d1e70",
"repository": "https://github.com/Jiangshan00001/npp_MZC8051/releases/download/0.0.1/MZC8051_x64.zip",
"description": "a 8051 c compiler plugin within notepad++.",
"author": "Jiangshan00001",
"homepage": "https://github.com/Jiangshan00001/npp_MZC8051"
},
{
"folder-name": "NavigateTo",
"display-name": "NavigateTo",
"version": "2.6.4.0",
"id": "8f56ce6b82a4d0c5283a06676859f870328932000fe8a458c12a8bbe847747ec",
"repository": "https://github.com/young-developer/nppNavigateTo/releases/download/v.2.6.4/NavigateTo_v.2.6.4_v142_x64.zip",
"description": "Do you have more then 10 open tabs? Then this plugin is for you.\r\nNew and efficient way to quickly navigate between tabs (files). Allows you to search for a symbol or filename, filepath by matching against a keyword you type, and get a real-time preview while going through the search results with the Shift key.\r\nAnd YES, you can uncheck the Multi-line option, in the Preferences > General > Tab Bar zone because you don’t need the multi-lines tab feature anymore :)\r\nAuthor: Oleksii Maryshchenko\r\nEmail: oleksii.maryshchenko@gmail.com \r\n Contributors: https://github.com/molsonkiko",
"author": "Oleksii Maryshchenko",
"homepage": "https://github.com/young-developer/nppNavigateTo"
},
{
"folder-name": "NewFileBrowser",
"display-name": "NewFileBrowser",
"version": "0.1.5",
"id": "4b900825a588625cf51f6d4cc9b572c9399b1d7fa34d6f668c96aa5e4181eb62",
"repository": "https://sourceforge.net/projects/locationnav/files/NewFileBrowser_v0.1.5_x64.zip",
"description": "Define 20 new file's initial text and have an inner web browser which can run current file.",
"author": "Austin Young",
"homepage": "https://sourceforge.net/projects/locationnav/"
},
{
"folder-name": "NppBplistPlugin",
"display-name": "Notepad++ bplist plugin",
"version": "3.0.0.0",
"id": "3deee80f0fe25d02ac06eb8bdd9ec9ccad2c2deef39f74936c6ffc48af0f59db",
"repository": "https://github.com/azerg/NppBplistPlugin/releases/download/3.0.0.0/NppBplistPlugin_x64.zip",
"description": "Supports viewing/editing binary plist files. Due to the fact that ordinary plist files have XML format, this plugin does not support them. It only loads binary plist files (bplist).",
"author": "Sergiy Azarovsky",
"homepage": "https://github.com/azerg/NppBplistPlugin"
},
{
"folder-name": "NppOpenAI",
"display-name": "NppOpenAI",
"version": "0.4.0.0",
"npp-compatible-versions": "[8.4.8,]",
"id": "c25b0496aa264e88779313271233e38f7208f05ebf3f8b46b8e98ecf2cd6c071",
"repository": "https://github.com/Krazal/nppopenai/releases/download/v0.4.0.0/NppOpenAI_x64.zip",
"description": "OpenAI (aka. ChatGPT) plugin for Notepad++. Simply select your text, press Ctrl + Shift + O, and you'll see the AI generated response in seconds. Some examples: 'Please create a Fibonacci function in PHP'; 'Mi az árvíztűrő tükörfúrógép?' (Hungarian Unicode test) etc. This plugin requires an active internet connection and an OpenAI registration / API key (handles it confidential).",
"author": "Richárd Stockinger",
"homepage": "https://github.com/Krazal/nppopenai"
},
{
"folder-name": "NppPluginDemo",
"display-name": "Notepad++ Plugin Demo",
"version": "4.4",
"npp-compatible-versions": "[8.4.7,]",
"old-versions-compatibility": "[,4.2][,8.4.6]",
"id": "0894477bbb5794978f1a013021df375c6f2ef1e2e82fe05d359f790604a5b7fe",
"repository": "https://github.com/npp-plugins/plugindemo/releases/download/v4.4/pluginDemo.v4.4.bin.x64.zip",
"description": "Notepad++ Plugin Demo is written from Notepad++ Plugin Template to demonstrate the usage of plugin API.",
"author": "Don HO",
"homepage": "https://npp-user-manual.org/docs/plugins/#how-to-develop-a-plugin"
},
{
"folder-name": "NppPluginTemplate",
"display-name": "Notepad++ Plugin Template",
"version": "4.4",
"npp-compatible-versions": "[8.4.7,]",
"old-versions-compatibility": "[,4.2][,8.4.6]",
"id": "ff5f9e918d80a754ef4cb53b4d5dc2c85557ff32fef94bb6c11ab5ae59f95278",
"repository": "https://github.com/npp-plugins/plugintemplate/releases/download/v4.4/pluginTemplate.v4.4.bin.x64.zip",
"description": "Template for making plugin development as easy and simple as possible. Four steps and it's done.",
"author": "Don HO",
"homepage": "https://npp-user-manual.org/docs/plugins/#how-to-develop-a-plugin"
},
{
"folder-name": "NotepadStarterPlugin",
"display-name": "NotepadStarterPlugin",
"version": "2.3.3.0",
"id": "64f07762c09ebd4c81533ebbd16556d57fdaef29cf35722453b7e0da9131e761",
"repository": "https://github.com/lygstate/NotepadStarter/releases/download/2.3.3.0/NotepadStarter_2.3.3.0_x64.zip",
"description": "When it is installed as a Notepad++ plugin or running NotepadStarter.exe in the Notepad++ app directory, it will automatically replace the system default notepad.exe application with Notepad++ (without need to remove anything from the Windows system.). It's tested under Windows 7, but Windows XP should also work.",
"author": "Yonggang Luo",
"homepage": "https://github.com/lygstate/NotepadStarter/"
},
{
"folder-name": "nppConverter",
"display-name": "Npp Converter",
"version": "4.6",
"npp-compatible-versions": "[8.4.7,]",
"old-versions-compatibility": "[,4.4][,8.4.6]",
"id": "f80d8266112bb50e4aff95c8d1ddfb9dbc2562e380d33820dd5f85368747a2cc",
"repository": "https://github.com/npp-plugins/converter/releases/download/v4.6/nppConvert.v4.6.x64.zip",
"description": "ASCII<->Hex converter.",
"author": "Don HO",
"homepage": "https://github.com/npp-plugins/converter/"
},
{
"folder-name": "nppRandomStringGenerator",
"display-name": "npp Random String Generator",
"version": "1.9.2",
"npp-compatible-versions": "[8.3,]",
"old-versions-compatibility": "[,1.3][,8.2.1]",
"id": "9afbe8efe7612ff3f980353d3949110934164f85d772aa93743ac7733cc907e6",
"repository": "https://github.com/cmbsolutions/nppRandomStringGenerator/releases/download/v1.9.2/nppRandomStringGenerator.1.9.2.x64.zip",
"description": "Generates random strings with configurable output.",
"author": "Maurice CMBSolutions",
"homepage": "https://github.com/cmbsolutions/nppRandomStringGenerator"
},
{
"folder-name": "NppXmlTreeviewPlugin",
"display-name": "Npp Xml Treeview",
"version": "2.0.0",
"id": "27df1ceb95cf2726622d27d35e1939e9d66625917509eebdf92163e24eaedbd8",
"repository": "https://github.com/joaoasrosa/nppxmltreeview/releases/download/v2.0.0/NppXMLTreeViewPlugin_x64.zip",
"description": "Treeview visualization for XML files.",
"author": "João Rosa",
"homepage": "https://github.com/joaoasrosa/nppxmltreeview/"
},
{
"folder-name": "npp.connections",
"display-name": "npp.Connections",
"version": "1.1.0",
"npp-compatible-versions": "[8.4.3,]",
"id": "1844116a50bb2c544c7616a6f327d8737e87d537ad70ef5df73dd9d50617d912",
"repository": "https://github.com/chcg/npp.connections/releases/download/1.1/npp.connections-1.1-x64.zip",
"description": "This plugin allows Notepad++ to connect to MS SQL or Sybase servers. ODBC data sources, like a MySql Driver, are also supported",
"author": "Vladimir Korobenkov",
"homepage": "https://github.com/vladk1973/npp.connections"
},
{
"folder-name": "nppcrypt",
"display-name": "NppCrypt",
"version": "1.0.1.6",
"id": "37d04936e9f4c33e6232a1333e405d19a7d5c32a26faef8e1172ff84a7930a6a",
"repository": "https://github.com/jeanpaulrichter/nppcrypt/releases/download/1.0.1.6/nppcrypt_1.0.1.6_x64.zip",
"description": "Encryption/decryption with various block ciphers, hash-algorithms, random-characters, encoding with Base-16/32/64.",
"author": "Jean Paul Richter",
"homepage": "https://github.com/jeanpaulrichter/nppcrypt"
},
{
"folder-name": "NppEventExec",
"display-name": "NppEventExec",
"version": "0.9.0",
"id": "d568c595498d394a2241afccf0ec6e5286e991e293a1b6bfb0b26602b6def043",
"repository": "https://github.com/MIvanchev/NppEventExec/releases/download/v0.9.0/NppEventExec-plugin-x64-0.9.0.zip",
"description": "Allows automatically executing NppExec scripts on Notepad++ events. You can use it, for example, to format and compile source code.",
"author": "Mihail Ivanchev",
"homepage": "https://github.com/MIvanchev/NppEventExec"
},
{
"folder-name": "NppExec",
"display-name": "NppExec",
"version": "0.8.8",
"id": "70e53fed962eeb21d2e11243c7cfad75d010b38565812f66bdf16b1c6e7c6f79",
"repository": "https://github.com/d0vgan/nppexec/releases/download/v088/NppExec_088_dll_x64.zip",
"description": "Execute commands or saved scripts without leaving Notepad++.",
"author": "Vitaliy Dovgan",
"homepage": "https://github.com/d0vgan/nppexec"
},
{
"folder-name": "NppExport",
"display-name": "NppExport",
"version": "0.4.0.0",
"npp-compatible-versions": "[8.3,]",
"old-versions-compatibility": "[,0.3][,8.2.1]",
"id": "f3dfd41470616c83de44badb7f07e5bcc8d591069cdae0be3e745dd0e4ee90f4",
"repository": "https://github.com/chcg/NPP_ExportPlugin/releases/download/0.4.0/NppExport_0.4.0_x64.zip",
"description": "True WYSIWYG exporter. Allows you not only to save your source code as an HTML/RTF file, but also to copy your source code in the clipboard in RTF/HTML format, so you can paste it into your word processor (Openoffice.org Writer, LibreOffice Writer, Abiword, MS Word) to get the same visual effect.",
"author": "",
"homepage": "https://github.com/chcg/NPP_ExportPlugin"
},
{
"folder-name": "NppFavorites",
"display-name": "NppFavorites",
"version": "1.0.0.1",
"id": "e134ab7cd6e7fe95410b5ebfa8ff648d44142a06daf43bbcf93fb26e4148465b",
"repository": "https://github.com/heldersepu/nppfavorites/releases/download/1.0.0.1.21/NppFavorites_1.0.0.1.21_x64.zip",
"description": "Favorites plugin.\r\nNotepad++ does not come with favorites. This is a simple solution to that problem.",
"author": "Helder Sepulveda",
"homepage": "https://github.com/heldersepu/nppfavorites"
},
{
"folder-name": "NppFTP",
"display-name": "NppFTP",
"version": "0.29.13",
"id": "74491a84c9ee9d196886546f4f754eb86df9f01d3296069bf13bb11a16f244af",
"repository": "https://github.com/ashkulz/NppFTP/releases/download/v0.29.13/NppFTP-x64.zip",
"description": "Allows FTP, FTPS, FTPES, and SFTP communications. Very useful for web development.",
"author": "ashish_kulz",
"homepage": "https://ashkulz.github.io/NppFTP/"
},
{
"folder-name": "NppGist",
"display-name": "NppGist",
"version": "1.5.1.35",
"id": "017327c0ec9115707f2db8698ce3193e3d315c4f301e2320a28391d52f6684a5",
"repository": "https://github.com/KvanTTT/NppGist/releases/download/1.5.1/NppGist-x64-1.5.1.35.zip",
"description": "Allows working with GitHub Gist (create, edit, remove, rename).",
"author": "Ivan Kochurkin (KvanTTT)",
"homepage": "https://github.com/KvanTTT/NppGist"
},
{
"folder-name": "NppGTags",
"display-name": "NppGTags",
"version": "5.1.2",
"npp-compatible-versions": "[8.4.7,]",
"old-versions-compatibility": "[,5.0.0][8.4.2,8.4.6]",
"id": "46c6db50a25ced35682a44dbb291207cbdc27dfdfdf96082677f7feddb4ecb62",
"repository": "https://github.com/pnedev/nppgtags/releases/download/v5.1.2/NppGTags_v5.1.2_x64.zip",
"description": "Front-end to GNU Global source code tagging system (GTags). Provides code indexing and search/navigation tools for various languages.",
"author": "Pavel Nedev",
"homepage": "https://github.com/pnedev/nppgtags"
},
{
"folder-name": "NppGZipFileViewer",
"display-name": "NppGZipFileViewer",
"version": "3.0.1",
"id": "283b61717686faea40598e2b9376304341324eb51c01100fd30c0580a66dc9bb",
"repository": "https://github.com/Pascal-Krenckel/NppGZipFileViewer/releases/download/v3.0.1/NppGZipFileViewerX64.top.zip",
"description": "A Notepad++ plugin to open and save files in the gzip or bzip2 format.",
"author": "Pascal Krenckel",
"homepage": "https://github.com/Pascal-Krenckel/NppGZipFileViewer"
},
{
"folder-name": "Npp-Highlighter",
"display-name": "Npp Highlighter",
"version": "1.0.0.1",
"npp-compatible-versions": "[,8.5]",
"id": "b968b70727a6ed03ad814dabe26865f0c01463552c529a139f12c74f2c791780",
"repository": "https://github.com/michaelxzhang/Npp-Highlighter/releases/download/v1.0.0.1/Npp-Highlighter_x64.zip",
"description": "Npp-Highlighter draw indicator on scroll bar when:\r\n- line contents changed\r\n- double clicked and smart highlighted words\r\n- text highlighted by Style token",
"author": "Michael Zhang",
"homepage": "https://github.com/michaelxzhang/Npp-Highlighter"
},
{
"folder-name": "NppJumpList",
"display-name": "NppJumpList",
"version": "1.2.2",
"id": "e3fe5b5de456fae8e66b42c8d1a1848a02db0a009a2978cb6c39afecee39b596",
"repository": "https://github.com/chcg/JumpList/releases/download/1.2.2.10/NppJumpList_1.2.2.10_x64.zip",
"description": "Adds Windows 7 jump list support.",
"author": "ahvgeezer",
"homepage": "https://sourceforge.net/projects/nppjumplist/"
},
{
"folder-name": "NppMenuSearch",
"display-name": "NppMenuSearch",
"version": "0.9.6",
"id": "7CA7BD5BB9D9FB6CB2CB54804F4BC7CC7C3E319D09ECBA761058C99E3ACC7870",
"repository": "https://sourceforge.net/projects/nppmenusearch/files/v0.9.6/NppMenuSearch_v0.9.6_x64.zip",
"description": "Adds a text field to the toolbar for searching menu items and preference dialog options.",
"author": "Peter Frentrup",
"homepage": "https://github.com/peter-frentrup/NppMenuSearch"
},
{
"folder-name": "NppDocShare",
"display-name": "NppNetNote",
"version": "0.1.0.0",
"id": "01e16cdf85f5c5b10c0952f7997d9b963ea61fcdcdc02c082047e1885c976e59",
"repository": "https://github.com/chcg/NppDocShare/releases/download/0.1.13/NppDocShare_0.1.13_x64.zip",