forked from sketchplugins/plugin-directory
-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugins.json
2362 lines (2362 loc) · 76.3 KB
/
plugins.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
[
{
"description": "Set automatically a background of your selected textlayer.",
"name": "generate-text-background",
"title": "Generate text background Lines",
"author": "René Samsen",
"owner": "anagorn"
},
{
"description": "Generate lines originating from a certain coordinate of an artboard.",
"name": "radial-lines-sketch",
"title": "Radial Lines",
"author": "Herr Helms",
"owner": "herrhelms"
},
{
"description": "Add evenly distributed guides to artboards.",
"name": "even-guides-sketch",
"title": "Evenly Distributed Guides",
"author": "Herr Helms",
"owner": "herrhelms"
},
{
"description": "This is a Plugin for Sketch App that adds artboard presets for the most common image dimensions of different social media platforms.",
"name": "social-artboards-sketch",
"title": "Artboard presets for social media images",
"author": "Herr Helms",
"owner": "herrhelms"
},
{
"description": "Use Google Sheets to sync typography across your team.",
"name": "sync.sketchplugin",
"title": "Sync",
"author": "Stanford Rosenthal",
"owner": "nolastan"
},
{
"description": "Generates a preview (⌘ + ⇧ + .) of your current artboard and shows in your web browser.",
"name": "sketch-browser-preview",
"title": "Sketch Browser Preview",
"owner": "FreakLand"
},
{
"description": "Sync Sketch artboards to Prott like a boss.",
"name": "Prott-Sketch-Plugin",
"title": "Prott Sketch Plugin",
"author": "Goodpatch Inc.",
"owner": "goodpatch"
},
{
"description": "Save important stages of your artboards in the blink of an eye, and then, move fast and break things.",
"name": "Checkpoints-Plugin-for-Sketch",
"title": "Checkpoints Plugin for Sketch",
"author": "Emin İnanç Ünlü",
"owner": "einancunlu"
},
{
"description": "Flatten single or multiple layers instantly, create shared artboard styles, keep them all updated like a boss and boost your Sketch document performance.",
"name": "Flatten-Plugin-for-Sketch",
"title": "Flatten Plugin for Sketch",
"author": "Emin İnanç Ünlü",
"owner": "einancunlu"
},
{
"description": "Disconnect / unlink selection from symbols and shared styles.",
"name": "Disconnect-for-Sketch",
"title": "Disconnect for Sketch",
"author": "Emin İnanç Ünlü",
"owner": "einancunlu"
},
{
"description": "Define different states and switch between them like a boss.",
"name": "Sketch-State-Switch-Master",
"title": "Sketch State Switch Master",
"author": "Emin İnanç Ünlü",
"owner": "einancunlu"
},
{
"description": "Sketch plugin to generate charts and data for data tables.",
"name": "sketch-data-studio",
"title": "Sketch Data Studio",
"author": "thetylerwolf",
"owner": "thetylerwolf",
"homepage": "http://thetylerwolf.github.io/sketch-data-studio"
},
{
"description": "A Sketch plugin that calculates and applies the correct color for you to get actual design color after applying it to a translucent UIToolbar or UINavigationBar.",
"name": "Sketch-iOS-Bar-Color-Calculator",
"author": "Emin İnanç Ünlü",
"owner": "einancunlu"
},
{
"description": "Quickly select and share work in progress with your team via WorkingOn.",
"name": "SketchingOn",
"owner": "WorkingOn",
"homepage": "https://www.workingon.co"
},
{
"description": "A tool to save and switch states for quick demo purpose in sketch.",
"name": "sketch-states-switch",
"title": "Sketch States Switch",
"owner": "wentin",
"author": "Wenting Zhang"
},
{
"description": "This is a plugin for quickly creating Lorem Ipsum text in Sketch.",
"name": "Lorem-Ipsum-Plugin-for-Sketch",
"owner": "brandonbeecroft"
},
{
"description": "Resizes the selected layer to cover its containing artboard in Sketch.",
"name": "Cover-Artboard",
"title": "Cover Artboard",
"author": "Seb Jachec",
"owner": "sebj"
},
{
"description": "Invert a layer's background color in Sketch.",
"name": "Invert-Background-Color",
"title": "Invert Background Color",
"author": "Seb Jachec",
"owner": "sebj"
},
{
"description": "Remove a layer's fills and borders in Sketch.",
"name": "Remove-Fills-and-Borders",
"title": "Remove Fills and Borders",
"author": "Seb Jachec",
"owner": "sebj"
},
{
"description": "Rename multiple layers at once in Sketch.",
"name": "Rename-Layers",
"title": "Rename Layers",
"author": "Seb Jachec",
"owner": "sebj"
},
{
"description": "Selects all layers of the same name in Sketch.",
"name": "Select-By-Name",
"title": "Select By Name",
"author": "Seb Jachec",
"owner": "sebj"
},
{
"description": "Creates artboards and export options necessary to export a .iconset in Sketch.",
"name": "Setup-Iconset-Artboards",
"title": "Setup Iconset Artboards",
"author": "Seb Jachec",
"owner": "sebj"
},
{
"description": "A script to export the Sketch App artboards to the clipboard.",
"name": "crop_Artboard",
"title": "Crop Artboard for Sketch App + Skala",
"author": "Frederic Jacobs",
"owner": "FredericJacobs"
},
{
"description": "A simple Git client built right into Sketch.",
"name": "SketchGit",
"author": "Alasdair Monk",
"owner": "almonk"
},
{
"description": "Some scripts for the Mac Sketch app, including \"Blend Steps\", \"Simple Pattern\" and \"Fill Artboard\".",
"name": "Sketch-Plugin-Scripts",
"title": "Sketch Plugin Scripts",
"author": "Thomas Seng Hin Mak",
"owner": "makzan"
},
{
"description": "Scripts for Sketch, by another one of the Bohemian Coding guys.",
"name": "sketch-scripts",
"title": "Sketch Scripts",
"author": "Sam Deane",
"owner": "samdeane"
},
{
"description": "DrawingKit is a collection of commands for use in Sketch.",
"name": "DrawingKit",
"author": "Doug Downing",
"owner": "groove25",
"lastUpdated": "2014-05-16"
},
{
"description": "This Sketch plugin provides a preview command (⌘P) that will open a specially named slice in Skala Preview. The plugin works by exporting the first slice named Preview to Sketch's cache directory and opening that file in Skala Preview.",
"name": "sketch-preview",
"title": "Sketch Preview",
"author": "Marc Schwieterman",
"owner": "marcisme"
},
{
"description": "Dummy text filler plugin for Sketch!",
"name": "HipsterFill",
"owner": "sdrib",
"lastUpdated": "2014-02-09"
},
{
"description": "A collection of script commands for Bohemian Coding's Sketch.app",
"name": "sketch-commands",
"title": "Sketch Commands",
"author": "Ale Muñoz",
"owner": "bomberstudios"
},
{
"description": "Josh Wayne's plugins for Sketch. So far, it includes two very interesting commands for working with text layers.",
"name": "jw-sketch-plugins",
"title": "Sketch Plugins",
"author": "Josh Wayne",
"owner": "joshwayne"
},
{
"description": "A rename layers plugin.",
"name": "sketch",
"owner": "mindwork",
"author": "Stas Skrebkov",
"lastUpdated": "2014-01-17"
},
{
"description": "A port of the Renamy Photoshop plugin for Sketch: it lets you rename layers like a boss.",
"name": "RenameIt",
"owner": "rodi01",
"author": "Rodrigo Soares"
},
{
"description": "Generate Android assets in Sketch.",
"name": "sketch-android-assets",
"title": "Android Assets",
"owner": "zmalltalker",
"author": "Marius Mathiesen"
},
{
"description": "Recipes for JSTalk Sketch scripts and plugins. The goal is to help people new to JSTalk and Sketch scripting to start and to give examples for Sketch automation or extending tasks.",
"name": "jstalk-sketch-recipes",
"title": "JSTalk Sketch Recipes",
"owner": "uhunkler",
"author": "Urs Hunkler"
},
{
"description": "Sketch.app Plugin for Exporting Android Layouts (WIP at the moment)",
"name": "sketch-android-kit",
"title": "Sketch Android Kit",
"author": "Robert Malko",
"owner": "malkomalko"
},
{
"description": "\"Plugins for Sketch app from Bohemian Coding\". Includes two interesting commands to navigate to Next and Previous artboards.",
"name": "sketch-plugins",
"owner": "nadavsavio",
"lastUpdated": "2014-06-27",
"hidden": true
},
{
"description": "recolor all elements like the selected object color with the hex color of your choice.",
"name": "colorPoz",
"owner": "postite",
"hidden": true
},
{
"description": "A Plugin that provides a shortcut for copying a layer's fill color to clipboard.",
"name": "Copy-Fill-Color",
"title": "Copy Fill Color",
"owner": "poyi"
},
{
"description": "A box for random useful sketch commands meant to make work with layers easier. Contains most of my previous commands and plugins combined, plus a bunch of new ones.",
"name": "Sketch-Layer-Tools",
"title": "Sketch Layer Tools",
"author": "Matej Hrescak",
"owner": "hrescak"
},
{
"description": "Skrx ( ~skreecks ) exports a selection of elements (for now only the rectangles) to Apache Flex MXML or FXG description, and copy it to clipboard.",
"name": "skrx",
"owner": "rxlabz",
"author": "Erick G."
},
{
"description": "Scripts for Bohemian Coding's Sketch application.",
"name": "sketch-plugins",
"title": "Sketch Plugins",
"author": "David Udvardy",
"owner": "davidudvardy",
"lastUpdated": "2014-03-19"
},
{
"description": "A port of Illustrator's \"Split Into Grid\" to Sketch.",
"name": "Sketch-Scripts",
"title": "Split Into Grid",
"author": "Marcelo Eduardo",
"owner": "marceloeduardo"
},
{
"description": "Tristan's Plugins for Bohemian Coding's Sketch.app",
"name": "sketchplugins",
"owner": "trisweb",
"hidden": true
},
{
"description": "A collection of JSTalk methods for Bohemian Coding’s Sketch. The methods support Sketch scripting - writing plugins or code that interacts with Sketch.",
"name": "jstalk-sketch-library",
"title": "JSTalk Sketch Library",
"author": "Urs Hunkler",
"owner": "uhunkler"
},
{
"description": "Sketch plugins by Cemre Güngör.",
"name": "cemre-sketch-plugins",
"title": "Sketch Plugins by Cemre Güngör",
"author": "Cemre Güngör",
"owner": "cemre"
},
{
"description": "A measure tool for Sketch.app (think Specctr for Sketch)",
"name": "sketch-measure",
"title": "Sketch Measure",
"owner": "utom"
},
{
"description": "A same tool as Sketch Measure with more powerful export options for Sketch.app",
"name": "sketch-measure-Plus",
"title": "Sketch Measure Plus",
"owner": "hite"
},
{
"description": "Plugins for Bohemian Coding Sketch, including \"Duplicate to All Artboards\" and \"Golden Ratio\".",
"name": "sketch-plugins",
"title": "Sketch Plugins",
"author": "José Manuel Sánchez",
"owner": "buscarini"
},
{
"description": "A SketchApp plugin that inserts random user data into your Sketch documents.",
"name": "Random-User",
"title": "Random User",
"author": "Jim Rutherford",
"owner": "jimrutherford"
},
{
"description": "Sketch app plugin for generating dummy data such as avatars, names, photos, geo data etc.",
"name": "Content-generator-sketch-plugin",
"title": "Content Generator",
"author": "Timur Carpeev",
"owner": "timuric"
},
{
"description": "A library of Sketch Plugins aimed towards working with horizontal/vertical grid layouts and typography.",
"name": "sandros-sketch-plugins",
"title": "Sketch Plugins",
"author": "Alessandro",
"owner": "alessndro"
},
{
"description": "Select all child layers of a group with a key command.",
"name": "select-group-layers-sketch-plugin",
"title": "Select Group Layers",
"author": "Matt McManus",
"owner": "mattmcmanus"
},
{
"description": "A port to Sketch.app of Photoshop's Duplicate and Nudge feature.",
"name": "sketch-duplicate-and-nudge",
"title": "Duplicate and Nudge",
"author": "Ale Muñoz",
"owner": "bomberstudios"
},
{
"description": "This Sketch plugin allows designers to upload the selected artboard or slice to Cloud App with a simple shortcut ⇧⌘U.",
"name": "sketch-upload",
"title": "Sketch Upload",
"author": "Jacob Elias",
"owner": "jelias"
},
{
"description": "A git repo containing various plugins for Sketch (including 'Handy', a plugin that makes working with guides easier).",
"name": "SketchPlugins",
"author": "Josh Puckett",
"owner": "joshpuckett"
},
{
"description": "Some home-brewed Sketch App Plugins.",
"name": "ITSSketchPlugins",
"owner": "trisix"
},
{
"description": "Sketch plugin to do text translation using Google translate.",
"name": "sketch-translate",
"title": "Sketch Translate",
"owner": "zachheine",
"author": "Zach Heineman"
},
{
"description": "Sketch plugins for getting shots and info from Dribbble.",
"name": "skribbble",
"title": "Skribbble",
"owner": "tylergaw",
"author": "Tyler Gaw"
},
{
"description": "A collection of plugins requested to the official [@sketchapp](https://twitter.com/sketchapp) Twitter account.",
"owner": "sketchplugins",
"author": "Bohemian Coding",
"title": "Plugin Requests",
"name": "plugin-requests"
},
{
"description": "A collection of Sketch Plugins for creating placeholder images.",
"owner": "tylergaw",
"author": "Tyler Gaw",
"name": "day-player",
"title": "Day Player"
},
{
"description": "A simple plugin for Sketch.app which automatically adjusts the height of a rectangle to contain the text layer above it, along with an optional top and bottom padding.",
"owner": "shahruz",
"author": "Shahruz Shaukat",
"title": "Vertical Fit",
"name": "Sketch.app-Vertical-Fit"
},
{
"description": "Easily export Sketch artboards to Skitch.",
"owner": "shahruz",
"author": "Shahruz Shaukat",
"title": "Open in Skitch",
"name": "Open-in-Skitch"
},
{
"description": "A WIP Sketch Plugin to generate blog post elements from JSON'd RSS feeds.",
"owner": "tylergaw",
"author": "Tyler Gaw",
"title": "Generate Posts",
"name": "sketch-generate-posts"
},
{
"description": "Convert to Layers on Sketch from JSON (with Fireworks PNG structure).",
"owner": "littlebusters",
"name": "JSON-to-Layers",
"title": "JSON to Layers"
},
{
"description": "You can change the layer name by Regexp in Sketch 3.",
"owner": "littlebusters",
"name": "Regexp-Rename",
"title": "Regexp Rename"
},
{
"description": "Copy mixin code for SCSS, Less and Stylus to clipboard in Sketch 3.",
"owner": "littlebusters",
"title": "CSS Sprite Mixin",
"name": "Sketch-CSS-Sprite-Mixin"
},
{
"description": "QR Code generator plugin for Sketch App.",
"owner": "turbobabr",
"author": "Andrey Shakhmin",
"title": "QR Code",
"name": "sketch-qrcode"
},
{
"description": "Sketch Plugin to generate thaana strings, paragraphs, articles.",
"owner": "ajaaibu",
"author": "Ahmed Ali",
"title": "Thaana Text Generator",
"name": "ThaanaText"
},
{
"description": "A collection of useful workflow plugins, including automating selecting and zooming in on next/previous artboards.",
"owner": "vrjbndr",
"author": "Viraj Bindra",
"title": "Workflow Sketch Plugins",
"name": "select-next-artboard"
},
{
"description": "A sketch plugin to parse your data and populate your design.",
"owner": "florianpnn",
"author": "Florian Peninon",
"title": "Data Parser",
"name": "sketch-data-parser",
"lastUpdated": "2015-02-01"
},
{
"description": "Toggle a text layer to upper and lower case.",
"owner": "keeg",
"author": "Keegan Jones",
"title": "Text Uppercase",
"name": "sketch-text-uppercase",
"lastUpdated": "2014-05-22"
},
{
"description": "Get random quotes from quotesondesign.com from within Sketch.app",
"owner": "nodesolomon",
"author": "Solomon Ahmad",
"name": "Design-Quotes-Sketch-Plugin",
"title": "Design Quotes"
},
{
"description": "A couple of scripts for the Sketch app.",
"owner": "kumo",
"author": "Robert Clarke",
"title": "Sketch Plugin Scripts",
"name": "Sketch-Plugin-Scripts"
},
{
"description": "A Sketch plugin for automatically HTML generate.",
"owner": "sskyy",
"author": "Zhenyu Hou",
"title": "Blade",
"name": "blade"
},
{
"description": "A SketchApp plugin that generates a UIColor Objective-C Category class from your Sketch documents.",
"owner": "jimrutherford",
"author": "Jim Rutherford",
"title": "UIColor Category Generator",
"name": "UIColor-Category-Generator"
},
{
"description": "A Sketch Plugin for creating multiple sizes of iOS icons.",
"owner": "tylergaw",
"author": "Tyler Gaw",
"name": "icon-stamper",
"title": "Icon Stamper"
},
{
"description": "A Sketch 3 plugin that allows you to use CSS on layers.",
"author": "Jody Heavener",
"owner": "jodyheavener",
"title": "CSS Buddy",
"name": "CSS-Buddy"
},
{
"description": "Generate color swatches from hex codes.",
"author": "Jody Heavener",
"owner": "jodyheavener",
"name": "Swatches"
},
{
"description": "A Sketch plugin for a step-wise transformation of one path into another.",
"owner": "marmat",
"author": "Martin Matysiak",
"name": "sketch-interpolate-paths",
"title": "Interpolate Paths"
},
{
"description": "Some useful plugins for Sketch 3.0.",
"owner": "weezard",
"name": "Weezards-Sketch-Plugins",
"hidden": true
},
{
"description": "Plugins for Sketch.",
"owner": "8by8",
"name": "sketchplugins"
},
{
"description": "A Sketch plugin that lets you preview your current artboard in the Dock.",
"owner": "fnky",
"author": "Christian Petersen",
"title": "Dockpreview",
"name": "sketch-dockpreview"
},
{
"description": "Flowchart diagram plugin for Bohemian Coding Sketch app.",
"owner": "tadija",
"author": "Marko Tadić",
"name": "AEFlowchart"
},
{
"description": "Split and Divide plugins for Sketch3 app.",
"owner": "KrevedAccky",
"author": "Konstantin Raspopov",
"title": "Split & Divide",
"name": "SketchSplitDivide"
},
{
"description": "Sketch.app plugin for generating an Apple Icon Image ( .icns )",
"owner": "nathco",
"author": "Nathan Rutzky",
"title": "Generate ICNS",
"name": "Generate-ICNS"
},
{
"description": "A Sketch 3 plugin that takes the currently selected layers and copies them one or multiple times in a specified direction.",
"owner": "turbobabr",
"author": "Andrey Shakhmin",
"name": "Duplicator"
},
{
"description": "A Sketch plugin that allows to quickly export assets for Android, iOS, Windows Phone and the Web.",
"author": "Geert Wille",
"owner": "GeertWille",
"title": "Export Assets",
"name": "sketch-export-assets"
},
{
"description": "A Sketch plugin that allows to export assets for iOS directly from Sketch into Xcodes assets catalog.",
"owner": "GeertWille",
"author": "Geert Wille",
"title": "Sketch to Xcode Assets Catalog",
"name": "sketch-to-xcode-assets-catalog"
},
{
"description": "A Sketch plugin that calculates the color contrast of two selected layers and evaluates it against the WCAG2.0.",
"owner": "getflourish",
"author": "Florian Schulz",
"title": "Color Contrast Analyser",
"name": "Sketch-Color-Contrast-Analyser"
},
{
"description": "Randomly change the opacity of selected objects in Sketch.",
"owner": "adamhowell",
"author": "Adam Howell",
"title": "Random Opacity Sketch Plugin",
"name": "random-opacity-sketch-plugin"
},
{
"description": "A dummy plugin to quickly switch between pages using shortcuts.",
"owner": "mauehara",
"author": "Mauricio T. Uehara",
"name": "sketch-page-switch",
"title": "Page Switch"
},
{
"description": "Plugin that allows you to set the line height of a text layer as a multiple of the font size.",
"owner": "getflourish",
"author": "Florian Schulz",
"title": "Set Line Height",
"name": "Sketch-Set-Line-Height-Plugin"
},
{
"description": "ColorMime is a simple plugin for Sketch which allows you to quickly duplicate any Colourlovers palette in your sketch project.",
"owner": "jtmarmon",
"author": "Jason Marmon",
"name": "ColorMime"
},
{
"description": "Sketch.app plugin for swapping fill and border colors.",
"owner": "nathco",
"author": "Nathan Rutzky",
"title": "Swap Fill & Border",
"name": "Swap-Fill-Border"
},
{
"description": "Sketch.app plugin for clearing all layer style properties.",
"owner": "nathco",
"author": "Nathan Rutzky",
"title": "Clear Styles",
"name": "Clear-Styles"
},
{
"description": "Sync local Sketch.app plugins with their master version at GitHub.",
"owner": "nathco",
"author": "Nathan Rutzky",
"title": "Sync Plugins",
"name": "Sync-Plugins"
},
{
"description": "Plugin that can sort layers or artboards based on text, layer name or position.",
"owner": "getflourish",
"author": "Florian Schulz",
"title": "Sort Layers",
"name": "Sketch-Sort-Layers"
},
{
"description": "Plugin for generating animated GIFs from a sequence of artboards.",
"owner": "nathco",
"author": "Nathan Rutzky",
"title": "Generate GIF",
"name": "Generate-GIF"
},
{
"description": "Generate a visual style sheet with all colors and text styles that you are using in Sketch.",
"owner": "getflourish",
"author": "Florian Schulz",
"title": "Style Inventory",
"name": "Sketch-Style-Inventory"
},
{
"description": "\"Zoom\" to currently selected Artboard.",
"owner": "Arkkimaagi",
"author": "Mikko Tapionlinna",
"title": "ArtboardZoom",
"name": "ArtboardZoom"
},
{
"description": "iOS icon generator plugin for Bohemian Coding Sketch app.",
"owner": "tadija",
"author": "Marko Tadić",
"name": "AEIconizer"
},
{
"description": "Generates a typographic scale from selected text layers.",
"name": "sketch-plugin-typographic-scale",
"title": "Typographic Scale",
"author": "Henryk Wollik",
"owner": "automat"
},
{
"description": "Set of plugins for efficient work: change text linespacing and leading via keyboard, random sizing and random positioning of selected items, keep only text layers in selection.",
"owner": "x-raizor",
"author": "Andrew Shapiro",
"name": "Efficiency"
},
{
"description": "A plugin for Sketch to generate divine proportions automatically.",
"owner": "ichord",
"author": "Harold.Luo",
"title": "Sketch Divine Proportions",
"name": "sketch-divine-proportions"
},
{
"description": "Remove all guides from the artboard with a shortcut.",
"owner": "ichik",
"title": "Remove All Guides",
"name": "RemoveAllGuides"
},
{
"description": "Import gradients as shape fills using Will Burn's colorfulgradients and colorincolor.",
"owner": "dunckr",
"author": "Duncan Beaton",
"name": "sketch-colorfulgradients",
"title": "Colorful Gradients"
},
{
"description": "Sketch 3 plugin scripts for generating object collections.",
"owner": "lrtitze",
"author": "Leslie Titze",
"title": "LRTGenerator Sketch Plugins",
"name": "Sketch-Plugins-LRTGenerators"
},
{
"description": "Sketch 3 plugin that align layers relative to more options.",
"name": "AlignTo",
"title": "Align To",
"author": "Lucien Lee",
"owner": "LucienLee"
},
{
"description": "Import subtle patterns as shape fills in Sketch.",
"owner": "dunckr",
"author": "Duncan Beaton",
"name": "sketch-subtlepatterns",
"title": "Sketch SubtlePatterns"
},
{
"description": "Make it easy to resize an object without having to manually move all the content to keep the margins.",
"owner": "AntonStrand",
"author": "Anton Strand",
"title": "Dynamic Reposition",
"name": "dynamic-reposition"
},
{
"description": "Use one layer or the artboard as a template to resize other layers.",
"owner": "AntonStrand",
"author": "Anton Strand",
"title": "Sketch Resize",
"name": "Sketch-Resize"
},
{
"description": "Copy & paste boilerplate code from a Sketch layer to FramerJS.",
"owner": "getflourish",
"author": "Florian Schulz",
"title": "Copy and Paste for Framer",
"name": "Copy-and-Paste-for-Framer"
},
{
"description": "Sketch Plugin to quickly copy color RGB/HEX values.",
"owner": "mfouquet",
"author": "Michael Fouquet",
"name": "Color-Copier",
"title": "Color Copier"
},
{
"description": "Sketch Plugin to make documenting design easier.",
"owner": "marcosvidal",
"author": "Marcos Vidal",
"title": "Sketch Notebook",
"name": "Sketch-Notebook",
"homepage": "http://marcosvid.al/sketch-notebook"
},
{
"description": "Modulizer plug-in for Sketch.app allows you easy control paddings for buttons, modules and areas. If your module has background your can set fixed paddings and easy restore it for any content changes.",
"owner": "Falkeyn",
"author": "Alexander Khramtsov",
"name": "Modulizer"
},
{
"description": "Just another Guide plugin for Sketch.",
"owner": "petehouston",
"author": "Pete Houston",
"title": "The Ultimate Guide Plugin for Sketch",
"name": "sketch-guides"
},
{
"description": "Sketch.app Plugin to copy colors to clipboard as SCSS variable definitions.",
"owner": "graphical-iain",
"author": "Iain Eudailey",
"title": "Copy SCSS Colors",
"name": "Copy-SCSS-Colors"
},
{
"description": "A button creator plugin for Sketch.",
"owner": "AndrewKF",
"author": "Andrew Fullerton",
"title": "Sketch Button Smith",
"name": "Sketch-Buttonsmith"
},
{
"description": "Zeplin Sketch Plugin.",
"owner": "zeplin",
"author": "Zeplin",
"name": "zeplin-sketch-plugin",
"title": "Zeplin",
"homepage": "https://zeplin.io"
},
{
"description": "Smartboards aims to make managing and exporting artboards easier in Sketch.",
"owner": "elihorne",
"author": "Eli Horne",
"name": "smartboards"
},
{
"description": "A Sketch plugin which can export artboards or slice to ICNS.",
"owner": "solicomo",
"author": "Soli Como",
"title": "Export to ICNS",
"name": "export-to-icns"
},
{
"description": "Sketch plugin to align selected layers to the bottom one.",
"owner": "rodi01",
"author": "Rodrigo Soares",
"name": "Align-To-Layer",
"title": "Align to Layer"
},
{
"description": "Sketch plugin that automatically generates MDPI, HDPI, XHDPI, XXHDPI, and XXXHDPI Android assets.",
"author": "Todor Iliev",
"owner": "todoriliev",
"name": "generate-android-assets",
"title": "Generate Android Assets"
},
{
"description": "A Sketch.app plugin to create a grid with rulers.",
"owner": "ryanlanglois",
"author": "Ryan Langlois",
"name": "RulerGrid"
},
{
"description": "If you love catipsum.com & sketch as much as I do, then I don't know how could you live without this plugin.",
"owner": "mamuso",
"name": "sketch-cat-ipsum",
"title": "Cat Ipsum"
},
{
"description": "Selects all text layers that have the same text style as the reference text layer.",
"owner": "getflourish",
"author": "Florian Schulz",
"title": "Select Similar Text Layers",
"name": "Sketch-Select-Similar-Text-Layers-Plugin"
},
{
"description": "Export all your Sketch text styles as CSS (proof of concept).",
"owner": "getflourish",
"author": "Florian Schulz",
"title": "Export Text Styles",
"name": "Sketch-Export-Text-Styles"
},
{
"description": "This plugin selects all layers that have the same fill color as the currently selected layer.",
"owner": "getflourish",
"author": "Florian Schulz",
"title": "Select Layers by Color",
"name": "Sketch-Select-Layers-by-Color"
},
{
"description": "A Sketch plugin for helpful dummy text from Arrested Development",
"homepage": "http://ligcreative.github.io/sketch-bluth-ipsum/",
"owner": "LigCreative",
"author": "Ligature Creative Group",
"title": "Bluth Ipsum",
"name": "sketch-bluth-ipsum",
"lastUpdated": "2014-07-16"
},
{
"description": "A plugin for Sketch.app to share artboards to Slack.",
"owner": "shahruz",
"author": "Shahruz Shaukat",
"title": "Send to Slack",
"name": "Send-to-Slack"
},
{
"description": "Sketch i18n enables you to generate translation files for a page and translate it. It acts in a non-destructive way so you can easily undo your changes later.",
"owner": "kristof",
"author": "Kristof Houben",
"title": "Sketch i18n",
"name": "sketch-i18n"
},
{
"description": "A plugin for exporting layers for Android. Supports transparency and 1x and 2x base sizes.",
"owner": "nickstamas",
"author": "Nick Stamas",
"name": "Sketch-Better-Android-Export",
"title": "Better Android Export"
},
{
"description": "Making Sketch talk...",
"owner": "marcosvidal",
"author": "Marcos Vidal",
"title": "Sketch Speaker",
"name": "sketch-speaker"
},
{
"description": "Quickly fill a layer with an image from Flickr based on tags.",
"owner": "nickstamas",
"author": "Nick Stamas",
"title": "Quick Pic",
"name": "Sketch-Quick-Pic"
},
{
"description": "Export simple HTML click dummies to prototype interactivity. Just draw rectangles to create links between artboards.",
"owner": "Raureif",
"author": "Raureif",
"title": "Click Dummy",
"name": "sketch-click-dummy"
},
{
"description": "Moves selected layers vertically according to the cursor position.",
"owner": "wolanski",
"author": "Gregory Wolanski",
"title": "Vertical Teleporter",
"name": "sketch-vertical-teleporter"
},
{
"description": "Sketch app plugin for displaying Google material design color palette.",
"owner": "t32k",
"name": "material-design-color-palette"
},
{
"description": "This plugin includes a few simple actions to make managing pages easier in Sketch.",
"owner": "ribot",
"name": "sketch-page-helpers",
"title": "Sketch Page Helpers"
},
{
"description": "This is a plugin for quickly creating english & persian(farsi) Lorem Ipsum text in Sketch.",
"owner": "Rezaaa",
"author": "Mohammad Reza Mahmoudi",
"title": "English and Persian Lorem Ipsum",
"name": "english-and-persian-lorem-ipsum"
},
{
"description": "Convert one or more artboards to 9patch layout, then export xxx.9.png to desktop.",
"owner": "maundytime",
"name": "sketch-9patch",
"title": "9 Patch Generator"
},
{
"description": "Sketch plugin to randomly resize selected elements.",
"owner": "longzheng",
"author": "Long Zheng",
"name": "sketch-randomSize",
"title": "Random Sizing"
},
{
"description": "Replace layers in Sketch with photos from Instagram.",
"owner": "abynim",
"author": "Aby Nimbalkar",
"title": "Sketch Squares",
"name": "SketchSquares"
},
{
"description": "More precise rotation for line objects in Sketch compared to the native Rotate tool, which only offers arbitrary rotation. Includes a 'Rotate a Copy' feature and Relative and Absolute rotation as well.",
"owner": "eric-adstage",
"author": "Eric Foster",
"name": "Sketch_RotateLine",
"title": "Rotate Line"
},
{
"description": "Easily add comments to your designs.",
"owner": "lukasondrej",
"author": "Lukas Ondrej",
"title": "Sketch Comments",
"name": "Sketch-Comments"
},
{
"description": "Lay out all your artboards in a grid with user-specified number of rows.",
"owner": "kenmoore",
"author": "Ken Moore",
"title": "Arrange Artboards",
"name": "Sketch-Arrange-Artboards"
},
{
"description": "Paste like it was meant to be--into the artboard you're viewing.",
"owner": "kenmoore",
"author": "Ken Moore",
"title": "Better Paste",
"name": "Sketch-Better-Paste"
},