This repository was archived by the owner on Sep 1, 2022. It is now read-only.
forked from goatcorp/DalamudPlugins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpluginmaster.json
2151 lines (2151 loc) · 111 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": "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": 22780,
"LastUpdate": "1618369127",
"DownloadLinkInstall": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=AccurateCountDown&isUpdate=False&isTesting=False&branch=api4",
"DownloadLinkTesting": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=AccurateCountDown&isUpdate=False&isTesting=True&branch=api4",
"DownloadLinkUpdate": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=AccurateCountDown&isUpdate=True&isTesting=False&branch=api4"
},
{
"Author": "Caraxi",
"Name": "Adventurer in Need",
"Description": "Recieve a notification when a duty roulette is in need of a role. /pbonus to setup",
"InternalName": "AdventurerInNeed",
"AssemblyVersion": "1.1.2.2",
"RepoUrl": "https://github.com/Caraxi/AdventurerInNeed",
"ApplicableVersion": "any",
"DalamudApiLevel": 3,
"IsHide": "False",
"IsTestingExclusive": "False",
"DownloadCount": 9801,
"LastUpdate": "1619078470",
"DownloadLinkInstall": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=AdventurerInNeed&isUpdate=False&isTesting=False&branch=api4",
"DownloadLinkTesting": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=AdventurerInNeed&isUpdate=False&isTesting=True&branch=api4",
"DownloadLinkUpdate": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=AdventurerInNeed&isUpdate=True&isTesting=False&branch=api4"
},
{
"Author": "Ms.Tress",
"Name": "Aether Sense (18+)",
"Description": "Elevate your gaming experience to gaming euphoria with integrated adult intimate hardware. Requires a Buttplug.io library server, such as Intiface Desktop: https://intiface.com/desktop/",
"InternalName": "AetherSense",
"AssemblyVersion": "1.0.0.10",
"RepoUrl": "https://github.com/Ms-Tress/AetherSense",
"ApplicableVersion": "any",
"Tags": [
"Ms.Tress",
"Intimate",
"Toys"
],
"DalamudApiLevel": 3,
"IsHide": "False",
"IsTestingExclusive": "False",
"DownloadCount": 6188,
"LastUpdate": "1620730989",
"DownloadLinkInstall": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=AetherSense&isUpdate=False&isTesting=False&branch=api4",
"DownloadLinkTesting": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=AetherSense&isUpdate=False&isTesting=True&branch=api4",
"DownloadLinkUpdate": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=AetherSense&isUpdate=True&isTesting=False&branch=api4"
},
{
"Author": "Ottermandias",
"Name": "AutoVisor",
"Punchline": "Change Visor and Stance based on State and Job.",
"Description": "Automatically change visor, headslot hiding, and weapon hiding status for different player states, as well as default CPose-stances per job.",
"Tags": [
"Visor",
"Headslot",
"Hat",
"CPose",
"Stance",
"State",
"Glasses"
],
"InternalName": "AutoVisor",
"AssemblyVersion": "1.2.0.1",
"RepoUrl": "https://github.com/Ottermandias/AutoVisor",
"ApplicableVersion": "any",
"DalamudApiLevel": 4,
"LoadPriority": 0,
"ImageUrls": null,
"IconUrl": "https://raw.githubusercontent.com/Ottermandias/AutoVisor/master/images/icon.png",
"IsHide": "False",
"IsTestingExclusive": "False",
"DownloadCount": 0,
"LastUpdate": "1631198387",
"DownloadLinkInstall": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=AutoVisor&isUpdate=False&isTesting=False&branch=api4",
"DownloadLinkTesting": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=AutoVisor&isUpdate=False&isTesting=True&branch=api4",
"DownloadLinkUpdate": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=AutoVisor&isUpdate=True&isTesting=False&branch=api4"
},
{
"Author": "ascclemens",
"Name": "Better Party Finder",
"InternalName": "BetterPartyFinder",
"AssemblyVersion": "1.2.1",
"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",
"DalamudApiLevel": 4,
"LoadPriority": 0,
"Punchline": "Use advanced Party Finder filter presets.",
"IsHide": "False",
"IsTestingExclusive": "False",
"DownloadCount": 6737,
"LastUpdate": "1630261152",
"DownloadLinkInstall": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=BetterPartyFinder&isUpdate=False&isTesting=False&branch=api4",
"DownloadLinkTesting": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=BetterPartyFinder&isUpdate=False&isTesting=True&branch=api4",
"DownloadLinkUpdate": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=BetterPartyFinder&isUpdate=True&isTesting=False&branch=api4"
},
{
"Author": "ackwell",
"Name": "Browser Host",
"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.0.0",
"RepoUrl": "https://github.com/ackwell/BrowserHost",
"ApplicableVersion": "any",
"Tags": [
"framework",
"browser",
"inlay"
],
"DalamudApiLevel": 3,
"IsHide": "False",
"IsTestingExclusive": "False",
"DownloadCount": 8703,
"LastUpdate": "1618924646",
"DownloadLinkInstall": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=BrowserHost.Plugin&isUpdate=False&isTesting=False&branch=api4",
"DownloadLinkTesting": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=BrowserHost.Plugin&isUpdate=False&isTesting=True&branch=api4",
"DownloadLinkUpdate": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=BrowserHost.Plugin&isUpdate=True&isTesting=False&branch=api4"
},
{
"Author": "ascclemens",
"Name": "Burnt Toast",
"InternalName": "BurntToast",
"AssemblyVersion": "1.2.1",
"Description": "Hides toast notifications you don't want to see.",
"ApplicableVersion": "any",
"RepoUrl": "https://git.sr.ht/~jkcclemens/BurntToast",
"DalamudApiLevel": 3,
"LoadPriority": 0,
"IsHide": "False",
"IsTestingExclusive": "False",
"DownloadCount": 3130,
"LastUpdate": "1618414789",
"DownloadLinkInstall": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=BurntToast&isUpdate=False&isTesting=False&branch=api4",
"DownloadLinkTesting": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=BurntToast&isUpdate=False&isTesting=True&branch=api4",
"DownloadLinkUpdate": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=BurntToast&isUpdate=True&isTesting=False&branch=api4"
},
{
"Author": "Haplo064",
"Name": "Chat Bubbles",
"InternalName": "ChatBubbles",
"Description": "Enables in-game chat bubbles.",
"Tags": [
"UI",
"Roleplay",
"RP",
"Bubbles",
"Chat"
],
"RepoUrl": "https://github.com/Haplo064/ChatBubbles",
"AssemblyVersion": "1.2.2.0",
"ApplicableVersion": "any",
"DalamudApiLevel": 3,
"IsHide": "False",
"IsTestingExclusive": "False",
"DownloadCount": 28805,
"LastUpdate": "1618367785",
"DownloadLinkInstall": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=ChatBubbles&isUpdate=False&isTesting=False&branch=api4",
"DownloadLinkTesting": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=ChatBubbles&isUpdate=False&isTesting=True&branch=api4",
"DownloadLinkUpdate": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=ChatBubbles&isUpdate=True&isTesting=False&branch=api4"
},
{
"Author": "kij",
"Name": "ChatCoordinates",
"Description": "Places flag marker on map from coordinates in chat. \"/coord help\" or \"/ctp help\" for more info.",
"InternalName": "ChatCoordinates",
"AssemblyVersion": "2.0.0.0",
"ApplicableVersion": "any",
"DalamudApiLevel": 3,
"IsHide": "False",
"IsTestingExclusive": "False",
"DownloadCount": 11346,
"LastUpdate": "1617890680",
"DownloadLinkInstall": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=ChatCoordinates&isUpdate=False&isTesting=False&branch=api4",
"DownloadLinkTesting": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=ChatCoordinates&isUpdate=False&isTesting=True&branch=api4",
"DownloadLinkUpdate": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=ChatCoordinates&isUpdate=True&isTesting=False&branch=api4"
},
{
"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": 2634,
"LastUpdate": "1594007235",
"DownloadLinkInstall": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=ChatExtender&isUpdate=False&isTesting=False&branch=api4",
"DownloadLinkTesting": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=ChatExtender&isUpdate=False&isTesting=True&branch=api4",
"DownloadLinkUpdate": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=ChatExtender&isUpdate=True&isTesting=False&branch=api4"
},
{
"Author": "Haplo064",
"Name": "Chat Translator",
"InternalName": "ChatTranslator",
"Description": "Enables in-game chat translation.",
"Tags": [
"UI",
"Translator",
"Translate",
"Translation",
"Chat"
],
"RepoUrl": "https://github.com/Haplo064/ChatTranslator",
"AssemblyVersion": "1.0.0.0",
"ApplicableVersion": "any",
"DalamudApiLevel": 3,
"LoadPriority": 100,
"IsHide": "False",
"IsTestingExclusive": "False",
"DownloadCount": 0,
"LastUpdate": "1618366599",
"DownloadLinkInstall": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=ChatTranslator&isUpdate=False&isTesting=False&branch=api4",
"DownloadLinkTesting": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=ChatTranslator&isUpdate=False&isTesting=True&branch=api4",
"DownloadLinkUpdate": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=ChatTranslator&isUpdate=True&isTesting=False&branch=api4"
},
{
"Author": "Chivalrik",
"Name": "Compass",
"InternalName": "Compass",
"AssemblyVersion": "1.8.2",
"Description": "Monodimensional compass for your adventures.",
"ApplicableVersion": "any",
"RepoUrl": "https://github.com/fitzchivalrik/compass",
"DalamudApiLevel": 3,
"LoadPriority": 0,
"IsHide": "False",
"IsTestingExclusive": "False",
"DownloadCount": 0,
"LastUpdate": "1623709075",
"DownloadLinkInstall": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=Compass&isUpdate=False&isTesting=False&branch=api4",
"DownloadLinkTesting": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=Compass&isUpdate=False&isTesting=True&branch=api4",
"DownloadLinkUpdate": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=Compass&isUpdate=True&isTesting=False&branch=api4"
},
{
"Author": "goat",
"Name": "Character Data Sync",
"Description": "This plugin allows you to use your character data from your main character on all others.\n\nIn-game, use the configuration menu to choose your main character, the restart the game to start syncing!",
"Punchline": "Sync your character data from your main character to all others",
"InternalName": "Dalamud.CharacterSync",
"AssemblyVersion": "1.8.0.0",
"ApplicableVersion": "any",
"DalamudApiLevel": 4,
"IsHide": "False",
"IsTestingExclusive": "False",
"DownloadCount": 15608,
"LastUpdate": "1630347378",
"DownloadLinkInstall": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=Dalamud.CharacterSync&isUpdate=False&isTesting=False&branch=api4",
"DownloadLinkTesting": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=Dalamud.CharacterSync&isUpdate=False&isTesting=True&branch=api4",
"DownloadLinkUpdate": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=Dalamud.CharacterSync&isUpdate=True&isTesting=False&branch=api4"
},
{
"Author": "goat, modded by Franz",
"Name": "Discord Chat Bridge",
"InternalName": "Dalamud.DiscordBridge",
"AssemblyVersion": "1.1.1.5",
"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": 4,
"LoadPriority": 0,
"Punchline": "Receive your chat messages via Discord.",
"IsHide": "False",
"IsTestingExclusive": "False",
"DownloadCount": 9800,
"LastUpdate": "1630604337",
"DownloadLinkInstall": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=Dalamud.DiscordBridge&isUpdate=False&isTesting=False&branch=api4",
"DownloadLinkTesting": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=Dalamud.DiscordBridge&isUpdate=False&isTesting=True&branch=api4",
"DownloadLinkUpdate": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=Dalamud.DiscordBridge&isUpdate=True&isTesting=False&branch=api4"
},
{
"Author": "goat",
"Name": "Fancy Loading Screens",
"Description": "This plugin shows the destination zone's concept art while loading.",
"Punchline": "Shows the destination zone's concept art while loading",
"InternalName": "Dalamud.LoadingImage",
"AssemblyVersion": "1.0.0.3",
"ApplicableVersion": "any",
"DalamudApiLevel": 4,
"IsHide": "False",
"TestingAssemblyVersion": "1.0.0.1",
"IsTestingExclusive": "False",
"DownloadCount": 17029,
"LastUpdate": "1630350448",
"DownloadLinkInstall": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=Dalamud.LoadingImage&isUpdate=False&isTesting=False&branch=api4",
"DownloadLinkTesting": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=Dalamud.LoadingImage&isUpdate=False&isTesting=True&branch=api4",
"DownloadLinkUpdate": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=Dalamud.LoadingImage&isUpdate=True&isTesting=False&branch=api4"
},
{
"Author": "goat",
"Name": "Discord Rich Presence",
"Description": "This plugin allows you to show your zone, job, name and world in your Discord status.",
"Punchline": "Show your zone, job, name and world in your Discord status",
"InternalName": "Dalamud.RichPresence",
"AssemblyVersion": "1.7.0.0",
"ApplicableVersion": "any",
"Tags": [
"Discord"
],
"DalamudApiLevel": 4,
"IsHide": "False",
"IsTestingExclusive": "False",
"DownloadCount": 19809,
"LastUpdate": "1630352464",
"DownloadLinkInstall": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=Dalamud.RichPresence&isUpdate=False&isTesting=False&branch=api4",
"DownloadLinkTesting": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=Dalamud.RichPresence&isUpdate=False&isTesting=True&branch=api4",
"DownloadLinkUpdate": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=Dalamud.RichPresence&isUpdate=True&isTesting=False&branch=api4"
},
{
"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": 24,
"LastUpdate": "1604857638",
"DownloadLinkInstall": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=DalamudVox&isUpdate=False&isTesting=False&branch=api4",
"DownloadLinkTesting": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=DalamudVox&isUpdate=False&isTesting=True&branch=api4",
"DownloadLinkUpdate": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=DalamudVox&isUpdate=True&isTesting=False&branch=api4"
},
{
"Author": "perchbird",
"Name": "Damage Info",
"InternalName": "DamageInfoPlugin",
"AssemblyVersion": "1.3.8.1",
"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": 4,
"LoadPriority": 0,
"Punchline": "Modifies in-game fly-text for more (or less) damage information.",
"IsHide": "False",
"IsTestingExclusive": "False",
"DownloadCount": 29900,
"LastUpdate": "1630723049",
"DownloadLinkInstall": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=DamageInfoPlugin&isUpdate=False&isTesting=False&branch=api4",
"DownloadLinkTesting": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=DamageInfoPlugin&isUpdate=False&isTesting=True&branch=api4",
"DownloadLinkUpdate": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=DamageInfoPlugin&isUpdate=True&isTesting=False&branch=api4"
},
{
"Author": "Strati",
"Name": "DeepDungeonDex",
"Punchline": "Live monster data for Deep Dungeons.",
"Description": "A live bestiary for Deep Dungeon. Shows target mob aggro type, a subjective threat level, vulnerability to stun, 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 please open an issue on the GitHub or ping me in either the Deep Dungeons or QuickLauncher Discord servers if anything is found to be inaccurate or if you'd like to make a report on untested data.",
"Tags": [
"deep dungeon",
"achievements",
"battle"
],
"InternalName": "DeepDungeonDex",
"AssemblyVersion": "1.1.7.0",
"RepoUrl": "https://github.com/Strati/DeepDungeonDex",
"ApplicableVersion": "any",
"DalamudApiLevel": 4,
"LoadPriority": 0,
"IsHide": "False",
"IsTestingExclusive": "False",
"DownloadCount": 587,
"LastUpdate": "1630019053",
"DownloadLinkInstall": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=DeepDungeonDex&isUpdate=False&isTesting=False&branch=api4",
"DownloadLinkTesting": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=DeepDungeonDex&isUpdate=False&isTesting=True&branch=api4",
"DownloadLinkUpdate": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=DeepDungeonDex&isUpdate=True&isTesting=False&branch=api4"
},
{
"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.1.0.0",
"RepoUrl": "https://github.com/0ceal0t/EasyEyes",
"ApplicableVersion": "any",
"Tags": [
"VFX",
"AVFX"
],
"DalamudApiLevel": 4,
"LoadPriority": 69419,
"IsHide": "False",
"IsTestingExclusive": "False",
"DownloadCount": 0,
"LastUpdate": "1630677717",
"DownloadLinkInstall": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=EasyEyes&isUpdate=False&isTesting=False&branch=api4",
"DownloadLinkTesting": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=EasyEyes&isUpdate=False&isTesting=True&branch=api4",
"DownloadLinkUpdate": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=EasyEyes&isUpdate=True&isTesting=False&branch=api4"
},
{
"Author": "Xorus",
"Name": "EngageTimer",
"InternalName": "EngageTimer",
"AssemblyVersion": "1.2.1.1",
"Description": "Combat Timer for OBS and ingame overlay with some benefits like a big nice countdown in the middle of the screen in the style of the original one.\nPlease consult the repository link for OBS setup instructions.",
"ApplicableVersion": "any",
"RepoUrl": "https://github.com/xorus/EngageTimer",
"Tags": [
"countdown",
"stopwatch",
"OBS"
],
"DalamudApiLevel": 4,
"LoadPriority": 0,
"ImageUrls": [
"https://github.com/goatcorp/DalamudPlugins/blob/api4/plugins/EngageTimer/images/image1.png",
"https://github.com/goatcorp/DalamudPlugins/blob/api4/plugins/EngageTimer/images/image2.png"
],
"IconUrl": "https://github.com/goatcorp/DalamudPlugins/blob/api4/plugins/EngageTimer/images/icon.png",
"Punchline": "Combat countdown with all numbers, stopwatch and OBS support",
"Changelog": "- fixes for new dalamud api",
"IsHide": "False",
"IsTestingExclusive": "False",
"DownloadCount": 0,
"LastUpdate": "1630236592",
"DownloadLinkInstall": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=EngageTimer&isUpdate=False&isTesting=False&branch=api4",
"DownloadLinkTesting": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=EngageTimer&isUpdate=False&isTesting=True&branch=api4",
"DownloadLinkUpdate": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=EngageTimer&isUpdate=True&isTesting=False&branch=api4"
},
{
"Author": "ascclemens",
"Name": "Expanded Search Info",
"InternalName": "ExpandedSearchInfo",
"AssemblyVersion": "1.3.7",
"Description": "Displays extra information pulled from search info when examining.\n\nSupport for:\n- Any plain text URL\n- Pastebin.com\n- carrd.co/crd.co\n- F-List\n- Refsheet\n\nSimply examine someone with a search info containing pointers to one of\nthese locations and the plugin will display information automatically.\n\nIcon: expand by Gregor Cresnar from the Noun Project",
"ApplicableVersion": "any",
"RepoUrl": "https://git.sr.ht/~jkcclemens/ExpandedSearchInfo",
"DalamudApiLevel": 4,
"LoadPriority": 0,
"Punchline": "Displays extra information pulled from search info when examining.",
"IsHide": "False",
"IsTestingExclusive": "False",
"DownloadCount": 5562,
"LastUpdate": "1630648717",
"DownloadLinkInstall": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=ExpandedSearchInfo&isUpdate=False&isTesting=False&branch=api4",
"DownloadLinkTesting": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=ExpandedSearchInfo&isUpdate=False&isTesting=True&branch=api4",
"DownloadLinkUpdate": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=ExpandedSearchInfo&isUpdate=True&isTesting=False&branch=api4"
},
{
"Author": "BiscuitUmU, Kazumi",
"Name": "Fantasy Player",
"InternalName": "FantasyPlayer.Dalamud",
"AssemblyVersion": "2.2.0.0",
"Description": "Control Spotify playback from within FFX|V\nUse the button below to open settings or use the '/pfp settings' command.",
"ApplicableVersion": "any",
"RepoUrl": "https://github.com/Dormanil/FantasyPlayer",
"DalamudApiLevel": 3,
"LoadPriority": 0,
"IsHide": "False",
"IsTestingExclusive": "False",
"DownloadCount": 0,
"LastUpdate": "1621021219",
"DownloadLinkInstall": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=FantasyPlayer.Dalamud&isUpdate=False&isTesting=False&branch=api4",
"DownloadLinkTesting": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=FantasyPlayer.Dalamud&isUpdate=False&isTesting=True&branch=api4",
"DownloadLinkUpdate": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=FantasyPlayer.Dalamud&isUpdate=True&isTesting=False&branch=api4"
},
{
"Author": "daemitus",
"Name": "ezFauxHollows",
"InternalName": "FauxHollowsSolver",
"AssemblyVersion": "1.1.0.0",
"Description": "This plugin highlights tiles in Faux Hollows that represent the best potential action you can take.",
"ApplicableVersion": "any",
"RepoUrl": "https://github.com/daemitus/FauxHollowsSolver",
"DalamudApiLevel": 4,
"LoadPriority": 0,
"ImageUrls": [
"https://raw.githubusercontent.com/daemitus/FauxHollowsSolver/master/res/image1.png"
],
"IconUrl": "https://raw.githubusercontent.com/daemitus/FauxHollowsSolver/master/res/icon.png",
"Punchline": "Highlights recommended tiles in Faux Hollows for your next move.",
"IsHide": "False",
"IsTestingExclusive": "False",
"DownloadCount": 8199,
"LastUpdate": "1629832687",
"DownloadLinkInstall": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=FauxHollowsSolver&isUpdate=False&isTesting=False&branch=api4",
"DownloadLinkTesting": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=FauxHollowsSolver&isUpdate=False&isTesting=True&branch=api4",
"DownloadLinkUpdate": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=FauxHollowsSolver&isUpdate=True&isTesting=False&branch=api4"
},
{
"Author": "CFG",
"Name": "FC Name Color",
"InternalName": "FCNameColor",
"AssemblyVersion": "1.0.2.3",
"Description": "Color your FC's tag or the entire nameplate if they are in your FC. Use /fcnc to open up the config.",
"ApplicableVersion": "any",
"RepoUrl": "https://github.com/WesselKuipers/FCNameColor",
"Tags": [
"nameplate",
"FC",
"name",
"colors"
],
"DalamudApiLevel": 3,
"LoadPriority": 0,
"IsHide": "False",
"IsTestingExclusive": "False",
"DownloadCount": 0,
"LastUpdate": "1625227359",
"DownloadLinkInstall": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=FCNameColor&isUpdate=False&isTesting=False&branch=api4",
"DownloadLinkTesting": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=FCNameColor&isUpdate=False&isTesting=True&branch=api4",
"DownloadLinkUpdate": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=FCNameColor&isUpdate=True&isTesting=False&branch=api4"
},
{
"Author": "Caraxi",
"Name": "FPS Plugin",
"Description": "Display game FPS.",
"InternalName": "FPSPlugin",
"AssemblyVersion": "1.4.2.2",
"RepoUrl": "https://github.com/Caraxi/FPSPlugin",
"ApplicableVersion": "any",
"DalamudApiLevel": 3,
"IsHide": "False",
"IsTestingExclusive": "False",
"DownloadCount": 26874,
"LastUpdate": "1617704206",
"DownloadLinkInstall": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=FPSPlugin&isUpdate=False&isTesting=False&branch=api4",
"DownloadLinkTesting": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=FPSPlugin&isUpdate=False&isTesting=True&branch=api4",
"DownloadLinkUpdate": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=FPSPlugin&isUpdate=True&isTesting=False&branch=api4"
},
{
"Author": "Ottermandias",
"Name": "GatherBuddy",
"Punchline": "Simplify Gathering and Fishing.",
"Description": "Adds commands to simplify gathering by finding nodes and fish and their locations via item name and a UI to keep track of special uptime and weather conditions.",
"Tags": [
"Gathering",
"Fishing",
"Miner",
"Botanist",
"Weather",
"Alarms",
"Timer"
],
"InternalName": "GatherBuddy",
"AssemblyVersion": "2.1.0.2",
"RepoUrl": "https://github.com/Ottermandias/GatherBuddy",
"ApplicableVersion": "any",
"DalamudApiLevel": 4,
"LoadPriority": 0,
"ImageUrls": null,
"IconUrl": "https://raw.githubusercontent.com/Ottermandias/GatherBuddy/main/images/icon.png",
"IsHide": "False",
"IsTestingExclusive": "False",
"DownloadCount": 13281,
"LastUpdate": "1631180181",
"DownloadLinkInstall": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=GatherBuddy&isUpdate=False&isTesting=False&branch=api4",
"DownloadLinkTesting": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=GatherBuddy&isUpdate=False&isTesting=True&branch=api4",
"DownloadLinkUpdate": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=GatherBuddy&isUpdate=True&isTesting=False&branch=api4"
},
{
"Author": "Chivalrik",
"Name": "GentleTouch",
"InternalName": "GentleTouch",
"AssemblyVersion": "1.0.0",
"Description": "Allows one to create vibration patterns for the controller and specify triggers for them.\n\nYou need to configure patterns and triggers before it will work.\nCurrently supported triggers are:\n- Cooldowns\n- Near Aether Current",
"ApplicableVersion": "any",
"RepoUrl": "https://github.com/fitzchivalrik/gentletouch",
"DalamudApiLevel": 3,
"LoadPriority": 0,
"IsHide": "False",
"IsTestingExclusive": "False",
"DownloadCount": 0,
"LastUpdate": "1622116827",
"DownloadLinkInstall": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=GentleTouch&isUpdate=False&isTesting=False&branch=api4",
"DownloadLinkTesting": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=GentleTouch&isUpdate=False&isTesting=True&branch=api4",
"DownloadLinkUpdate": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=GentleTouch&isUpdate=True&isTesting=False&branch=api4"
},
{
"Author": "ascclemens",
"Name": "Globetrotter",
"InternalName": "Globetrotter",
"AssemblyVersion": "1.2.1",
"Description": "Automatically shows where treasure maps are located.\n\nIcon: Map by Adrien Coquet from the Noun Project",
"ApplicableVersion": "any",
"RepoUrl": "https://git.sr.ht/~jkcclemens/Globetrotter",
"DalamudApiLevel": 4,
"LoadPriority": 0,
"Punchline": "Automatically shows where treasure maps are located.",
"IsHide": "False",
"IsTestingExclusive": "False",
"DownloadCount": 30470,
"LastUpdate": "1630261152",
"DownloadLinkInstall": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=Globetrotter&isUpdate=False&isTesting=False&branch=api4",
"DownloadLinkTesting": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=Globetrotter&isUpdate=False&isTesting=True&branch=api4",
"DownloadLinkUpdate": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=Globetrotter&isUpdate=True&isTesting=False&branch=api4"
},
{
"Author": "ascclemens",
"Name": "Good Memory",
"InternalName": "GoodMemory",
"AssemblyVersion": "1.0.9",
"Description": "Adds an indicator in item tooltips to show whether you have acquired that item.\n\nThis indicator is in the item's description near the bottom and only appears for\nitems that are unlockable, such as orchestrion rolls, minions, etc.\n\nSquare Enix say this plugin is impossible!\n\nIcon: Server by Vectorstall from the Noun Project",
"ApplicableVersion": "any",
"RepoUrl": "https://git.sr.ht/~jkcclemens/GoodMemory",
"DalamudApiLevel": 4,
"LoadPriority": 0,
"Punchline": "Adds an indicator in item tooltips to show whether you have acquired that item.",
"IsHide": "False",
"IsTestingExclusive": "False",
"DownloadCount": 28740,
"LastUpdate": "1630261152",
"DownloadLinkInstall": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=GoodMemory&isUpdate=False&isTesting=False&branch=api4",
"DownloadLinkTesting": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=GoodMemory&isUpdate=False&isTesting=True&branch=api4",
"DownloadLinkUpdate": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=GoodMemory&isUpdate=True&isTesting=False&branch=api4"
},
{
"Author": "perchbird",
"Name": "Housemate",
"InternalName": "Housemate",
"AssemblyVersion": "1.0.2.1",
"Description": "Housemate offers multiple features that help you gain inspiration from other homes in XIV.\nIf you're looking for a specific home or outdoor item, you can check the exterior list\nwhen running around a ward. If you're interested in seeing what items make up a\nstructure in a home - turn on the item overlay to see what they are!\n\nNote: This plugin is purely informational, and does not assist you in placing\nor \"glitching\" housing items.",
"ApplicableVersion": "any",
"RepoUrl": "https://github.com/lmcintyre/Housemate",
"DalamudApiLevel": 4,
"LoadPriority": 0,
"Punchline": "Displays information about housing fixtures and objects.",
"IsHide": "False",
"IsTestingExclusive": "False",
"DownloadCount": 6167,
"LastUpdate": "1630723196",
"DownloadLinkInstall": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=Housemate&isUpdate=False&isTesting=False&branch=api4",
"DownloadLinkTesting": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=Housemate&isUpdate=False&isTesting=True&branch=api4",
"DownloadLinkUpdate": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=Housemate&isUpdate=True&isTesting=False&branch=api4"
},
{
"Author": "Caraxi",
"Name": "Item Search",
"InternalName": "ItemSearchPlugin",
"AssemblyVersion": "1.8.0.0",
"Description": "Filterable search for Items and Key Items.\nTry on any item without having to find someone to link it.",
"ApplicableVersion": "any",
"RepoUrl": "https://github.com/Caraxi/ItemSearchPlugin",
"DalamudApiLevel": 4,
"LoadPriority": 0,
"Punchline": "Search and link items, even if you don't have them.",
"IsHide": "False",
"IsTestingExclusive": "False",
"DownloadCount": 23190,
"LastUpdate": "1629961534",
"DownloadLinkInstall": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=ItemSearchPlugin&isUpdate=False&isTesting=False&branch=api4",
"DownloadLinkTesting": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=ItemSearchPlugin&isUpdate=False&isTesting=True&branch=api4",
"DownloadLinkUpdate": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=ItemSearchPlugin&isUpdate=True&isTesting=False&branch=api4"
},
{
"Author": "ocealot",
"Name": "JobBars",
"Punchline": "Extra job gauges",
"Description": "Additional job gauges, party buff timers, mitigation trackers, and more. Icon by PAPACHIN",
"InternalName": "JobBars",
"AssemblyVersion": "1.1.0.4",
"Tags": [
"UI",
"Bars"
],
"RepoUrl": "https://github.com/0ceal0t/JobBars",
"ApplicableVersion": "any",
"DalamudApiLevel": 4,
"IsHide": "False",
"IsTestingExclusive": "False",
"DownloadCount": 0,
"LastUpdate": "1631143614",
"DownloadLinkInstall": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=JobBars&isUpdate=False&isTesting=False&branch=api4",
"DownloadLinkTesting": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=JobBars&isUpdate=False&isTesting=True&branch=api4",
"DownloadLinkUpdate": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=JobBars&isUpdate=True&isTesting=False&branch=api4"
},
{
"Author": "haplo, daemitus",
"Name": "JobIcons",
"InternalName": "JobIcons",
"AssemblyVersion": "3.2.0.0",
"Description": "Names are dumb, use icons instead.",
"ApplicableVersion": "any",
"RepoUrl": "https://github.com/haplo064/JobIcons",
"DalamudApiLevel": 3,
"LoadPriority": 0,
"IsHide": "False",
"IsTestingExclusive": "False",
"DownloadCount": 20536,
"LastUpdate": "1618736205",
"DownloadLinkInstall": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=JobIcons&isUpdate=False&isTesting=False&branch=api4",
"DownloadLinkTesting": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=JobIcons&isUpdate=False&isTesting=True&branch=api4",
"DownloadLinkUpdate": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=JobIcons&isUpdate=True&isTesting=False&branch=api4"
},
{
"Author": "kalilistic",
"Name": "Kapture",
"InternalName": "Kapture",
"AssemblyVersion": "1.1.0.0",
"Description": "Kapture is a loot tracker to capture drops, obtained items, rolls, and more.\nUse the roll monitor to see who you are waiting on to roll.",
"ApplicableVersion": "any",
"RepoUrl": "https://github.com/kalilistic/Dalamud.Kapture",
"Tags": [
"loot",
"track",
"roll"
],
"DalamudApiLevel": 4,
"LoadPriority": 0,
"IconUrl": "https://github.com/goatcorp/DalamudPlugins/blob/api4/plugins/Kapture/images/icon.png",
"Punchline": "Track your loot.",
"IsHide": "False",
"IsTestingExclusive": "False",
"DownloadCount": 8555,
"LastUpdate": "1630857935",
"DownloadLinkInstall": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=Kapture&isUpdate=False&isTesting=False&branch=api4",
"DownloadLinkTesting": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=Kapture&isUpdate=False&isTesting=True&branch=api4",
"DownloadLinkUpdate": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=Kapture&isUpdate=True&isTesting=False&branch=api4"
},
{
"Author": "Caraxi",
"Name": "Macro Chain",
"InternalName": "MacroChain",
"AssemblyVersion": "2.1.0.0",
"Description": "Allows for a macro to continue onto the next macro by using '/nextmacro' on the last line of a macro.\nAdding '/nextmacro' on the last line of Macro #01 will automatically execute Macro #02\nAdding '/nextmacro down' on the last line of Macro #01 will automatically execute Macro #11\nAlso allows executing any macro from chat using '/runmacro' but this command cannot be used while macros are running.",
"ApplicableVersion": "any",
"RepoUrl": "https://github.com/Caraxi/MacroChain",
"DalamudApiLevel": 4,
"LoadPriority": 0,
"Punchline": "Run multiple macros one after the other.",
"IsHide": "False",
"IsTestingExclusive": "False",
"DownloadCount": 0,
"LastUpdate": "1630889102",
"DownloadLinkInstall": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=MacroChain&isUpdate=False&isTesting=False&branch=api4",
"DownloadLinkTesting": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=MacroChain&isUpdate=False&isTesting=True&branch=api4",
"DownloadLinkUpdate": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=MacroChain&isUpdate=True&isTesting=False&branch=api4"
},
{
"Disabled": true,
"Testing": false,
"InstalledFromUrl": null,
"Author": "Bluefissure",
"Name": "MapLinker",
"Punchline": "Record the maplinks in chat",
"Description": "Automatically record the maplinks in chat and retrieval later.",
"Tags": null,
"IsHide": false,
"InternalName": "MapLinker",
"AssemblyVersion": "1.1.0.0",
"TestingAssemblyVersion": null,
"IsTestingExclusive": false,
"RepoUrl": "https://github.com/Bluefissure/MapLinker",
"ApplicableVersion": "any",
"DalamudApiLevel": 4,
"DownloadCount": 0,
"LastUpdate": 0,
"DownloadLinkInstall": null,
"DownloadLinkUpdate": null,
"DownloadLinkTesting": null,
"LoadPriority": 0,
"ImageUrls": null,
"IconUrl": "https://raw.githubusercontent.com/Bluefissure/MapLinker/master/images/icon.png"
},
{
"Author": "fmauNeko",
"Name": "Market board",
"Punchline": "Browse the market board from anywhere.",
"Description": "Browse the market board. /pmb to open.",
"InternalName": "MarketBoardPlugin",
"AssemblyVersion": "0.4.0.11",
"RepoUrl": "https://github.com/fmauNeko/MarketBoardPlugin",
"ApplicableVersion": "any",
"DalamudApiLevel": 4,
"IsHide": "False",
"IsTestingExclusive": "False",
"DownloadCount": 37786,
"LastUpdate": "1630667044",
"DownloadLinkInstall": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=MarketBoardPlugin&isUpdate=False&isTesting=False&branch=api4",
"DownloadLinkTesting": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=MarketBoardPlugin&isUpdate=False&isTesting=True&branch=api4",
"DownloadLinkUpdate": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=MarketBoardPlugin&isUpdate=True&isTesting=False&branch=api4"
},
{
"Author": "daemitus",
"Name": "ezMiniCactpot",
"InternalName": "MiniCactpotSolver",
"AssemblyVersion": "1.1.0.0",
"Description": "This plugin highlights tiles and lines in MiniCactpot that represent the best potential action you can take.",
"ApplicableVersion": "any",
"RepoUrl": "https://github.com/daemitus/MiniCactpotSolver",
"DalamudApiLevel": 4,
"LoadPriority": 0,
"ImageUrls": [
"https://raw.githubusercontent.com/daemitus/MiniCactpotSolver/master/res/image1.png",
"https://raw.githubusercontent.com/daemitus/MiniCactpotSolver/master/res/image2.png"
],
"IconUrl": "https://raw.githubusercontent.com/daemitus/MiniCactpotSolver/master/res/icon.png",
"Punchline": "Shows the next best move in Mini Cactpot.",
"IsHide": "False",
"IsTestingExclusive": "False",
"DownloadCount": 23449,
"LastUpdate": "1629832651",
"DownloadLinkInstall": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=MiniCactpotSolver&isUpdate=False&isTesting=False&branch=api4",
"DownloadLinkTesting": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=MiniCactpotSolver&isUpdate=False&isTesting=True&branch=api4",
"DownloadLinkUpdate": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=MiniCactpotSolver&isUpdate=True&isTesting=False&branch=api4"
},
{
"Author": "attick",
"Name": "Mouseover Action",
"Description": "This plugin allows for macro-like use of actions without any macro delay. /pmoaction to open UI",
"InternalName": "MOAction",
"AssemblyVersion": "2.2.1.22",
"ApplicableVersion": "any",
"RepoUrl": "https://github.com/attickdoor/MOActionPlugin",
"Tags": [
"Mouseover",
"Macro"
],
"DalamudApiLevel": 3,
"IsHide": "False",
"IsTestingExclusive": "False",
"DownloadCount": 19667,
"LastUpdate": "1618424485",
"DownloadLinkInstall": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=MOAction&isUpdate=False&isTesting=False&branch=api4",
"DownloadLinkTesting": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=MOAction&isUpdate=False&isTesting=True&branch=api4",
"DownloadLinkUpdate": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=MOAction&isUpdate=True&isTesting=False&branch=api4"
},
{
"Author": "ascclemens",
"Name": "Namingway",
"InternalName": "Namingway",
"AssemblyVersion": "1.1.2.0",
"Description": "Rename abilities and status effects.",
"ApplicableVersion": "any",
"RepoUrl": "https://git.sr.ht/~jkcclemens/Namingway",
"DalamudApiLevel": 4,
"LoadPriority": 0,
"Punchline": "Rename abilities and status effects.",
"IsHide": "False",
"IsTestingExclusive": "False",
"DownloadCount": 0,
"LastUpdate": "1630261152",
"DownloadLinkInstall": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=Namingway&isUpdate=False&isTesting=False&branch=api4",
"DownloadLinkTesting": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=Namingway&isUpdate=False&isTesting=True&branch=api4",
"DownloadLinkUpdate": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=Namingway&isUpdate=True&isTesting=False&branch=api4"
},
{
"Author": "kalilistic, karashiiro",
"Name": "NeatNoter",
"InternalName": "NeatNoter",
"AssemblyVersion": "1.4.6.1",
"Description": "NeatNoter allows you to take notes without switching windows or any of that.",
"ApplicableVersion": "any",
"RepoUrl": "https://github.com/kalilistic/NeatNoter",
"Tags": [
"note",
"utility",
"tool",
"overlay"
],
"DalamudApiLevel": 4,
"LoadPriority": 0,
"IconUrl": "https://github.com/goatcorp/DalamudPlugins/blob/api4/plugins/NeatNoter/images/icon.png",
"Punchline": "A note-taking plugin.",
"IsHide": "False",
"IsTestingExclusive": "False",
"DownloadCount": 8653,
"LastUpdate": "1630797421",
"DownloadLinkInstall": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=NeatNoter&isUpdate=False&isTesting=False&branch=api4",
"DownloadLinkTesting": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=NeatNoter&isUpdate=False&isTesting=True&branch=api4",
"DownloadLinkUpdate": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=NeatNoter&isUpdate=True&isTesting=False&branch=api4"
},
{
"Author": "ascclemens",
"Name": "NoSoliciting",
"InternalName": "NoSoliciting",
"AssemblyVersion": "2.1.3",
"Description": "Customisable chat and Party Finder filtering. In addition to letting\nyou filter anything from chat and PF, it comes with built-in filters\nfor the following:\n\n- RMT (both gil and content)\n- FC ads\n- RP ads\n- Phishing messages\n- Static recruitment\n- Trade ads\n- Community ads\n- Any PF with an item level over the max",
"ApplicableVersion": "any",
"RepoUrl": "https://git.sr.ht/~jkcclemens/NoSoliciting",
"DalamudApiLevel": 3,
"LoadPriority": 100,
"IsHide": "False",
"IsTestingExclusive": "False",
"DownloadCount": 24584,
"LastUpdate": "1622920931",
"DownloadLinkInstall": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=NoSoliciting&isUpdate=False&isTesting=False&branch=api4",
"DownloadLinkTesting": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=NoSoliciting&isUpdate=False&isTesting=True&branch=api4",
"DownloadLinkUpdate": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=NoSoliciting&isUpdate=True&isTesting=False&branch=api4"
},
{
"Author": "Avaflow",
"Name": "Oops, All Lalafells!",
"Description": "Turn everyone around you into Lalafells (or other races)!\n\nUse /poal to open settings.",
"InternalName": "OopsAllLalafells",
"AssemblyVersion": "1.1.0.0",
"RepoUrl": "https://github.com/avafloww/OopsAllLalafells",
"ApplicableVersion": "any",
"DalamudApplicableVersion": "any",
"DalamudApiLevel": "3",
"Tags": [
"lalafell",
"lala",
"lalafells",
"oops"
],
"IsHide": "False",
"IsTestingExclusive": "False",
"DownloadCount": 15653,
"LastUpdate": "1618382731",
"DownloadLinkInstall": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=OopsAllLalafells&isUpdate=False&isTesting=False&branch=api4",
"DownloadLinkTesting": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=OopsAllLalafells&isUpdate=False&isTesting=True&branch=api4",
"DownloadLinkUpdate": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=OopsAllLalafells&isUpdate=True&isTesting=False&branch=api4"
},
{
"Author": "Meli & perchbird",
"Name": "Orchestrion Plugin",
"InternalName": "orchestrion",
"AssemblyVersion": "1.6.0.1",
"Description": "Orchestrion Plugin allows you to change the currently playing in-game BGM. It includes\na curated list of the most accurate in-game song titles, so you know exactly what's playing,\nif you want to know later! Add favorite songs to separate them from the rest.\nNote: This plugin does not currently allow you to play actual orchestrion songs.",
"ApplicableVersion": "any",
"RepoUrl": "https://github.com/lmcintyre/OrchestrionPlugin",
"Tags": [
"bgm",
"music"
],
"DalamudApiLevel": 4,
"LoadPriority": 0,
"Punchline": "Adds a simple front-end for browsing and changing the in-game BGM.",
"IsHide": "False",
"IsTestingExclusive": "False",
"DownloadCount": 15622,
"LastUpdate": "1630723322",
"DownloadLinkInstall": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=orchestrion&isUpdate=False&isTesting=False&branch=api4",
"DownloadLinkTesting": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=orchestrion&isUpdate=False&isTesting=True&branch=api4",
"DownloadLinkUpdate": "https://us-central1-xl-functions.cloudfunctions.net/download-plugin/?plugin=orchestrion&isUpdate=True&isTesting=False&branch=api4"
},
{
"Disabled": true,
"Testing": false,
"InstalledFromUrl": null,
"Author": "goat, modded by Franz",
"Name": "owo plugin",
"Punchline": "owo for your chat",
"Description": "This plugin uwu's your chat.",
"Tags": null,
"IsHide": false,
"InternalName": "owofy",
"AssemblyVersion": "1.4.0.0",
"TestingAssemblyVersion": null,
"IsTestingExclusive": false,
"RepoUrl": null,
"ApplicableVersion": "any",
"DalamudApiLevel": 4,
"DownloadCount": 0,
"LastUpdate": 0,
"DownloadLinkInstall": null,
"DownloadLinkUpdate": null,
"DownloadLinkTesting": null,
"LoadPriority": 0,
"ImageUrls": [
"https://github.com/goaaats/dalamud-owo/raw/master/images/promo1.png",
"https://github.com/goaaats/dalamud-owo/raw/master/images/promo2.png",
"https://github.com/goaaats/dalamud-owo/raw/master/images/promo2.png",
"https://github.com/goaaats/dalamud-owo/raw/master/images/promo2.png",
"https://github.com/goaaats/dalamud-owo/raw/master/images/promo2.png"
],
"IconUrl": "https://github.com/goaaats/dalamud-owo/raw/master/images/icon.png"
},
{
"Author": "ascclemens",
"Name": "Peeping Tom",
"InternalName": "PeepingTom",