This repository has been archived by the owner on Aug 9, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 167
/
pluginmaster.json
4706 lines (4706 loc) · 215 KB
/
pluginmaster.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
[
{
"Author": "Ottermandias",
"Name": "Accountant",
"Punchline": "Character task timers.",
"Description": "Keep track of retainer, airship, submersible, aetherial wheel and crop timers as well as several miscallaneous tasks of multiple characters.",
"Tags": [
"Airship",
"Gardening",
"Crops",
"Retainer",
"Multiple Characters",
"Account",
"Timer",
"Submarine",
"Submersible",
"Tasks",
"Cactpot"
],
"InternalName": "Accountant",
"AssemblyVersion": "1.3.0.1",
"RepoUrl": "https://github.com/Ottermandias/Accountant",
"ApplicableVersion": "any",
"DalamudApiLevel": 6,
"LoadPriority": 0,
"ImageUrls": null,
"IconUrl": "https://raw.githubusercontent.com/Ottermandias/Accountant/main/images/icon.png",
"IsHide": "False",
"IsTestingExclusive": "False",
"DownloadCount": 226374,
"LastUpdate": "1659757956",
"DownloadLinkInstall": "https://kamori.goats.dev/Plugin/Download/Accountant?isUpdate=False&isTesting=False&branch=api6",
"DownloadLinkTesting": "https://kamori.goats.dev/Plugin/Download/Accountant?isUpdate=False&isTesting=True&branch=api6",
"DownloadLinkUpdate": "https://raw.githubusercontent.com/goatcorp/DalamudPlugins/api6/plugins/Accountant/latest.zip"
},
{
"Author": "Haplo064",
"Name": "Accurate CountDown",
"InternalName": "AccurateCountDown",
"Description": "Shows the current countdown time.",
"Tags": [
"Combat",
"Countdown",
"Timer",
"UI"
],
"RepoUrl": "https://github.com/Haplo064/Europe",
"AssemblyVersion": "1.1.0.0",
"ApplicableVersion": "any",
"DalamudApiLevel": 3,
"IsHide": "False",
"IsTestingExclusive": "False",
"DownloadCount": 28862,
"CategoryTags": [
"UI"
],
"LastUpdate": "1618369127",
"DownloadLinkInstall": "https://kamori.goats.dev/Plugin/Download/AccurateCountDown?isUpdate=False&isTesting=False&branch=api6",
"DownloadLinkTesting": "https://kamori.goats.dev/Plugin/Download/AccurateCountDown?isUpdate=False&isTesting=True&branch=api6",
"DownloadLinkUpdate": "https://raw.githubusercontent.com/goatcorp/DalamudPlugins/api6/plugins/AccurateCountDown/latest.zip"
},
{
"Author": "Helios",
"Name": "Adaptive Hud",
"InternalName": "AdaptiveHud",
"AssemblyVersion": "1.0.0.2",
"Description": "Useful for ultrawide users, swapping from windowed/fullscreen will automatically switch your hudlayout.\n\n/pah to configure",
"ApplicableVersion": "any",
"RepoUrl": "https://github.com/Helios747/AdaptiveHudPlugin",
"Tags": [
"hudlayout",
"hud",
"settings"
],
"DalamudApiLevel": 6,
"LoadPriority": 0,
"Punchline": "Switches your /hudlayout when your game switches from windowed to fullscreen.",
"IsHide": "False",
"IsTestingExclusive": "False",
"DownloadCount": 8051,
"LastUpdate": "1652891391",
"DownloadLinkInstall": "https://kamori.goats.dev/Plugin/Download/AdaptiveHud?isUpdate=False&isTesting=False&branch=api6",
"DownloadLinkTesting": "https://kamori.goats.dev/Plugin/Download/AdaptiveHud?isUpdate=False&isTesting=True&branch=api6",
"DownloadLinkUpdate": "https://raw.githubusercontent.com/goatcorp/DalamudPlugins/api6/plugins/AdaptiveHud/latest.zip"
},
{
"Author": "Caraxi",
"Name": "Adventurer in Need",
"InternalName": "AdventurerInNeed",
"AssemblyVersion": "1.2.0.2",
"Description": "Recieve a notification when a duty roulette is in need of a role. /pbonus to setup",
"ApplicableVersion": "any",
"RepoUrl": "https://github.com/Caraxi/AdventurerInNeed",
"DalamudApiLevel": 6,
"LoadPriority": 0,
"Punchline": "Recieve a notification when a duty roulette is in need of a role.",
"IsHide": "False",
"IsTestingExclusive": "False",
"DownloadCount": 98338,
"CategoryTags": [
"UI"
],
"LastUpdate": "1650001104",
"DownloadLinkInstall": "https://kamori.goats.dev/Plugin/Download/AdventurerInNeed?isUpdate=False&isTesting=False&branch=api6",
"DownloadLinkTesting": "https://kamori.goats.dev/Plugin/Download/AdventurerInNeed?isUpdate=False&isTesting=True&branch=api6",
"DownloadLinkUpdate": "https://raw.githubusercontent.com/goatcorp/DalamudPlugins/api6/plugins/AdventurerInNeed/latest.zip"
},
{
"Author": "Gotest",
"Name": "Audible Character Status",
"InternalName": "AudibleCharacterStatus",
"AssemblyVersion": "1.0.1.2",
"Description": "Plays a sound for certain statuses of the player. Such as low HP or MP.\nYou will need to provide your own sound files.",
"ApplicableVersion": "any",
"RepoUrl": "https://github.com/Arrenton/AudibleCharacterStatus",
"Tags": [
"audio",
"player",
"status"
],
"DalamudApiLevel": 7,
"LoadPriority": 0,
"Punchline": "You like annoying low HP sounds? This is great for you!",
"Changelog": "Updated for API 7.",
"IsHide": "False",
"IsTestingExclusive": "False",
"DownloadCount": 19870,
"LastUpdate": "1661476302",
"DownloadLinkInstall": "https://kamori.goats.dev/Plugin/Download/AudibleCharacterStatus?isUpdate=False&isTesting=False&branch=api6",
"DownloadLinkTesting": "https://kamori.goats.dev/Plugin/Download/AudibleCharacterStatus?isUpdate=False&isTesting=True&branch=api6",
"DownloadLinkUpdate": "https://raw.githubusercontent.com/goatcorp/DalamudPlugins/api6/plugins/AudibleCharacterStatus/latest.zip"
},
{
"Author": "zhudotexe",
"Name": "PaissaHouse",
"InternalName": "autoSweep",
"AssemblyVersion": "1.4.1.0",
"Description": "Looking for that perfect house? PaissaHouse lets you receive notifications when a new plot of land is up for sale on your home world.\nView the list of all houses available on a world at https://paissadb.zhu.codes/!\n\nWant to contribute? Check out the repository (globe icon below) for instructions.",
"ApplicableVersion": "any",
"RepoUrl": "https://github.com/zhudotexe/FFXIV_PaissaHouse",
"Tags": [
"housing"
],
"DalamudApiLevel": 7,
"LoadPriority": 0,
"IconUrl": "https://raw.githubusercontent.com/zhudotexe/FFXIV_PaissaHouse/main/images/icon.png",
"Punchline": "Crowdsourced housing alerts and lottery tracking for all.",
"IsHide": "False",
"IsTestingExclusive": "False",
"DownloadCount": 76477,
"CategoryTags": [
"other"
],
"LastUpdate": "1661352410",
"DownloadLinkInstall": "https://kamori.goats.dev/Plugin/Download/autoSweep?isUpdate=False&isTesting=False&branch=api6",
"DownloadLinkTesting": "https://kamori.goats.dev/Plugin/Download/autoSweep?isUpdate=False&isTesting=True&branch=api6",
"DownloadLinkUpdate": "https://raw.githubusercontent.com/goatcorp/DalamudPlugins/api6/plugins/autoSweep/latest.zip"
},
{
"Author": "ascclemens",
"Name": "Better Party Finder",
"InternalName": "BetterPartyFinder",
"AssemblyVersion": "1.2.3",
"Description": "Filter the party finder better.\n\nAll vanilla filtering is available, plus:\n\n- Create filter presets to easily switch between\n- Whitelist/blacklist specific duties and categories\n- Add character names to hide PFs from\n- Remove PFs above maximum item level\n- Filter on item level range\n- Filter on multiple jobs and slots (ex. MCH + GNB available)",
"ApplicableVersion": "any",
"RepoUrl": "https://git.annaclemens.io/ascclemens/BetterPartyFinder",
"DalamudApiLevel": 6,
"LoadPriority": 0,
"Punchline": "Use advanced Party Finder filter presets.",
"IsHide": "False",
"IsTestingExclusive": "False",
"DownloadCount": 44621,
"CategoryTags": [
"UI"
],
"LastUpdate": "1649987015",
"DownloadLinkInstall": "https://kamori.goats.dev/Plugin/Download/BetterPartyFinder?isUpdate=False&isTesting=False&branch=api6",
"DownloadLinkTesting": "https://kamori.goats.dev/Plugin/Download/BetterPartyFinder?isUpdate=False&isTesting=True&branch=api6",
"DownloadLinkUpdate": "https://raw.githubusercontent.com/goatcorp/DalamudPlugins/api6/plugins/BetterPartyFinder/latest.zip"
},
{
"Author": "d87",
"Name": "BigPlayerDebuffs",
"InternalName": "BigPlayerDebuffs",
"AssemblyVersion": "1.1.0.5",
"Description": "Scales up buffs/debuffs applied by you on Target Status frames",
"ApplicableVersion": "any",
"RepoUrl": "https://github.com/rgd87/BigPlayerDebuffs",
"DalamudApiLevel": 6,
"LoadPriority": 0,
"ImageUrls": [
"https://raw.githubusercontent.com/rgd87/BigPlayerDebuffs/master/images/image1.png"
],
"IconUrl": "https://raw.githubusercontent.com/rgd87/BigPlayerDebuffs/master/images/icon.png",
"Changelog": "* v1.1.0.5\n * Futureproofing for the next Dalamud update\n",
"IsHide": "False",
"IsTestingExclusive": "False",
"DownloadCount": 167641,
"CategoryTags": [
"UI",
"jobs"
],
"LastUpdate": "1655798927",
"DownloadLinkInstall": "https://kamori.goats.dev/Plugin/Download/BigPlayerDebuffs?isUpdate=False&isTesting=False&branch=api6",
"DownloadLinkTesting": "https://kamori.goats.dev/Plugin/Download/BigPlayerDebuffs?isUpdate=False&isTesting=True&branch=api6",
"DownloadLinkUpdate": "https://raw.githubusercontent.com/goatcorp/DalamudPlugins/api6/plugins/BigPlayerDebuffs/latest.zip"
},
{
"Author": "ackwell",
"Name": "Browser Host",
"Punchline": "Dalamud plugin for in-game browser rendering.",
"Description": "Dalamud plugin for in-game browser rendering. Think OverlayPlugin, but it's in the game itself.\nUse the settings button below or the '/bh config' command to configure.",
"InternalName": "BrowserHost.Plugin",
"AssemblyVersion": "1.4.1.2",
"RepoUrl": "https://github.com/ackwell/BrowserHost",
"ApplicableVersion": "any",
"Tags": [
"framework",
"browser",
"inlay"
],
"DalamudApiLevel": 4,
"IsHide": "False",
"IsTestingExclusive": "False",
"DownloadCount": 11545,
"CategoryTags": [
"UI"
],
"LastUpdate": "1633321448",
"DownloadLinkInstall": "https://kamori.goats.dev/Plugin/Download/BrowserHost.Plugin?isUpdate=False&isTesting=False&branch=api6",
"DownloadLinkTesting": "https://kamori.goats.dev/Plugin/Download/BrowserHost.Plugin?isUpdate=False&isTesting=True&branch=api6",
"DownloadLinkUpdate": "https://raw.githubusercontent.com/goatcorp/DalamudPlugins/api6/plugins/BrowserHost.Plugin/latest.zip"
},
{
"Author": "Styr1x",
"Name": "Browsingway",
"InternalName": "Browsingway",
"AssemblyVersion": "1.0.0.5",
"Description": "Renders browser overlays in-game to enable playing in fullscreen (and G-SYNC) while having access to ACT overlays.\nUse the settings button below or the '/bw config' command to configure.\nBased on the BrowserHost plugin by ackwell.",
"ApplicableVersion": "any",
"RepoUrl": "https://github.com/Styr1x/Browsingway",
"Tags": [
"framework",
"browser",
"inlay",
"overlay",
"chromium",
"act"
],
"DalamudApiLevel": 6,
"LoadPriority": 0,
"Punchline": "Browser overlays rendered in-game.",
"Changelog": "- Updated Chromium to 103.0.5060.66",
"IsHide": "False",
"TestingAssemblyVersion": "1.0.0.2",
"IsTestingExclusive": "False",
"DownloadCount": 52908,
"LastUpdate": "1657056932",
"DownloadLinkInstall": "https://kamori.goats.dev/Plugin/Download/Browsingway?isUpdate=False&isTesting=False&branch=api6",
"DownloadLinkTesting": "https://kamori.goats.dev/Plugin/Download/Browsingway?isUpdate=False&isTesting=True&branch=api6",
"DownloadLinkUpdate": "https://raw.githubusercontent.com/goatcorp/DalamudPlugins/api6/plugins/Browsingway/latest.zip"
},
{
"Author": "ascclemens",
"Name": "Burnt Toast",
"InternalName": "BurntToast",
"AssemblyVersion": "1.2.4",
"Description": "Hides toast notifications you don't want to see.",
"ApplicableVersion": "any",
"RepoUrl": "https://git.annaclemens.io/ascclemens/BurntToast",
"DalamudApiLevel": 6,
"LoadPriority": 0,
"IsHide": "False",
"IsTestingExclusive": "False",
"DownloadCount": 24628,
"CategoryTags": [
"UI"
],
"LastUpdate": "1649987015",
"DownloadLinkInstall": "https://kamori.goats.dev/Plugin/Download/BurntToast?isUpdate=False&isTesting=False&branch=api6",
"DownloadLinkTesting": "https://kamori.goats.dev/Plugin/Download/BurntToast?isUpdate=False&isTesting=True&branch=api6",
"DownloadLinkUpdate": "https://raw.githubusercontent.com/goatcorp/DalamudPlugins/api6/plugins/BurntToast/latest.zip"
},
{
"Author": "Caraxi & Ottermandias",
"Name": "ChatAlerts",
"Punchline": "Play sounds and highlight text based on defined filters.",
"Description": "",
"Tags": [
"Chat",
"Highlight",
"Alert",
"Alarm",
"Ping",
"Roleplay",
"Sound"
],
"InternalName": "ChatAlerts",
"AssemblyVersion": "2.0.0.5",
"RepoUrl": "https://github.com/Ottermandias/ChatAlerts",
"ApplicableVersion": "any",
"DalamudApiLevel": 6,
"IsHide": "False",
"IsTestingExclusive": "False",
"DownloadCount": 19669,
"LastUpdate": "1649935803",
"DownloadLinkInstall": "https://kamori.goats.dev/Plugin/Download/ChatAlerts?isUpdate=False&isTesting=False&branch=api6",
"DownloadLinkTesting": "https://kamori.goats.dev/Plugin/Download/ChatAlerts?isUpdate=False&isTesting=True&branch=api6",
"DownloadLinkUpdate": "https://raw.githubusercontent.com/goatcorp/DalamudPlugins/api6/plugins/ChatAlerts/latest.zip"
},
{
"Author": "Haplo064",
"Name": "Chat Bubbles",
"Punchline": "Enables in-game chat bubbles.",
"InternalName": "ChatBubbles",
"Description": "Using native chat bubble display, see who is talking about what in a more natural fashion.",
"Tags": [
"UI",
"Roleplay",
"RP",
"Bubbles",
"Chat"
],
"RepoUrl": "https://github.com/Haplo064/ChatBubbles",
"AssemblyVersion": "2.1.1.1",
"ApplicableVersion": "any",
"DalamudApiLevel": 6,
"LoadPriority": 0,
"Changelog": "Really fixed it this time.",
"IsHide": "True",
"IsTestingExclusive": "False",
"DownloadCount": 665389,
"CategoryTags": [
"social"
],
"LastUpdate": "1655592924",
"DownloadLinkInstall": "https://kamori.goats.dev/Plugin/Download/ChatBubbles?isUpdate=False&isTesting=False&branch=api6",
"DownloadLinkTesting": "https://kamori.goats.dev/Plugin/Download/ChatBubbles?isUpdate=False&isTesting=True&branch=api6",
"DownloadLinkUpdate": "https://raw.githubusercontent.com/goatcorp/DalamudPlugins/api6/plugins/ChatBubbles/latest.zip"
},
{
"Author": "kij",
"Name": "ChatCoordinates",
"InternalName": "ChatCoordinates",
"AssemblyVersion": "2.1.2.0",
"Description": "Places flag marker on map from coordinates in chat.\nOpens map with given coordinates for current or given zone.\nSee \"/coord\" for configuration and usage info.",
"ApplicableVersion": "any",
"RepoUrl": "https://github.com/kissorjeyabalan/dalamud-chatcoordinates",
"DalamudApiLevel": 6,
"LoadPriority": 0,
"Punchline": "Places flag marker on map from coordinates in chat.",
"IsHide": "False",
"IsTestingExclusive": "False",
"DownloadCount": 76809,
"CategoryTags": [
"social",
"utility"
],
"LastUpdate": "1649939103",
"DownloadLinkInstall": "https://kamori.goats.dev/Plugin/Download/ChatCoordinates?isUpdate=False&isTesting=False&branch=api6",
"DownloadLinkTesting": "https://kamori.goats.dev/Plugin/Download/ChatCoordinates?isUpdate=False&isTesting=True&branch=api6",
"DownloadLinkUpdate": "https://raw.githubusercontent.com/goatcorp/DalamudPlugins/api6/plugins/ChatCoordinates/latest.zip"
},
{
"Author": "Haplo064",
"Name": "Chat Extender",
"InternalName": "ChatExtender",
"Description": "This plugin adds functionality to FFXIV in-game chat.",
"Tags": [
"Chat",
"UI",
"Replacement",
"Extension",
"Tab",
"Bubble"
],
"RepoUrl": "https://github.com/Haplo064/ffxiv-chat-extender/",
"AssemblyVersion": "2.0.2.4",
"ApplicableVersion": "any",
"DalamudApiLevel": 1,
"IsHide": "False",
"IsTestingExclusive": "False",
"DownloadCount": 2695,
"CategoryTags": [
"social"
],
"LastUpdate": "1594007235",
"DownloadLinkInstall": "https://kamori.goats.dev/Plugin/Download/ChatExtender?isUpdate=False&isTesting=False&branch=api6",
"DownloadLinkTesting": "https://kamori.goats.dev/Plugin/Download/ChatExtender?isUpdate=False&isTesting=True&branch=api6",
"DownloadLinkUpdate": "https://raw.githubusercontent.com/goatcorp/DalamudPlugins/api6/plugins/ChatExtender/latest.zip"
},
{
"Author": "ascclemens",
"Name": "Chat 2",
"InternalName": "ChatTwo",
"AssemblyVersion": "1.17.2.0",
"Description": "Chat 2 is a complete rewrite of the in-game chat window as a plugin. It\nsupports:\n\n- Unlimited tabs\n- Tabs that always send to a certain channel\n- More flexible filtering\n- RGB channel colouring\n- Completely variable font size\n- Sidebar tabs\n- Unread counts\n- Screenshot mode (obfuscate names)",
"ApplicableVersion": "any",
"RepoUrl": "https://git.annaclemens.io/ascclemens/ChatTwo",
"DalamudApiLevel": 6,
"LoadPriority": 0,
"Punchline": "Electric Boogaloo - ♪ A whole new chat, a new fantastic chat window ♪",
"IsHide": "True",
"IsTestingExclusive": "False",
"DownloadCount": 105915,
"LastUpdate": "1657813198",
"DownloadLinkInstall": "https://kamori.goats.dev/Plugin/Download/ChatTwo?isUpdate=False&isTesting=False&branch=api6",
"DownloadLinkTesting": "https://kamori.goats.dev/Plugin/Download/ChatTwo?isUpdate=False&isTesting=True&branch=api6",
"DownloadLinkUpdate": "https://raw.githubusercontent.com/goatcorp/DalamudPlugins/api6/plugins/ChatTwo/latest.zip"
},
{
"Author": "Franz",
"Name": "ChatTyper",
"InternalName": "ChatTyper",
"AssemblyVersion": "0.1.0.5",
"Description": "Prefixes all chatbox messages with their chat type number and name, if known.",
"ApplicableVersion": "any",
"RepoUrl": "https://github.com/reiichi001/dalamud-chattyper",
"DalamudApiLevel": 6,
"LoadPriority": 0,
"Punchline": "This is still mostly a dev tool for debugging, but people like it?",
"IsHide": "False",
"IsTestingExclusive": "False",
"DownloadCount": 5030,
"LastUpdate": "1654262838",
"DownloadLinkInstall": "https://kamori.goats.dev/Plugin/Download/ChatTyper?isUpdate=False&isTesting=False&branch=api6",
"DownloadLinkTesting": "https://kamori.goats.dev/Plugin/Download/ChatTyper?isUpdate=False&isTesting=True&branch=api6",
"DownloadLinkUpdate": "https://raw.githubusercontent.com/goatcorp/DalamudPlugins/api6/plugins/ChatTyper/latest.zip"
},
{
"Author": "MidoriKami",
"Name": "Chill Frames",
"InternalName": "ChillFrames",
"AssemblyVersion": "1.4.1.0",
"Description": "Tired of your GPU melting your face off while just running around? Why render at 240 FPS when you're just staring at that gathering node? Fret no more! Chill Frames allows you to limit the games framerate while out of combat!",
"ApplicableVersion": "any",
"RepoUrl": "https://github.com/MidoriKami/ChillFrames",
"Tags": [
"utility"
],
"CategoryTags": [
"utility"
],
"DalamudApiLevel": 6,
"LoadPriority": 0,
"Punchline": "Limit Framerate while out of combat",
"IsHide": "False",
"IsTestingExclusive": "False",
"DownloadCount": 94252,
"LastUpdate": "1655860162",
"DownloadLinkInstall": "https://kamori.goats.dev/Plugin/Download/ChillFrames?isUpdate=False&isTesting=False&branch=api6",
"DownloadLinkTesting": "https://kamori.goats.dev/Plugin/Download/ChillFrames?isUpdate=False&isTesting=True&branch=api6",
"DownloadLinkUpdate": "https://raw.githubusercontent.com/goatcorp/DalamudPlugins/api6/plugins/ChillFrames/latest.zip"
},
{
"Author": "NotNite",
"Name": "cl_showpos",
"InternalName": "cl_showpos",
"AssemblyVersion": "1.0.5.2",
"Description": "Shows your exact position, rotation, and velocity on screen. Based off of the cl_showpos command from the Source Engine.",
"ApplicableVersion": "any",
"RepoUrl": "https://gitlab.com/jules/cl_showpos",
"Tags": [
"ui"
],
"CategoryTags": [
"ui"
],
"DalamudApiLevel": 6,
"LoadPriority": 0,
"Punchline": "Customizable, Source Engine-styled position info",
"IsHide": "False",
"IsTestingExclusive": "False",
"DownloadCount": 10094,
"LastUpdate": "1659379158",
"DownloadLinkInstall": "https://kamori.goats.dev/Plugin/Download/cl_showpos?isUpdate=False&isTesting=False&branch=api6",
"DownloadLinkTesting": "https://kamori.goats.dev/Plugin/Download/cl_showpos?isUpdate=False&isTesting=True&branch=api6",
"DownloadLinkUpdate": "https://raw.githubusercontent.com/goatcorp/DalamudPlugins/api6/plugins/cl_showpos/latest.zip"
},
{
"Author": "Chivalrik",
"Name": "Compass",
"InternalName": "Compass",
"AssemblyVersion": "1.25.0",
"Description": "Check-out the repository for steps on how to report missing/wrong filter\nand hiding options. Have a look at the FAQ tab in the config window\nafter install for common caveats.",
"ApplicableVersion": "any",
"RepoUrl": "https://github.com/fitzchivalrik/compass",
"DalamudApiLevel": 6,
"LoadPriority": 0,
"Punchline": "Monodimensional compass for your adventures.",
"Changelog": "- feat: Ability to disable Cardinals\n- feat: Add intercardinals\n- feat: Add own FC filter\n- feat: Enable negative X position values\n- feat: ALL circles filter (FATEs & Quests)\n- fix: Update to new Clientstructs\n- chore: Behind-the-scenes refactoring",
"IsHide": "True",
"IsTestingExclusive": "False",
"DownloadCount": 44545,
"CategoryTags": [
"UI"
],
"LastUpdate": "1658536031",
"DownloadLinkInstall": "https://kamori.goats.dev/Plugin/Download/Compass?isUpdate=False&isTesting=False&branch=api6",
"DownloadLinkTesting": "https://kamori.goats.dev/Plugin/Download/Compass?isUpdate=False&isTesting=True&branch=api6",
"DownloadLinkUpdate": "https://raw.githubusercontent.com/goatcorp/DalamudPlugins/api6/plugins/Compass/latest.zip"
},
{
"Author": "Lharz",
"Name": "Currency Alert",
"InternalName": "CurrencyAlert",
"AssemblyVersion": "0.3.2.0",
"Description": "/currencyalert: shows the configuration panel.",
"ApplicableVersion": "any",
"RepoUrl": "https://github.com/Lharz/xiv-currency-alert",
"Tags": [
"plugin",
"currency",
"tomestones",
"utility",
"other"
],
"DalamudApiLevel": 6,
"LoadPriority": 0,
"Punchline": "Display alerts upon reaching configurable currencies thresholds (such as Poetics or PVP marks).",
"IsHide": "False",
"IsTestingExclusive": "False",
"DownloadCount": 48634,
"LastUpdate": "1650129121",
"DownloadLinkInstall": "https://kamori.goats.dev/Plugin/Download/CurrencyAlert?isUpdate=False&isTesting=False&branch=api6",
"DownloadLinkTesting": "https://kamori.goats.dev/Plugin/Download/CurrencyAlert?isUpdate=False&isTesting=True&branch=api6",
"DownloadLinkUpdate": "https://raw.githubusercontent.com/goatcorp/DalamudPlugins/api6/plugins/CurrencyAlert/latest.zip"
},
{
"Author": "MidoriKami",
"Name": "Daily Duty",
"InternalName": "DailyDuty",
"AssemblyVersion": "2.0.5.6",
"Description": "Automatically track and complete many daily and weekly tasks.",
"ApplicableVersion": "any",
"RepoUrl": "https://github.com/MidoriKami/DailyDuty",
"Tags": [
"utility"
],
"CategoryTags": [
"utility"
],
"DalamudApiLevel": 6,
"LoadPriority": 0,
"Punchline": "Easily Track Daily and Weekly tasks.",
"IsHide": "True",
"IsTestingExclusive": "False",
"DownloadCount": 1103161,
"LastUpdate": "1660171063",
"DownloadLinkInstall": "https://kamori.goats.dev/Plugin/Download/DailyDuty?isUpdate=False&isTesting=False&branch=api6",
"DownloadLinkTesting": "https://kamori.goats.dev/Plugin/Download/DailyDuty?isUpdate=False&isTesting=True&branch=api6",
"DownloadLinkUpdate": "https://raw.githubusercontent.com/goatcorp/DalamudPlugins/api6/plugins/DailyDuty/latest.zip"
},
{
"Author": "goat, modded by Franz",
"Name": "Discord Chat Bridge",
"InternalName": "Dalamud.DiscordBridge",
"AssemblyVersion": "1.2.6.0",
"Description": "This plugin allows you to receive your chat messages via Discord.",
"ApplicableVersion": "any",
"RepoUrl": "https://github.com/reiichi001/Dalamud.DiscordBridge",
"Tags": [
"discord",
"chat"
],
"DalamudApiLevel": 6,
"LoadPriority": 0,
"Punchline": "Receive your chat messages via Discord.",
"IsHide": "False",
"IsTestingExclusive": "False",
"DownloadCount": 98064,
"CategoryTags": [
"utility"
],
"LastUpdate": "1654262822",
"DownloadLinkInstall": "https://kamori.goats.dev/Plugin/Download/Dalamud.DiscordBridge?isUpdate=False&isTesting=False&branch=api6",
"DownloadLinkTesting": "https://kamori.goats.dev/Plugin/Download/Dalamud.DiscordBridge?isUpdate=False&isTesting=True&branch=api6",
"DownloadLinkUpdate": "https://raw.githubusercontent.com/goatcorp/DalamudPlugins/api6/plugins/Dalamud.DiscordBridge/latest.zip"
},
{
"Author": "goat",
"Name": "Wotsit",
"InternalName": "Dalamud.FindAnything",
"AssemblyVersion": "1.0.1.9",
"Description": "Adds a convenient quick search akin to Spotlight that lets you open game windows, teleport, find wiki articles, and more.\nPress Control + T to open the search window. This can be changed by searching for \"Wotsit Settings\".",
"ApplicableVersion": "any",
"Tags": [
"find",
"teleport",
"wiki"
],
"DalamudApiLevel": 6,
"LoadPriority": 0,
"Punchline": "Find anything, go anywhere, in style.",
"IsHide": "False",
"IsTestingExclusive": "False",
"DownloadCount": 73699,
"LastUpdate": "1659308660",
"DownloadLinkInstall": "https://kamori.goats.dev/Plugin/Download/Dalamud.FindAnything?isUpdate=False&isTesting=False&branch=api6",
"DownloadLinkTesting": "https://kamori.goats.dev/Plugin/Download/Dalamud.FindAnything?isUpdate=False&isTesting=True&branch=api6",
"DownloadLinkUpdate": "https://raw.githubusercontent.com/goatcorp/DalamudPlugins/api6/plugins/Dalamud.FindAnything/latest.zip"
},
{
"Author": "Not Cara",
"Name": "Ultrawide Cutscenes",
"InternalName": "Dalamud.FullscreenCutscenes",
"AssemblyVersion": "0.0.0.1",
"Description": "This plugin removes the \"letterboxing\" bars when watching cutscenes on ultrawide monitors.\nBeware! You may see things that you are not supposed to be seeing, such as upcoming NPCs popping in or T-posing.\n\nThanks to aers for finding this.",
"ApplicableVersion": "any",
"RepoUrl": "https://github.com/goaaats/Dalamud.FullscreenCutscenes",
"Tags": [
"ultrawide",
"cutscene",
"fullscreen"
],
"DalamudApiLevel": 6,
"LoadPriority": 0,
"Punchline": "Remove letterboxing from cutscenes on ultrawide monitors.",
"IsHide": "False",
"IsTestingExclusive": "False",
"DownloadCount": 12366,
"LastUpdate": "1650060943",
"DownloadLinkInstall": "https://kamori.goats.dev/Plugin/Download/Dalamud.FullscreenCutscenes?isUpdate=False&isTesting=False&branch=api6",
"DownloadLinkTesting": "https://kamori.goats.dev/Plugin/Download/Dalamud.FullscreenCutscenes?isUpdate=False&isTesting=True&branch=api6",
"DownloadLinkUpdate": "https://raw.githubusercontent.com/goatcorp/DalamudPlugins/api6/plugins/Dalamud.FullscreenCutscenes/latest.zip"
},
{
"Author": "goat",
"Name": "Fancy Loading Screens",
"InternalName": "Dalamud.LoadingImage",
"AssemblyVersion": "1.0.0.8",
"Description": "This plugin shows the destination zone's concept art while loading.\nNOTE: ONLY LOOKS RIGHT ON 16:9 SCREENS! The concept art is not any bigger, and we can't expand/fix it. Sorry!",
"ApplicableVersion": "any",
"DalamudApiLevel": 6,
"LoadPriority": 0,
"Punchline": "Shows the destination zone's concept art while loading",
"IsHide": "True",
"TestingAssemblyVersion": "1.0.0.1",
"IsTestingExclusive": "False",
"DownloadCount": 231996,
"CategoryTags": [
"other"
],
"LastUpdate": "1650836854",
"DownloadLinkInstall": "https://kamori.goats.dev/Plugin/Download/Dalamud.LoadingImage?isUpdate=False&isTesting=False&branch=api6",
"DownloadLinkTesting": "https://kamori.goats.dev/Plugin/Download/Dalamud.LoadingImage?isUpdate=False&isTesting=True&branch=api6",
"DownloadLinkUpdate": "https://raw.githubusercontent.com/goatcorp/DalamudPlugins/api6/plugins/Dalamud.LoadingImage/latest.zip"
},
{
"Author": "goat",
"Name": "Discord Rich Presence",
"InternalName": "Dalamud.RichPresence",
"AssemblyVersion": "2.0.0.5",
"Description": "This plugin allows you to show your zone, job, level, name, and world in your Discord status.",
"ApplicableVersion": "any",
"Tags": [
"Discord"
],
"DalamudApiLevel": 6,
"LoadPriority": 0,
"Punchline": "Show your zone, job, level, name, and world in your Discord status",
"Changelog": "* Added party grouping support, will show people you group with on Discord if they also use the plugin\n* Now shows AFK status by default, can be disabled\n* Now shows queue position if Waitingway is installed",
"IsHide": "False",
"IsTestingExclusive": "False",
"DownloadCount": 239601,
"CategoryTags": [
"utility"
],
"LastUpdate": "1656150031",
"DownloadLinkInstall": "https://kamori.goats.dev/Plugin/Download/Dalamud.RichPresence?isUpdate=False&isTesting=False&branch=api6",
"DownloadLinkTesting": "https://kamori.goats.dev/Plugin/Download/Dalamud.RichPresence?isUpdate=False&isTesting=True&branch=api6",
"DownloadLinkUpdate": "https://raw.githubusercontent.com/goatcorp/DalamudPlugins/api6/plugins/Dalamud.RichPresence/latest.zip"
},
{
"Author": "goat",
"Name": "Hey Dalamud!",
"Description": "The intelligent voice assistant for your FFXIV experience - teleport to places, open other plugins, the possibilities are limitless!\nJust say \"Hey Dalamud, help me!\" to learn more.",
"InternalName": "DalamudVox",
"AssemblyVersion": "1.0.0.2",
"RepoUrl": "https://github.com/goaaats/dalamudvox",
"ApplicableVersion": "any",
"DalamudApplicableVersion": ">=4.9.8.3",
"DalamudApiLevel": "1",
"Tags": [
"voice",
"amazing",
"intelligent"
],
"IsHide": "False",
"IsTestingExclusive": "False",
"DownloadCount": 69,
"CategoryTags": [
"utility"
],
"LastUpdate": "1604857638",
"DownloadLinkInstall": "https://kamori.goats.dev/Plugin/Download/DalamudVox?isUpdate=False&isTesting=False&branch=api6",
"DownloadLinkTesting": "https://kamori.goats.dev/Plugin/Download/DalamudVox?isUpdate=False&isTesting=True&branch=api6",
"DownloadLinkUpdate": "https://raw.githubusercontent.com/goatcorp/DalamudPlugins/api6/plugins/DalamudVox/latest.zip"
},
{
"Author": "perchbird",
"Name": "Damage Info",
"InternalName": "DamageInfoPlugin",
"AssemblyVersion": "2.1.0.3",
"Description": "Configurable options for in-game fly text color based on damage type, with additional settings for damage source and fly text decluttering options.",
"ApplicableVersion": "any",
"RepoUrl": "https://github.com/lmcintyre/DamageInfoPlugin",
"DalamudApiLevel": 6,
"LoadPriority": 0,
"Punchline": "Modifies in-game fly-text for more (or less) damage information.",
"IsHide": "True",
"IsTestingExclusive": "False",
"DownloadCount": 385141,
"CategoryTags": [
"UI"
],
"LastUpdate": "1658965435",
"DownloadLinkInstall": "https://kamori.goats.dev/Plugin/Download/DamageInfoPlugin?isUpdate=False&isTesting=False&branch=api6",
"DownloadLinkTesting": "https://kamori.goats.dev/Plugin/Download/DamageInfoPlugin?isUpdate=False&isTesting=True&branch=api6",
"DownloadLinkUpdate": "https://raw.githubusercontent.com/goatcorp/DalamudPlugins/api6/plugins/DamageInfoPlugin/latest.zip"
},
{
"Author": "Kouzukii",
"Name": "Death Recap",
"InternalName": "DeathRecap",
"AssemblyVersion": "1.8.0.0",
"Description": "Quickly figure out what killed you or your party members!\n\nShows:\n- Healing\n- Damage taken\n- Debuffs\n- Buffs\n- Barriers\n- Addle, Feint, Reprisal on damage source",
"ApplicableVersion": "any",
"RepoUrl": "https://github.com/Kouzukii/ffxiv-deathrecap",
"Tags": [
"death",
"recap",
"log"
],
"CategoryTags": [
"utility"
],
"DalamudApiLevel": 6,
"LoadPriority": 0,
"Punchline": "Quickly figure out what killed you or your party members!",
"IsHide": "False",
"IsTestingExclusive": "False",
"DownloadCount": 380130,
"LastUpdate": "1657216479",
"DownloadLinkInstall": "https://kamori.goats.dev/Plugin/Download/DeathRecap?isUpdate=False&isTesting=False&branch=api6",
"DownloadLinkTesting": "https://kamori.goats.dev/Plugin/Download/DeathRecap?isUpdate=False&isTesting=True&branch=api6",
"DownloadLinkUpdate": "https://raw.githubusercontent.com/goatcorp/DalamudPlugins/api6/plugins/DeathRecap/latest.zip"
},
{
"Author": "WildWolf",
"Name": "DeepDungeonDex",
"InternalName": "DeepDungeonDex",
"AssemblyVersion": "1.6.3.0",
"Description": "A live bestiary for Deep Dungeon. Shows target mob aggro type, a subjective threat level, status vulnerabilities, and a general overview of notable mechanics. Threat level is meant to be taken with a grain of salt, is aimed towards solo players, and assumes a general familiarity with deep dungeon mechanics and the class being played. Information is accurate to the best of my knowledge based on crowdsourced information, but I could use your help! Please open an issue on the GitHub if you'd like to correct inaccurate or untested data. Original by Strati",
"ApplicableVersion": "any",
"RepoUrl": "https://github.com/wolfcomp/DeepDungeonDex",
"Tags": [
"deep dungeon",
"achievements",
"battle"
],
"DalamudApiLevel": 6,
"LoadPriority": 0,
"Punchline": "Live monster data for Deep Dungeons.",
"Changelog": "### [1.6.3](https://github.com/wolfcomp/DeepDungeonDex/compare/v1.6.2...v1.6.3) (2022-07-20)\r\n\r\n\r\n### Bug Fixes\r\n\r\n* missing dispose on command ([ac23f4f](https://github.com/wolfcomp/DeepDungeonDex/commit/ac23f4f6e4ee72df817b1bb872fec811031ed322))\r\n\r\n",
"IsHide": "True",
"TestingAssemblyVersion": "1.7.0.0",
"IsTestingExclusive": "False",
"DownloadCount": 475854,
"CategoryTags": [
"UI"
],
"LastUpdate": "1658309534",
"DownloadLinkInstall": "https://kamori.goats.dev/Plugin/Download/DeepDungeonDex?isUpdate=False&isTesting=False&branch=api6",
"DownloadLinkTesting": "https://kamori.goats.dev/Plugin/Download/DeepDungeonDex?isUpdate=False&isTesting=True&branch=api6",
"DownloadLinkUpdate": "https://raw.githubusercontent.com/goatcorp/DalamudPlugins/api6/plugins/DeepDungeonDex/latest.zip"
},
{
"Author": "jdsmith2816",
"Name": "DelvUI",
"InternalName": "DelvUI",
"AssemblyVersion": "1.3.1.1",
"Description": "DelvUI provides a highly configurable HUD replacement and is highly inspired by ElvUI from WoW",
"ApplicableVersion": "any",
"RepoUrl": "https://github.com/delvui/delvui",
"Tags": [
"UI"
],
"DalamudApiLevel": 6,
"LoadPriority": 0,
"Punchline": "A modern HUD replacement built for customization.",
"IsHide": "True",
"IsTestingExclusive": "False",
"DownloadCount": 363794,
"CategoryTags": [
"UI"
],
"LastUpdate": "1660717072",
"DownloadLinkInstall": "https://kamori.goats.dev/Plugin/Download/DelvUI?isUpdate=False&isTesting=False&branch=api6",
"DownloadLinkTesting": "https://kamori.goats.dev/Plugin/Download/DelvUI?isUpdate=False&isTesting=True&branch=api6",
"DownloadLinkUpdate": "https://raw.githubusercontent.com/goatcorp/DalamudPlugins/api6/plugins/DelvUI/latest.zip"
},
{
"Author": "PGGB",
"Name": "DeviceChangeFix",
"InternalName": "DeviceChangeFix",
"AssemblyVersion": "1.0.1.0",
"Description": "Stops controller input from freezing randomly.",
"ApplicableVersion": "any",
"RepoUrl": "https://github.com/PGGB/DeviceChangeFix",
"Tags": [
"fix",
"gamepad"
],
"DalamudApiLevel": 6,
"LoadPriority": 0,
"Punchline": "Stops controller input from freezing randomly.",
"IsHide": "False",
"IsTestingExclusive": "False",
"DownloadCount": 36307,
"LastUpdate": "1650099594",
"DownloadLinkInstall": "https://kamori.goats.dev/Plugin/Download/DeviceChangeFix?isUpdate=False&isTesting=False&branch=api6",
"DownloadLinkTesting": "https://kamori.goats.dev/Plugin/Download/DeviceChangeFix?isUpdate=False&isTesting=True&branch=api6",
"DownloadLinkUpdate": "https://raw.githubusercontent.com/goatcorp/DalamudPlugins/api6/plugins/DeviceChangeFix/latest.zip"
},
{
"Author": "PunishedPineapple",
"Name": "Distance",
"Punchline": "Target distance widgets.",
"Description": "Displays the distance in yalms to the target (or optionally to the target's ring), and can display distance until aggro range for supported bosses.",
"InternalName": "Distance",
"AssemblyVersion": "1.0.0.0",
"RepoUrl": "https://github.com/PunishedPineapple/Distance",
"IconUrl": "https://github.com/PunishedPineapple/Distance/raw/main/docs/Images/icon.png",
"ImageUrls": [
"https://github.com/PunishedPineapple/Distance/raw/main/docs/Images/image1.png",
"https://github.com/PunishedPineapple/Distance/raw/main/docs/Images/image2.png"
],
"ApplicableVersion": "any",
"Tags": [
"Distance",
"Range",
"Aggro",
"Enmity",
"Hate",
"Pull",
"Hitbox",
"Ring",
"Target"
],
"DalamudApiLevel": 6,
"IsHide": "True",
"TestingAssemblyVersion": "0.9.8.3",
"IsTestingExclusive": "False",
"DownloadCount": 49336,
"LastUpdate": "1659136542",
"DownloadLinkInstall": "https://kamori.goats.dev/Plugin/Download/Distance?isUpdate=False&isTesting=False&branch=api6",
"DownloadLinkTesting": "https://kamori.goats.dev/Plugin/Download/Distance?isUpdate=False&isTesting=True&branch=api6",
"DownloadLinkUpdate": "https://raw.githubusercontent.com/goatcorp/DalamudPlugins/api6/plugins/Distance/latest.zip"
},
{
"Author": "ocealot",
"Name": "EasyEyes",
"Punchline": "Hide annoying or distracting VFXs",
"Description": "A plugin which can hide any VFX. Icon by PAPACHIN",
"InternalName": "EasyEyes",
"AssemblyVersion": "1.2.1.0",
"RepoUrl": "https://github.com/0ceal0t/EasyEyes",
"ApplicableVersion": "any",
"Tags": [
"VFX",
"AVFX"
],
"DalamudApiLevel": 6,
"LoadPriority": 69419,
"IsHide": "False",
"IsTestingExclusive": "False",
"DownloadCount": 53843,
"CategoryTags": [
"UI"
],
"LastUpdate": "1649971187",
"DownloadLinkInstall": "https://kamori.goats.dev/Plugin/Download/EasyEyes?isUpdate=False&isTesting=False&branch=api6",
"DownloadLinkTesting": "https://kamori.goats.dev/Plugin/Download/EasyEyes?isUpdate=False&isTesting=True&branch=api6",
"DownloadLinkUpdate": "https://raw.githubusercontent.com/goatcorp/DalamudPlugins/api6/plugins/EasyEyes/latest.zip"
},
{
"Author": "Dante Souza e Souza - aka lokinmodar",
"Name": "Echoglossian",
"InternalName": "Echoglossian",
"AssemblyVersion": "2.99.2204.920",
"Description": "Realtime game text translator",
"ApplicableVersion": "any",
"RepoUrl": "https://github.com/lokinmodar/Echoglossian",
"Tags": [
"ffxiv",
"Dalamud",
"plugin",
"translation",
"UI",
"Utility"
],
"DalamudApiLevel": 6,
"LoadPriority": 0,
"ImageUrls": [
""
],
"IconUrl": "https://raw.githubusercontent.com/lokinmodar/Echoglossian/APIv4/images/icon.png",
"Punchline": "Dialogue and other in-game text translations? Yes we have!\nKnown Issues at: https://github.com/lokinmodar/Echoglossian/issues/12",
"IsHide": "False",
"IsTestingExclusive": "False",
"DownloadCount": 37004,
"CategoryTags": [
"UI"
],
"LastUpdate": "1650295430",
"DownloadLinkInstall": "https://kamori.goats.dev/Plugin/Download/Echoglossian?isUpdate=False&isTesting=False&branch=api6",
"DownloadLinkTesting": "https://kamori.goats.dev/Plugin/Download/Echoglossian?isUpdate=False&isTesting=True&branch=api6",
"DownloadLinkUpdate": "https://raw.githubusercontent.com/goatcorp/DalamudPlugins/api6/plugins/Echoglossian/latest.zip"
},
{
"Author": "Felys",
"Name": "EnemyListDebuffs",
"InternalName": "EnemyListDebuffs",
"AssemblyVersion": "0.3.4.0",
"Description": "Displays your debuffs on the enemy list. Original implementation credit to aers.",
"ApplicableVersion": "any",
"RepoUrl": "https://github.com/Felys1998/EnemyListDebuffs",
"DalamudApiLevel": 6,
"LoadPriority": 0,
"IsHide": "True",
"IsTestingExclusive": "False",
"DownloadCount": 124090,
"CategoryTags": [
"UI"
],
"LastUpdate": "1650322450",
"DownloadLinkInstall": "https://kamori.goats.dev/Plugin/Download/EnemyListDebuffs?isUpdate=False&isTesting=False&branch=api6",
"DownloadLinkTesting": "https://kamori.goats.dev/Plugin/Download/EnemyListDebuffs?isUpdate=False&isTesting=True&branch=api6",
"DownloadLinkUpdate": "https://raw.githubusercontent.com/goatcorp/DalamudPlugins/api6/plugins/EnemyListDebuffs/latest.zip"
},
{
"Author": "Xorus",
"Name": "EngageTimer",
"InternalName": "EngageTimer",
"AssemblyVersion": "2.2.2.1",
"Description": "Finally, display all the numbers when starting a countdown!\nComes with an accurate pull timer that starts when you or any of your party members enter combat.\n\nFeatures :\n- Big countdown that displays all the numbers\n- Customizable big-number textures (default, yellow, WoW style or custom files)\n- Display combat time in the Server Info Bar, and/or a floating window\n- OBS browser-source compatible page with countdown and current combat duration\n\nWhy the OBS thing ? Well, it can be useful if you want a big stylized stopwatch in your recordings.\nSee repository for more info.\n\nFeel free so send me feedback, bugs and potential improvements!",
"ApplicableVersion": "any",
"RepoUrl": "https://github.com/xorus/EngageTimer",
"Tags": [
"countdown",
"pull timer",
"stopwatch",
"OBS",
"overlay",
"streaming",
"combat"
],
"CategoryTags": [
"jobs"
],
"DalamudApiLevel": 6,
"LoadPriority": 0,
"ImageUrls": [
"https://raw.githubusercontent.com/xorus/EngageTimer/main/images/image1.png",
"https://raw.githubusercontent.com/xorus/EngageTimer/main/images/image2.png",
"https://raw.githubusercontent.com/xorus/EngageTimer/main/images/image3.png"
],
"IconUrl": "https://raw.githubusercontent.com/xorus/EngageTimer/main/images/icon.png",
"Punchline": "Complete combat countdown, pull timer and OBS overlay",
"IsHide": "False",
"IsTestingExclusive": "False",
"DownloadCount": 421975,
"LastUpdate": "1655755871",
"DownloadLinkInstall": "https://kamori.goats.dev/Plugin/Download/EngageTimer?isUpdate=False&isTesting=False&branch=api6",
"DownloadLinkTesting": "https://kamori.goats.dev/Plugin/Download/EngageTimer?isUpdate=False&isTesting=True&branch=api6",
"DownloadLinkUpdate": "https://raw.githubusercontent.com/goatcorp/DalamudPlugins/api6/plugins/EngageTimer/latest.zip"
},
{
"Author": "Eternita",
"Name": "EnemyListHP",
"InternalName": "EnmityHp",
"AssemblyVersion": "2.0.0.8",
"Description": "Displays enemies hp in enemy list. Just does that, nothing else. ",
"Punchline": "Displays enemies hp in enemy list.",
"ApplicableVersion": "any",
"RepoUrl": "https://github.com/Eternita-S/EnmityHp",
"DalamudApiLevel": 6,
"LoadPriority": 0,
"IsHide": "False",
"IsTestingExclusive": "False",
"DownloadCount": 66886,
"LastUpdate": "1659757988",
"DownloadLinkInstall": "https://kamori.goats.dev/Plugin/Download/EnmityHp?isUpdate=False&isTesting=False&branch=api6",
"DownloadLinkTesting": "https://kamori.goats.dev/Plugin/Download/EnmityHp?isUpdate=False&isTesting=True&branch=api6",
"DownloadLinkUpdate": "https://raw.githubusercontent.com/goatcorp/DalamudPlugins/api6/plugins/EnmityHp/latest.zip"
},
{
"Author": "ascclemens",
"Name": "Expanded Search Info",