-
Notifications
You must be signed in to change notification settings - Fork 268
/
index.json
3429 lines (3429 loc) · 136 KB
/
index.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
{
"tags": {
"script": "a general extension that adds functionality",
"localization": "a localization extension that translates web ui into another language",
"tab": "adds a tab",
"dropdown": "adds a dropdown in the ui",
"ads": "contains ads",
"installed": "an extension that is already installed",
"training": "new type of training / assists with training.",
"models": "conversion and merging related.",
"UI related": "enhances the display or user interface experience.",
"prompting": "assists with writing words, for prompts.",
"editing": "an extension that changes images, not using stable diffusion.",
"manipulations": "an extension that changes images with stable diffusion.",
"online": "an extension which requires wifi to use, often API related.",
"animation": "an extension related to creating videos with stable diffusion.",
"query": "extracting info from images.",
"science": "experimentation with stable diffusion.",
"extras": "adds new functionality to the extras tab."
},
"extensions": [
{
"name": "Agent Scheduler",
"url": "https://github.com/ArtVentureX/sd-webui-agent-scheduler.git",
"description": "Queue task and task history",
"added": "2023-06-23",
"tags": [
"tab"
]
},
{
"name": "TemporalKit",
"url": "https://github.com/CiaraStrawberry/TemporalKit",
"description": "An all in one solution for adding Temporal Stability to a Stable Diffusion Render via an automatic1111 extension",
"added": "2023-06-22",
"tags": [
"extras",
"animation"
]
},
{
"name": "ua_UA Localization",
"url": "https://github.com/razorback456/webui-localization-ua_UA",
"description": "Ukrainian localization",
"added": "2023-06-18",
"tags": [
"localization"
]
},
{
"name": "Batch Checkpoints and Prompts",
"url": "https://github.com/h43lb1t0/SD-WebUI-BatchCheckpointPrompt",
"description": "Test a base prompt with different checkpoints and for the checkpoints specific prompt templates ",
"added": "2023-06-16",
"tags": [
"script"
]
},
{
"name": "Kandinsky",
"url": "https://github.com/MMqd/kandinsky-for-automatic1111",
"description": "Adds a script to run Kandinsky 2.X",
"added": "2023-06-11",
"tags": [
"script",
"editing"
]
},
{
"name": "Txt/Img to 3D Model",
"url": "https://github.com/jtydhr88/sd-webui-txt-img-to-3d-model.git",
"description": "An extension integrated OpenAI Shap-E that allow you to generate 3D model from prompt or image",
"added": "2023-06-09",
"tags": [
"tab"
]
},
{
"name": "sd-webui-openpose-editor",
"url": "https://github.com/huchenlei/sd-webui-openpose-editor.git",
"description": "Integrated openpose editor for ControlNet. Full hand/face support.",
"added": "2023-06-07",
"tags": [
"editing"
]
},
{
"name": "sd-webui-segment-anything",
"url": "https://github.com/continue-revolution/sd-webui-segment-anything.git",
"description": "Segment Anything for Stable Diffusion WebUI. Automatically generate high-quality segmentations/masks for images by clicking or text prompting. Aim for connecting WebUI and ControlNet with Segment Anything and GroundingDINO to enhance Stable Diffusion/ControlNet inpainting (both single image and batch process), enhance ControlNet semantic segmentation, automate image matting and create LoRA/LyCORIS training set.",
"added": "2023-06-07",
"tags": [
"script",
"dropdown"
]
},
{
"name": "Stable Diffusion AWS Extension",
"url": "https://github.com/awslabs/stable-diffusion-aws-extension.git",
"description": "Allow user to migrate existing workloads including ckpt merge, model training, model inferencing onto AWS",
"added": "2023-06-01",
"tags": [
"tab",
"training",
"online"
]
},
{
"name": "Aesthetic Gradients",
"url": "https://github.com/AUTOMATIC1111/stable-diffusion-webui-aesthetic-gradients.git",
"description": "Allows training an embedding from one or few pictures, specifically meant for applying styles. Also, allows use of these specific embeddings to generated images.",
"added": "2022-11-01",
"tags": [
"tab",
"dropdown",
"training"
]
},
{
"name": "Dreambooth",
"url": "https://github.com/d8ahazard/sd_dreambooth_extension.git",
"description": "Dreambooth training based on Shivam Shiaro's repo, optimized for lower-VRAM GPUs.",
"added": "2022-11-07",
"tags": [
"tab",
"training"
]
},
{
"name": "training-picker",
"url": "https://github.com/Maurdekye/training-picker.git",
"description": "Adds a tab to the webui that allows the user to automatically extract keyframes from video, and manually extract 512x512 crops of those frames for use in model training.",
"added": "2022-11-06",
"tags": [
"tab",
"training"
]
},
{
"name": "Dataset Tag Editor",
"url": "https://github.com/toshiaki1729/stable-diffusion-webui-dataset-tag-editor.git",
"description": "Feature-rich UI tab that allows image viewing, search-filtering and editing.",
"added": "2022-11-01",
"tags": [
"tab",
"training"
]
},
{
"name": "DreamArtist",
"url": "https://github.com/7eu7d7/DreamArtist-sd-webui-extension.git",
"description": "Towards Controllable One-Shot Text-to-Image Generation via Contrastive Prompt-Tuning.",
"added": "2022-11-15",
"tags": [
"training"
]
},
{
"name": "Hypernetwork-Monkeypatch-Extension",
"url": "https://github.com/aria1th/Hypernetwork-MonkeyPatch-Extension.git",
"description": "Extension that provides additional training features for hypernetwork training. Also supports using multiple hypernetworks for inference.",
"added": "2023-01-12",
"tags": [
"tab",
"training"
]
},
{
"name": "Custom Diffusion",
"url": "https://github.com/guaneec/custom-diffusion-webui.git",
"description": "Custom Diffusion is, in short, finetuning-lite with TI, instead of tuning the whole model. Similar speed and memory requirements to TI and supposedly gives better results in less steps.",
"added": "2023-01-28",
"tags": [
"tab",
"training"
]
},
{
"name": "Smart Process",
"url": "https://github.com/d8ahazard/sd_smartprocess.git",
"description": "Smart pre-process including auto subject identification, caption subject swapping, and upscaling/facial restoration.",
"added": "2022-11-12",
"tags": [
"tab",
"editing",
"training"
]
},
{
"name": "Embeddings editor",
"url": "https://github.com/CodeExplode/stable-diffusion-webui-embedding-editor.git",
"description": "Allows you to manually edit textual inversion embeddings using sliders.",
"added": "2022-11-06",
"tags": [
"tab",
"models"
]
},
{
"name": "Merge Board",
"url": "https://github.com/bbc-mc/sdweb-merge-board.git",
"description": "Multiple lane merge support(up to 10). Save and Load your merging combination as Recipes, which is simple text.",
"added": "2022-11-21",
"tags": [
"tab",
"models"
]
},
{
"name": "Model Converter",
"url": "https://github.com/Akegarasu/sd-webui-model-converter.git",
"description": "Convert models to fp16/bf16 no-ema/ema-only safetensors. Convert/copy/delete any parts of model: unet, text encoder(clip), vae.",
"added": "2023-01-05",
"tags": [
"tab",
"models"
]
},
{
"name": "Kohya-ss Additional Networks",
"url": "https://github.com/kohya-ss/sd-webui-additional-networks.git",
"description": "Allows the Web UI to use LoRAs (1.X and 2.X) to generate images. Also allows editing .safetensors networks prompt metadata.",
"added": "2023-01-06",
"tags": [
"models"
]
},
{
"name": "Merge Block Weighted",
"url": "https://github.com/bbc-mc/sdweb-merge-block-weighted-gui.git",
"description": "Merge models with separate rate for each 25 U-Net block (input, middle, output).",
"added": "2023-01-13",
"tags": [
"tab",
"models"
]
},
{
"name": "Embedding Merge",
"url": "https://github.com/klimaleksus/stable-diffusion-webui-embedding-merge.git",
"description": "Merging Textual Inversion embeddings at runtime from string literals. Phrases and weight values also supported.",
"added": "2023-02-09",
"tags": [
"tab",
"models",
"manipulations"
]
},
{
"name": "SuperMerger",
"url": "https://github.com/hako-mikan/sd-webui-supermerger.git",
"description": "Merge and run without saving to drive. Sequential XY merge generations; extract and merge loras, bind loras to ckpt, merge block weights, and more.",
"added": "2023-02-18",
"tags": [
"tab",
"models"
]
},
{
"name": "LoRA Block Weight",
"url": "https://github.com/hako-mikan/sd-webui-lora-block-weight.git",
"description": "Applies LoRA strength; block by block on the fly. Includes presets, weight analysis, randomization, XY plot.",
"added": "2023-02-28",
"tags": [
"models"
]
},
{
"name": "Image browser",
"url": "https://github.com/AlUlkesh/stable-diffusion-webui-images-browser.git",
"description": "Provides an interface to browse created images in the web browser.",
"added": "2022-11-01",
"tags": [
"tab",
"UI related"
]
},
{
"name": "Infinite image browsing",
"url": "https://github.com/zanllp/sd-webui-infinite-image-browsing.git",
"description": "A fast image browser that allows browsing all images without paging, and supports joint search using image parameters, with a layout similar to VS Code.",
"added": "2023-04-16",
"tags": [
"tab",
"UI related"
]
},
{
"name": "Inspiration",
"url": "https://github.com/yfszzx/stable-diffusion-webui-inspiration.git",
"description": "Randomly display the pictures of the artist's or artistic genres typical style, more pictures of this artist or genre is displayed after selecting. So you don't have to worry about how hard it is to choose the right style of art when you create.",
"added": "2022-11-01",
"tags": [
"tab",
"UI related"
]
},
{
"name": "Artists to study",
"url": "https://github.com/camenduru/stable-diffusion-webui-artists-to-study.git",
"description": "Shows a gallery of generated pictures by artists separated into categories.",
"added": "2022-11-01",
"tags": [
"tab",
"UI related"
]
},
{
"name": "Prompt Gallery",
"url": "https://github.com/dr413677671/PromptGallery-stable-diffusion-webui.git",
"description": "Build a yaml file filled with prompts of your character, hit generate, and quickly preview them by their word attributes and modifiers.",
"added": "2022-12-02",
"tags": [
"tab",
"UI related"
]
},
{
"name": "Infinity Grid Generator",
"url": "https://github.com/mcmonkeyprojects/sd-infinity-grid-generator-script.git",
"description": "Build a yaml file with your chosen parameters, and generate infinite-dimensional grids. Built-in ability to add description text to fields. See readme for usage details.",
"added": "2022-12-09",
"tags": [
"UI related"
]
},
{
"name": "Config-Presets",
"url": "https://github.com/Zyin055/Config-Presets.git",
"description": "Adds a configurable dropdown to allow you to change UI preset settings in the txt2img and img2img tabs.",
"added": "2022-12-13",
"tags": [
"UI related"
]
},
{
"name": "Preset Utilities",
"url": "https://github.com/Gerschel/sd_web_ui_preset_utils.git",
"description": "Preset utility tool for ui. Offers compatibility with custom scripts. (to a limit)",
"added": "2022-12-19",
"tags": [
"UI related"
]
},
{
"name": "openOutpaint extension",
"url": "https://github.com/zero01101/openOutpaint-webUI-extension.git",
"description": "A tab with the full openOutpaint UI. Run with the --api flag.",
"added": "2022-12-23",
"tags": [
"tab",
"UI related",
"editing"
]
},
{
"name": "quick-css",
"url": "https://github.com/Gerschel/sd-web-ui-quickcss.git",
"description": "Extension for quickly selecting and applying custom.css files, for customizing look and placement of elements in ui.",
"added": "2022-12-30",
"tags": [
"tab",
"UI related"
]
},
{
"name": "Aspect Ratio selector",
"url": "https://github.com/alemelis/sd-webui-ar.git",
"description": "Adds image aspect ratio selector buttons.",
"added": "2023-02-04",
"tags": [
"UI related"
]
},
{
"name": "Nevysha's Cozy Nest",
"url": "https://github.com/Nevysha/Cozy-Nest.git",
"description": "Extension for an improved UI/UX. Find your cozy spot on Auto1111's webui!.",
"added": "2023-05-02",
"tags": [
"UI related"
]
},
{
"name": "Catppuccin Theme",
"url": "https://github.com/catppuccin/stable-diffusion-webui.git",
"description": "Adds various custom themes",
"added": "2023-02-04",
"tags": [
"UI related"
]
},
{
"name": "Bilingual Localization",
"url": "https://github.com/journey-ad/sd-webui-bilingual-localization.git",
"description": "Bilingual translation, no need to worry about how to find the original button. Compatible with language pack extensions, no need to re-import.",
"added": "2023-02-28",
"tags": [
"UI related"
]
},
{
"name": "Dynamic Prompts",
"url": "https://github.com/adieyal/sd-dynamic-prompts.git",
"description": "Implements an expressive template language for random or combinatorial prompt generation along with features to support deep wildcard directory structures.",
"added": "2022-11-01",
"tags": [
"prompting",
"online"
]
},
{
"name": "Unprompted",
"url": "https://github.com/ThereforeGames/unprompted.git",
"description": "Allows you to include various shortcodes in your prompts. You can pull text from files, set up your own variables, process text through conditional functions, and so much more - it's like wildcards on steroids. It now includes integrations like hard-prompts made easy, ControlNet, txt2img2img and txt2mask.",
"added": "2022-11-04",
"tags": [
"prompting",
"ads"
]
},
{
"name": "StylePile",
"url": "https://github.com/some9000/StylePile.git",
"description": "An easy way to mix and match elements to prompts that affect the style of the result.",
"added": "2022-11-24",
"tags": [
"prompting"
]
},
{
"name": "Booru tag autocompletion",
"url": "https://github.com/DominikDoom/a1111-sd-webui-tagcomplete.git",
"description": "Displays autocompletion hints for tags from image booru boards such as Danbooru. Uses local tag CSV files and includes a config for customization.",
"added": "2022-11-04",
"tags": [
"prompting"
]
},
{
"name": "novelai-2-local-prompt",
"url": "https://github.com/animerl/novelai-2-local-prompt.git",
"description": "Add a button to convert the prompts used in NovelAI for use in the WebUI. In addition, add a button that allows you to recall a previously used prompt.",
"added": "2022-11-05",
"tags": [
"prompting"
]
},
{
"name": "tokenizer",
"url": "https://github.com/AUTOMATIC1111/stable-diffusion-webui-tokenizer.git",
"description": "Adds a tab that lets you preview how CLIP model would tokenize your text.",
"added": "2022-11-05",
"tags": [
"tab",
"prompting"
]
},
{
"name": "Randomize",
"url": "https://github.com/innightwolfsleep/stable-diffusion-webui-randomize.git",
"description": "Allows for random parameters during txt2img generation. This script will function with others as well. Original author: https://git.mmaker.moe/mmaker/stable-diffusion-webui-randomize",
"added": "2022-11-11",
"tags": [
"prompting"
]
},
{
"name": "conditioning-highres-fix",
"url": "https://github.com/klimaleksus/stable-diffusion-webui-conditioning-highres-fix.git",
"description": "This is Extension for rewriting Inpainting conditioning mask strength value relative to Denoising strength at runtime. This is useful for Inpainting models such as sd-v1-5-inpainting.ckpt",
"added": "2022-11-11",
"tags": [
"prompting"
]
},
{
"name": "model-keyword",
"url": "https://github.com/mix1009/model-keyword.git",
"description": "Inserts matching keyword(s) to the prompt automatically. Update this extension to get the latest model+keyword mappings.",
"added": "2022-12-28",
"tags": [
"prompting"
]
},
{
"name": "Prompt Generator",
"url": "https://github.com/imrayya/stable-diffusion-webui-Prompt_Generator.git",
"description": "generate a prompt from a small base prompt using distilgpt2. Adds a tab with additional control of the model.",
"added": "2022-12-30",
"tags": [
"tab",
"prompting"
]
},
{
"name": "Promptgen",
"url": "https://github.com/AUTOMATIC1111/stable-diffusion-webui-promptgen.git",
"description": "Use transformers models to generate prompts.",
"added": "2023-01-18",
"tags": [
"tab",
"prompting"
]
},
{
"name": "text2prompt",
"url": "https://github.com/toshiaki1729/stable-diffusion-webui-text2prompt.git",
"description": "Generates anime tags using databases and models for tokenizing.",
"added": "2023-02-11",
"tags": [
"tab",
"prompting"
]
},
{
"name": "Prompt Translator",
"url": "https://github.com/butaixianran/Stable-Diffusion-Webui-Prompt-Translator",
"description": "A integrated translator for translating prompts to English using Deepl or Baidu.",
"added": "2023-02-11",
"tags": [
"tab",
"prompting",
"online"
]
},
{
"name": "Deforum",
"url": "https://github.com/deforum-art/deforum-for-automatic1111-webui.git",
"description": "The official port of Deforum, an extensive script for 2D and 3D animations, supporting keyframable sequences, dynamic math parameters (even inside the prompts), dynamic masking, depth estimation and warping.",
"added": "2022-11-01",
"tags": [
"tab",
"animation"
]
},
{
"name": "gif2gif",
"url": "https://github.com/LonicaMewinsky/gif2gif.git",
"description": "A script for img2img that extract a gif frame by frame for img2img generation and recombine them back into an animated gif",
"added": "2023-02-09",
"tags": [
"animation"
]
},
{
"name": "Video Loopback",
"url": "https://github.com/fishslot/video_loopback_for_webui.git",
"description": "A video2video script that tries to improve on the temporal consistency and flexibility of normal vid2vid.",
"added": "2023-02-13",
"tags": [
"animation"
]
},
{
"name": "seed travel",
"url": "https://github.com/yownas/seed_travel.git",
"description": "Small script for AUTOMATIC1111/stable-diffusion-webui to create images that exists between seeds.",
"added": "2022-11-09",
"tags": [
"animation"
]
},
{
"name": "shift-attention",
"url": "https://github.com/yownas/shift-attention.git",
"description": "Generate a sequence of images shifting attention in the prompt. This script enables you to give a range to the weight of tokens in a prompt and then generate a sequence of images stepping from the first one to the second.",
"added": "2022-11-09",
"tags": [
"animation"
]
},
{
"name": "prompt travel",
"url": "https://github.com/Kahsolt/stable-diffusion-webui-prompt-travel.git",
"description": "Extension script for AUTOMATIC1111/stable-diffusion-webui to travel between prompts in latent space.",
"added": "2022-11-11",
"tags": [
"animation"
]
},
{
"name": "Steps Animation",
"url": "https://github.com/vladmandic/sd-extension-steps-animation.git",
"description": "Create animation sequence from denoised intermediate steps.",
"added": "2023-01-21",
"tags": [
"animation"
]
},
{
"name": "auto-sd-paint-ext",
"url": "https://github.com/Interpause/auto-sd-paint-ext.git",
"description": "Krita Plugin.",
"added": "2022-11-04",
"tags": [
"editing"
]
},
{
"name": "Batch Face Swap",
"url": "https://github.com/kex0/batch-face-swap.git",
"description": "Automatically detects faces and replaces them.",
"added": "2023-01-13",
"tags": [
"editing"
]
},
{
"name": "Depth Maps",
"url": "https://github.com/thygate/stable-diffusion-webui-depthmap-script.git",
"description": "Depth Maps, Stereo Image, 3D Mesh and Video generator extension.",
"added": "2022-11-30",
"tags": [
"editing"
]
},
{
"name": "multi-subject-render",
"url": "https://github.com/Extraltodeus/multi-subject-render.git",
"description": "It is a depth aware extension that can help to create multiple complex subjects on a single image. It generates a background, then multiple foreground subjects, cuts their backgrounds after a depth analysis, paste them onto the background and finally does an img2img for a clean finish.",
"added": "2022-11-24",
"tags": [
"editing",
"manipulations"
]
},
{
"name": "depthmap2mask",
"url": "https://github.com/Extraltodeus/depthmap2mask.git",
"description": "Create masks for img2img based on a depth estimation made by MiDaS.",
"added": "2022-11-26",
"tags": [
"editing",
"manipulations"
]
},
{
"name": "ABG_extension",
"url": "https://github.com/KutsuyaYuki/ABG_extension.git",
"description": "Automatically remove backgrounds. Uses an onnx model fine-tuned for anime images. Runs on GPU.",
"added": "2022-12-24",
"tags": [
"editing"
]
},
{
"name": "Pixel",
"url": "https://github.com/Leodotpy/sd-pixel.git",
"description": "Quickly and easily perform downscaling, color palette limiting, and other useful pixel art effects through the extras tab.",
"added": "2023-05-05",
"tags": [
"editing",
"extras"
]
},
{
"name": "Pixelization",
"url": "https://github.com/AUTOMATIC1111/stable-diffusion-webui-pixelization.git",
"description": "Using pre-trained models, produce pixel art out of images in the extras tab.",
"added": "2023-01-23",
"tags": [
"editing",
"extras"
]
},
{
"name": "haku-img",
"url": "https://github.com/KohakuBlueleaf/a1111-sd-webui-haku-img.git",
"description": "Image utils extension. Allows blending, layering, hue and color adjustments, blurring and sketch effects, and basic pixelization.",
"added": "2023-01-17",
"tags": [
"tab",
"editing"
]
},
{
"name": "Asymmetric Tiling",
"url": "https://github.com/tjm35/asymmetric-tiling-sd-webui.git",
"description": "An always visible script extension to configure seamless image tiling independently for the X and Y axes.",
"added": "2023-01-13",
"tags": [
"manipulations"
]
},
{
"name": "Latent Mirroring",
"url": "https://github.com/dfaker/SD-latent-mirroring.git",
"description": "Applies mirroring and flips to the latent images to produce anything from subtle balanced compositions to perfect reflections",
"added": "2022-11-06",
"tags": [
"manipulations"
]
},
{
"name": "Sonar",
"url": "https://github.com/Kahsolt/stable-diffusion-webui-sonar.git",
"description": "Improve the generated image quality, searches for similar (yet even better!) images in the neighborhood of some known image, focuses on single prompt optimization rather than traveling between multiple prompts.",
"added": "2023-01-12",
"tags": [
"manipulations"
]
},
{
"name": "Depth Image I/O",
"url": "https://github.com/AnonymousCervine/depth-image-io-for-SDWebui.git",
"description": "An extension to allow managing custom depth inputs to Stable Diffusion depth2img models.",
"added": "2023-01-17",
"tags": [
"manipulations"
]
},
{
"name": "Ultimate SD Upscale",
"url": "https://github.com/Coyote-A/ultimate-upscale-for-automatic1111.git",
"description": "More advanced options for SD Upscale, less artifacts than original using higher denoise ratio (0.3-0.5).",
"added": "2023-01-10",
"tags": [
"manipulations"
]
},
{
"name": "Prompt Fusion",
"url": "https://github.com/ljleb/prompt-fusion-extension.git",
"description": "Adds prompt-travel and shift-attention-like interpolations (see exts), but during/within the sampling steps. Always-on + works w/ existing prompt-editing syntax. Various interpolation modes. See their wiki for more info.",
"added": "2023-01-28",
"tags": [
"manipulations"
]
},
{
"name": "Neutral Prompt",
"url": "https://github.com/ljleb/sd-webui-neutral-prompt.git",
"description": "Adds new keywords for manipulating noise blending and prompt interactions. Allows for organizing prompts in a hierarchical manner instead of a flat list.",
"added": "2023-05-28",
"tags": [
"manipulations"
]
},
{
"name": "Dynamic Thresholding",
"url": "https://github.com/mcmonkeyprojects/sd-dynamic-thresholding.git",
"description": "Adds customizable dynamic thresholding to allow high CFG Scale values without the burning / 'pop art' effect.",
"added": "2023-02-01",
"tags": [
"manipulations"
]
},
{
"name": "anti-burn",
"url": "https://github.com/klimaleksus/stable-diffusion-webui-anti-burn.git",
"description": "Smoothing generated images by skipping a few very last steps and averaging together some images before them.",
"added": "2023-02-09",
"tags": [
"manipulations"
]
},
{
"name": "sd-webui-controlnet",
"url": "https://github.com/Mikubill/sd-webui-controlnet.git",
"description": "WebUI extension for ControlNet. Note: (WIP), so don't expect seed reproducibility - as updates may change things.",
"added": "2023-02-18",
"tags": [
"manipulations"
]
},
{
"name": "Latent Couple",
"url": "https://github.com/ashen-sensored/stable-diffusion-webui-two-shot.git",
"description": "An extension of the built-in Composable Diffusion, allows you to determine the region of the latent space that reflects your subprompts. Note: New maintainer, uninstall prev. ext if needed.",
"added": "2023-02-18",
"tags": [
"manipulations"
]
},
{
"name": "Composable LoRA",
"url": "https://github.com/a2569875/stable-diffusion-webui-composable-lora.git",
"description": "Enables using AND keyword(composable diffusion) to limit LoRAs to subprompts. Useful when paired with Latent Couple extension.",
"added": "2023-02-25",
"tags": [
"manipulations"
]
},
{
"name": "Auto TLS-HTTPS",
"url": "https://github.com/papuSpartan/stable-diffusion-webui-auto-tls-https.git",
"description": "Allows you to easily, or even completely automatically start using HTTPS.",
"added": "2022-11-14",
"tags": [
"script"
]
},
{
"name": "booru2prompt",
"url": "https://github.com/Malisius/booru2prompt.git",
"description": "This SD extension allows you to turn posts from various image boorus into stable diffusion prompts. It does so by pulling a list of tags down from their API. You can copy-paste in a link to the post you want yourself, or use the built-in search feature to do it all without leaving SD.",
"added": "2022-11-21",
"tags": [
"tab",
"online"
]
},
{
"name": "Gelbooru Prompt",
"url": "https://github.com/antis0007/sd-webui-gelbooru-prompt.git",
"description": "Extension that gets tags for saved gelbooru images in AUTOMATIC1111's Stable Diffusion webui",
"added": "2022-12-20",
"tags": [
"online"
]
},
{
"name": "e621 Prompt",
"url": "https://github.com/nochnoe/sd-webui-e621-prompt.git",
"description": "Request tags of an image from e621 and convert them into a prompt",
"added": "2023-06-15",
"tags": [
"online",
"prompting"
]
},
{
"name": "NSFW checker",
"url": "https://github.com/AUTOMATIC1111/stable-diffusion-webui-nsfw-censor.git",
"description": "Replaces NSFW images with black.",
"added": "2022-12-10",
"tags": [
"script"
]
},
{
"name": "Diffusion Defender",
"url": "https://github.com/WildBanjos/DiffusionDefender.git",
"description": "Prompt blacklist, find and replace, for semi-private and public instances.",
"added": "2022-12-20",
"tags": [
"script"
]
},
{
"name": "DH Patch",
"url": "https://github.com/d8ahazard/sd_auto_fix.git",
"description": "Random patches by D8ahazard. Auto-load config YAML files for v2, 2.1 models; patch latent-diffusion to fix attention on 2.1 models (black boxes without no-half), whatever else I come up with.",
"added": "2022-12-16",
"tags": [
"script"
]
},
{
"name": "Riffusion",
"url": "https://github.com/enlyth/sd-webui-riffusion.git",
"description": "Use Riffusion model to produce music in gradio. To replicate original interpolation technique, input the prompt travel extension output frames into the riffusion tab.",
"added": "2022-12-19",
"tags": [
"tab"
]
},
{
"name": "Save Intermediate Images",
"url": "https://github.com/AlUlkesh/sd_save_intermediate_images.git",
"description": "Save intermediate images during the sampling process. You can also make videos from the intermediate images.",
"added": "2022-12-22",
"tags": [
"script"
]
},
{
"name": "Add image number to grid",
"url": "https://github.com/AlUlkesh/sd_grid_add_image_number.git",
"description": "Add the image's number to its picture in the grid.",
"added": "2023-01-01",
"tags": [
"script"
]
},
{
"name": "Multiple Hypernetworks",
"url": "https://github.com/antis0007/sd-webui-multiple-hypernetworks.git",
"description": "Adds the ability to apply multiple hypernetworks at once. Apply multiple hypernetworks sequentially, with different weights.",
"added": "2023-01-13",
"tags": [
"script"
]
},
{
"name": "System Info",
"url": "https://github.com/vladmandic/sd-extension-system-info.git",
"description": "System Info tab for WebUI which shows realtime information of the server. Also supports sending crowdsourced inference data as an option.",
"added": "2023-01-21",
"tags": [
"script",
"tab"
]
},
{
"name": "OpenPose Editor",
"url": "https://github.com/fkunn1326/openpose-editor.git",
"description": "This can add multiple pose characters, detect pose from image, save to PNG, and send to controlnet extension.",
"added": "2023-02-18",
"tags": [
"tab"
]
},
{
"name": "Stable Horde Worker",
"url": "https://github.com/sdwebui-w-horde/sd-webui-stable-horde-worker.git",
"description": "Worker Client for Stable Horde. Generate pictures for other users with your PC. Please see readme for additional instructions.",
"added": "2023-01-10",
"tags": [
"tab",
"online"
]
},
{
"name": "Discord Rich Presence",
"url": "https://github.com/kabachuha/discord-rpc-for-automatic1111-webui.git",
"description": "Provides connection to Discord RPC, showing a fancy table in the user profile.",
"added": "2023-01-20",
"tags": [
"online"
]
},
{
"name": "mine-diffusion",
"url": "https://github.com/fropych/mine-diffusion.git",
"description": "This extension converts images into blocks and creates schematics for easy importing into Minecraft using the Litematica mod.",
"added": "2023-02-11",
"tags": [
"tab"
]
},
{
"name": "Aesthetic Image Scorer",
"url": "https://github.com/tsngo/stable-diffusion-webui-aesthetic-image-scorer.git",
"description": "Calculates aesthetic score for generated images using CLIP+MLP Aesthetic Score Predictor based on Chad Scorer",
"added": "2022-11-01",
"tags": [
"query"
]
},
{
"name": "Aesthetic Scorer",
"url": "https://github.com/vladmandic/sd-extension-aesthetic-scorer.git",
"description": "Uses existing CLiP model with an additional small pretrained model to calculate perceived aesthetic score of an image.",
"added": "2023-01-21",
"tags": [
"query"
]
},
{
"name": "cafe-aesthetic",
"url": "https://github.com/p1atdev/stable-diffusion-webui-cafe-aesthetic.git",
"description": "Pre-trained model, determines if aesthetic/non-aesthetic, does 5 different style recognition modes, and Waifu confirmation. Also has a tab with Batch processing.",
"added": "2023-01-28",
"tags": [
"tab",
"query"
]
},
{
"name": "Clip Interrogator",
"url": "https://github.com/pharmapsychotic/clip-interrogator-ext.git",
"description": "Clip Interrogator by pharmapsychotic ported to an extension. Features a variety of clip models and interrogate settings.",
"added": "2023-02-21",
"tags": [
"tab",
"query"
]
},
{
"name": "Visualize Cross-Attention",
"url": "https://github.com/benkyoujouzu/stable-diffusion-webui-visualize-cross-attention-extension.git",
"description": "Generates highlighted sectors of a submitted input image, based on input prompts. Use with tokenizer extension. See the readme for more info.",
"added": "2022-11-25",
"tags": [
"tab",
"science"
]
},
{
"name": "Dump U-Net",
"url": "https://github.com/hnmr293/stable-diffusion-webui-dumpunet.git",
"description": "View different layers, observe U-Net feature maps. Image generation by giving different prompts for each block of the unet: https://note.com/kohya_ss/n/n93b7c01b0547",
"added": "2023-03-04",
"tags": [
"science"
]
},
{
"name": "posex",
"url": "https://github.com/hnmr293/posex.git",
"description": "Estimated Image Generator for Pose2Image. This extension allows moving the openpose figure in 3d space.",
"added": "2023-03-04",
"tags": [
"script"
]
},
{
"name": "LLuL",