forked from sketchplugins/plugin-directory
-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugins.json
4789 lines (4789 loc) · 172 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": "Keep your Sketch files immaculately clean and in order.",
"name": "File Cleaner",
"title": "File Cleaner",
"owner": "Monzo",
"author": "Monzo",
"homepage": "https://github.com/monzo/file-cleaner",
"lastUpdated": "2018-12-11 15:30:00 UTC"
},
{
"description": "Select multiple layers/groups/artboards and rename all of them on the go.",
"name": "Renamer",
"title": "Renamer",
"owner": "Webkul",
"author": "Webkul, Nitish Khagwal",
"homepage": "https://github.com/webkul/renamer",
"appcast": "https://raw.githubusercontent.com/webkul/renamer/master/appcast.xml",
"lastUpdated": "2018-12-03 08:19:26 UTC"
},
{
"description": "Awesome Product Design Tool",
"name": "🐳 蓝湖",
"title": "🐳 蓝湖",
"owner": "lanhuapp.com",
"author": "lanhuapp.com",
"homepage": "https://lanhuapp.com/mac",
"appcast": "http://d.lanhuapp.com/appcast.xml",
"lastUpdated": "2018-10-26 22:33:33 UTC"
},
{
"description": "Upload your designs, invite your team to edit copy in the browser and sync the changes back to your Sketch document.",
"name": "Scribble",
"title": "Scribble",
"owner": "CanvasFlip Inc",
"author": "CanvasFlip Inc",
"homepage": "https://www.canvasflip.com/visual-inspector/scribble/",
"appcast": "https://github.com/manish1988/scribble-sketch-plugin/blob/master/appcast.xml",
"lastUpdated": "2018-11-16 12:00:00 UTC"
},
{
"description": "This Sketch Data plugin adds localized profile names (powered by uinames.com) to your design. - Get diversity into your content.",
"name": "Jane Doe",
"title": "Jane Doe",
"owner": "Konstantin Demblin",
"author": "Konstantin Demblin",
"homepage": "https://github.com/konki-vienna/jane_doe",
"lastUpdated": "2018-11-14 12:00:00 UTC"
},
{
"title": "Timelapse",
"description": "Create beautiful high-speed videos of your work in Sketch and show off your progress.",
"name": "Timelapse",
"author": "Team Timelapse",
"owner": "Team Timelapse",
"homepage": "https://timelapsesketch.com",
"appcast": "https://www.animaapp.com/timelapse/appcast.xml",
"lastUpdated": "2018-11-01 00:20:00 UTC"
},
{
"title": "Laboji",
"description": "A sketch plugin for adding emoji on layer name like colorful labels or tags.",
"name": "Laboji",
"owner": "Mohammad Reza Mahmoudi",
"author": "Mohammad Reza Mahmoudi",
"homepage": "https://github.com/rezaaa/Laboji",
"lastUpdated": "2018-10-12 00:20:00 UTC"
},
{
"title": "Symbol Text Inspector",
"description": "Easily inspect the specifications of all text overrides in symbols, including in nested symbols.",
"name": "SymbolTextInspector",
"owner": "dbilyk",
"author": "Dmitri Bilyk",
"appcast": "https://raw.githubusercontent.com/dbilyk/SymbolTextInspector/master/appcast.xml",
"lastUpdated": "2018-10-19 15:01:22 UTC"
},
{
"title": "6Spiral",
"description": "6Spiral is a sketch plugin to draw spiral shapes (archimedean and logarithmic spirals) and it also allows you to convert the 2D spirals into 3D-like helix shapes at a specified isometric angle.",
"name": "6Spiral",
"owner": "matej-marjanovic",
"author": "Matej Marjanovic",
"appcast": "https://raw.githubusercontent.com/matej-marjanovic/6Spiral-Sketch-Plugin/master/appcast.xml",
"homepage": "https://github.com/matej-marjanovic/6Spiral-Sketch-Plugin",
"lastUpdated": "2018-09-12 10:20:00 UTC"
},
{
"title": "Specify (Alpha)",
"description": "Export styles and assets to your Specify Libraries.",
"name": "Specify",
"owner": "Specify SAS",
"author": "Specify SAS",
"appcast": "http://specify-plugins.s3.amazonaws.com/appcast.xml",
"homepage": "https://specifyapp.com"
},
{
"description": "Add blur effect to artboards for testing visual hierarchy easily in your design process.",
"name": "blur_artboard",
"title": "Blur Artboard",
"owner": "Duan",
"author": "Duan",
"homepage": "http://blur.duanjun.net",
"lastUpdated": "2018-07-22 14:00:00 UTC"
},
{
"description": "Plugin to using resources of Fusion Design.",
"name": "fusion-cool",
"title": "FusionCool",
"owner": "wwsun",
"author": "wwsun",
"homepage": "https://github.com/alibaba-fusion/cool",
"appcast": "https://alifd.oss-cn-hangzhou.aliyuncs.com/sketch-fusion/appcast.xml",
"lastUpdated": "2018-07-12 14:54:22 UTC"
},
{
"description": "Plugin to translate Sketch files into via Google Translate.",
"name": "sketch-auto-translate",
"title": "Sketch Auto Translate",
"owner": "symdesign",
"author": "Friedrich Schultheiss",
"homepage": "https://github.com/symdesign/sketch-auto-translate",
"lastUpdated": "2018-10-29 14:12:09 UTC"
},
{
"description": "Reverse the position or depth of selected elements.",
"name": "sketch-reverse",
"title": "Sketch Reverse",
"owner": "lucaorio",
"author": "Luca Orio",
"homepage": "https://github.com/lucaorio/sketch-reverse",
"lastUpdated": "2018-04-10 02:18:33 UTC"
},
{
"description": "Create beautiful timeline animations and export GIF or MP4",
"title": "Timeline",
"author": "Anima Team",
"homepage": "https://timeline.animaapp.com",
"lastUpdated": "2018-05-16 3:00:00 UTC"
},
{
"description": "Legend for your Sketch Symbols.",
"name": "sketch-symbol-legend",
"title": "Sketch Symbol Legend",
"owner": "wix-incubator",
"author": "WIX Incubator",
"homepage": "https://github.com/amimagid/sketch-symbol-legend",
"lastUpdated": "2018-05-23 09:42:31 UTC"
},
{
"description": "Generate Isometric views from Artboards and Rectangles.",
"name": "sketch-isometric",
"title": "Sketch Isometric",
"owner": "sureskumar",
"author": "Sures Kumar",
"homepage": "https://github.com/sureskumar/sketch-isometric",
"lastUpdated": "2018-10-03 18:32:28 UTC"
},
{
"description": "Adds prototyping to Sketch including transitions between screens and layer animation.",
"title": "Protowire",
"author": "Mark Horgan",
"homepage": "https://protowire.com",
"lastUpdated": "2018-02-05 10:27:00 UTC"
},
{
"description": "Access Shutterstock's stunning images without leaving your workspace.",
"title": "Shutterstock",
"author": "Shutterstock, Inc.",
"homepage": "https://www.shutterstock.com/special/sketchplugin",
"lastUpdated": "2018-01-19 16:09:47 UTC"
},
{
"description": "A plugin to help working with bootstrap grids and grids in general. It allows to create (Bootstrap) grids and align and de-/increase width of layers accordingly.",
"name": "sketch-bootstrap-helpers",
"title": "Bootstrap Helpers",
"owner": "konki-vienna",
"author": "Konstantin Demblin",
"homepage": "https://github.com/konki-vienna/sketch-bootstrap-helpers",
"lastUpdated": "2018-09-21 06:56:23 UTC"
},
{
"description": "Export Sketch based designs to be used within Crank Software's Storyboard Suite",
"name": "SketchPlugins",
"title": "Storyboard Export",
"owner": "cranksoftwaredev",
"author": "Crank Software Inc.",
"homepage": "https://github.com/cranksoftwaredev/SketchPlugins",
"lastUpdated": "2018-08-15 14:04:25 UTC"
},
{
"description": "Sketch plugin that helps you get your design files as clean as a whistle.",
"title": "SketchCleaner",
"author": "Yummygum",
"homepage": "http://www.sketchcleaner.com/",
"lastUpdated": "2017-12-05 10:10:40 UTC"
},
{
"description": "Emulate blend functionality from Adobe Illustrator",
"name": "smudge",
"title": "Smudge",
"owner": "mjkaufer",
"author": "Matthew Kaufer",
"homepage": "https://github.com/mjkaufer/smudge",
"lastUpdated": "2017-11-25 03:25:58 UTC"
},
{
"description": "Export layer as email attachment",
"name": "sendTo",
"title": "sendTo",
"owner": "udi-gindi",
"author": "Udi Gindi",
"homepage": "https://github.com/udi-gindi/sendTo",
"lastUpdated": "2017-11-09 15:43:24 UTC"
},
{
"title": "Export to Indigo",
"description": "Generate Indigo Studio projects from your artboards to create interactive, animated prototypes. Get real user feedback through included usability studies with video replays.",
"author": "Indigo Studio",
"owner": "indigostudio",
"name": "indigo-sketch-plugin",
"homepage": "https://indigo.infragistics.com/sketch-home",
"lastUpdated": "2017-11-16 13:42:15 UTC"
},
{
"description": "Turn your lines into arrows",
"name": "loose-sketch-plugin",
"title": "Loose!",
"owner": "teeerevor",
"author": "Trev Wolf",
"lastUpdated": "2017-10-30 01:26:06 UTC"
},
{
"description": "Install missing fonts & free fonts directly from Sketch.",
"name": "FontBuddy",
"title": "Font Buddy",
"owner": "AnimaApp",
"author": "Anima Team",
"lastUpdated": "2018-02-28 14:05:03 UTC"
},
{
"description": "Create game plays directly from Sketch app.",
"name": "Sketch-Play",
"title": "Sketch Play",
"owner": "sureskumar",
"author": "Sures Kumar",
"homepage": "http://sureskumar.com/sketchplay/",
"lastUpdated": "2017-09-18 05:07:28 UTC"
},
{
"description": "Dynamic color relations in Sketch.",
"name": "Chain",
"owner": "LaloMrtnz",
"author": "Lalo Mrtnz",
"homepage": "https://lalomrtnz.github.io/Chain/",
"lastUpdated": "2018-05-26 15:32:33 UTC"
},
{
"description": "A Sketch plugin to extract a color palette from any layer that contains bitmap data.",
"name": "Alembic",
"title": "Alembic",
"author": "Awkward",
"owner": "awkward",
"homepage": "https://alembicforsketch.com",
"lastUpdated": "2018-05-22 13:51:22 UTC"
},
{
"description": "Add single borders with advanced controls.",
"name": "single-border",
"title": "Single Border",
"owner": "sureskumar",
"author": "Sures Kumar",
"homepage": "https://github.com/sureskumar/single-border",
"lastUpdated": "2018-10-03 21:09:46 UTC"
},
{
"description": "A plugin to create HTML based preview and gallery straight from sketch artboards",
"name": "sketch-neo-preview",
"title": "NeoPreview",
"owner": "alanfraneo",
"author": "Alan Francis",
"lastUpdated": "2017-09-19 12:40:36 UTC"
},
{
"description": "Helps you select different type of layers, specific Shapes like Rectangle, Ovals, Triangles, Lines, Arrows, Paths, etc.",
"name": "sketch-selectplus",
"title": "⚓️ Sketch - SelectPlus",
"owner": "nathan5x",
"author": "Sabarinathan Masilamani",
"lastUpdated": "2018-05-21 19:34:43 UTC"
},
{
"description": "A set of plugins for Sketch include drawing links & marks, UI Kit & Color sync, font & text replacing.",
"name": "Miaow",
"title": "Miaow",
"owner": "weixin",
"author": "Tencent WeChat Team",
"homepage": "https://github.com/weixin/Miaow",
"lastUpdated": "2018-10-19 09:26:14 UTC"
},
{
"description": "Sync and generate specs from sketch artboards to CanvasFlip.",
"title": "CanvasFlip",
"author": "CanvasFlip",
"homepage": "https://canvasflip.com/",
"lastUpdated": "2017-06-28 10:30:30 UTC"
},
{
"description": "Generate palette stripes in sketch from shape fills.",
"name": "palette-stripes",
"title": "Palette Stripes",
"owner": "sureskumar",
"author": "Sures Kumar",
"homepage": "https://github.com/sureskumar/palette-stripes",
"lastUpdated": "2018-08-03 22:20:32 UTC"
},
{
"description": "Generate complex organic super-shapes using super formula.",
"name": "super-shapes",
"title": "Super Shapes",
"owner": "sureskumar",
"author": "Sures Kumar",
"homepage": "https://github.com/sureskumar/super-shapes",
"lastUpdated": "2018-10-03 21:54:45 UTC"
},
{
"description": "Automatically resize spacing symbols to correct size when changing to different one",
"name": "symbol-spacer-sketch-plugin",
"title": "Symbol Spacer Sketch Plugin",
"owner": "novemberfiveco",
"author": "Geert Wille",
"homepage": "https://github.com/novemberfiveco/symbol-spacer-sketch-plugin",
"lastUpdated": "2017-10-19 22:41:55 UTC"
},
{
"description": "Reselect allows you to restore a previous selection or save selections for later use (even after you close the document).",
"name": "Reselect",
"title": "Reselect",
"owner": "mfouquet",
"author": "Michael Fouquet",
"homepage": "http://www.reselect.co",
"lastUpdated": "2017-06-16 20:10:47 UTC"
},
{
"description": "Help you find out popular design systems and download official Sketch UI kit.",
"title": "Design Systems",
"name": "design-systems",
"owner": "Ashung",
"author": "Ashung Hung",
"lastUpdated": "2018-05-10 03:58:17 UTC"
},
{
"description": "Export your Sketch design into HTML website.",
"title": "Launchpad",
"name": "Launchpad",
"owner": "AnimaApp",
"author": "Anima Team",
"homepage": "https://launchpad.animaapp.com",
"lastUpdated": "2018-07-10 16:27:58 UTC"
},
{
"description": "Create basic word clouds and tag clouds.",
"name": "WordCloud",
"title": "WordCloud",
"owner": "ediathome",
"author": "Martin Kolb",
"homepage": "https://github.com/ediathome/WordCloud",
"lastUpdated": "2017-06-06 16:10:00 UTC"
},
{
"description": "Create good-looking and perceptually uniform gradients and color scales.",
"name": "chromatic-sketch",
"title": "Chromatic Sketch",
"owner": "petterheterjag",
"author": "Petter Nilsson",
"lastUpdated": "2018-08-24 08:37:29 UTC"
},
{
"description": "Ensure your design is accessible and high contrast for every type of color blindness.",
"name": "stark-sketch-plugin",
"title": "Stark",
"owner": "stark-contrast",
"author": "Michael Fouquet, Cat Noone, Benedikt Lehnert",
"homepage": "http://www.getstark.co",
"lastUpdated": "2018-03-24 23:53:15 UTC"
},
{
"description": "Document your design system using beautifully simple styleguides synced with Sketch and code 💎 💻",
"title": "zeroheight",
"author": "zeroheight",
"homepage": "https://zeroheight.com"
},
{
"description": "Generate text for your mockups in multiple languages 🗺",
"name": "foreignipsum",
"title": "Foreign Ipsum",
"author": "Braxton Huff",
"owner": "3raxton",
"lastUpdated": "2018-10-11 23:00:16 UTC"
},
{
"description": "An easy way creating guidelines",
"name": "Gridy",
"title": "Gridy",
"author": "Oleg Frolov",
"owner": "Volorf",
"lastUpdated": "2018-05-26 15:18:32 UTC"
},
{
"description": "Looper helps automate duplication of groups and layers. One can control properties like Rotate, Scale and Opacity while duplicating. This powerful combination enables artists and designers to create interesting geometric and organic patterns.",
"name": "Looper",
"title": "Looper",
"author": "Sures Kumar",
"owner": "sureskumar",
"lastUpdated": "2018-10-03 18:43:14 UTC"
},
{
"description": "Find or rename multiple layers at once using RegEx and flags in Sketch (v.45 tested)",
"name": "LayerRenamer",
"title": "Layer Renamer",
"author": "Leonard Pauli",
"owner": "LeonardPauli",
"lastUpdated": "2018-07-13 14:03:45 UTC"
},
{
"description": "Quickly focus on various inspector's fields like font size, font weight and text/fill color using shortcuts.",
"name": "sketch-ace-jump",
"title": "Ace Jump",
"author": "Andrey Shakhmin",
"owner": "turbobabr",
"lastUpdated": "2017-05-29 07:06:46 UTC"
},
{
"description": "Frictionless, Finder like navigation in layer list by using beloved arrow keys and simple shortcuts.",
"name": "sketch-wanderer",
"title": "Wanderer",
"author": "Andrey Shakhmin",
"owner": "turbobabr",
"lastUpdated": "2018-03-16 07:54:31 UTC"
},
{
"description": "Generates an HTML page of images from your artboard.",
"name": "sketch-html-export",
"title": "HTML Export",
"author": "Mel Ludowise",
"owner": "mludowise",
"lastUpdated": "2017-07-07 18:49:53 UTC"
},
{
"description": "Generates a HTML click-through prototype of your responsive website design.",
"name": "click-thru-prototype",
"title": "Click-Thru Prototype",
"author": "Mark Horgan",
"owner": "markhorgan",
"lastUpdated": "2017-10-11 12:53:04 UTC"
},
{
"description": "Responsive design inside Sketch. Design for all screen sizes on one artboard.",
"name": "Auto-Layout",
"title": "Auto Layout",
"homepage": "https://animaapp.github.io/Auto-Layout/",
"author": "Anima Team",
"owner": "AnimaApp",
"lastUpdated": "2018-07-10 16:26:35 UTC"
},
{
"description": "Select all exportable layers, slices, and artboards.",
"name": "sketch-select-exportables",
"title": "Select Exportables",
"author": "Kenji Wellman",
"owner": "yargies",
"lastUpdated": "2017-07-24 18:48:21 UTC"
},
{
"description": "Quick Export layers/artboards/symbols as PNG Plugin for Sketch.",
"name": "sketch-quickexport",
"title": "Quick Export as PNG",
"author": "Richard Gazdik",
"owner": "richardgazdik",
"lastUpdated": "2018-05-15 08:59:06 UTC"
},
{
"description": "Clear export options for all elements on all pages in a Sketch file.",
"name": "sketch-clear-export-options",
"title": "Clear Export Options",
"author": "Emre C. Coskun (EMRECC)",
"owner": "emrerussia",
"lastUpdated": "2018-11-14 20:30:06 UTC"
},
{
"description": "Group and align your Sketch symbols and artboards by name.",
"name": "sketch-align",
"title": "Align artboards and symbols",
"author": "Richard Gazdik",
"owner": "richardgazdik",
"lastUpdated": "2016-08-10 21:58:39 UTC"
},
{
"description": "Spotlight in Sketch",
"name": "sketch-action",
"title": "Sketch Action",
"author": "Khoa Pham",
"owner": "onmyway133",
"lastUpdated": "2016-09-05 21:27:01 UTC"
},
{
"description": "Generate lines originating from a certain coordinate of an artboard.",
"name": "radial-lines-sketch",
"title": "Radial Lines",
"author": "herrhelms",
"owner": "herrhelms",
"lastUpdated": "2018-05-26 15:37:14 UTC"
},
{
"description": "Add evenly distributed guides to artboards.",
"name": "even-guides-sketch",
"title": "Evenly Distributed Guides",
"author": "herrhelms",
"owner": "herrhelms",
"lastUpdated": "2016-08-24 23:18:07 UTC"
},
{
"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": "herrhelms",
"owner": "herrhelms",
"lastUpdated": "2018-07-11 13:22:51 UTC"
},
{
"description": "Use Google Sheets to sync typography across your team.",
"name": "sync.sketchplugin",
"title": "Sync",
"author": "Stanford Rosenthal",
"owner": "nolastan",
"lastUpdated": "2017-05-02 16:37:55 UTC"
},
{
"description": "Generates a preview (⌘ + ⇧ + .) of your current artboard and shows in your web browser.",
"name": "sketch-browser-preview",
"title": "Sketch Browser Preview",
"owner": "FreakLand",
"lastUpdated": "2017-02-24 19:57:43 UTC"
},
{
"description": "Sync Sketch artboards to Prott like a boss.",
"name": "Prott-Sketch-Plugin",
"title": "Prott Sketch Plugin",
"author": "Goodpatch Inc.",
"owner": "goodpatch",
"appcast": "https://raw.githubusercontent.com/goodpatch/Prott-Sketch-Plugin/master/.appcast.xml",
"lastUpdated": "2018-11-30 05:05:38 UTC"
},
{
"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",
"lastUpdated": "2017-06-25 08:10:28 UTC"
},
{
"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",
"lastUpdated": "2018-10-18 15:27:55 UTC"
},
{
"description": "Disconnect / unlink selection from symbols and shared styles.",
"name": "Disconnect-for-Sketch",
"title": "Disconnect for Sketch",
"author": "Emin İnanç Ünlü",
"owner": "einancunlu",
"lastUpdated": "2016-04-10 12:17:24 UTC"
},
{
"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",
"lastUpdated": "2016-01-27 11:52:31 UTC"
},
{
"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",
"lastUpdated": "2018-08-01 09:02:19 UTC"
},
{
"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",
"lastUpdated": "2018-06-13 13:54:56 UTC"
},
{
"description": "Quickly select and share work in progress with your team via WorkingOn.",
"name": "SketchingOn",
"owner": "WorkingOn",
"homepage": "https://www.workingon.co",
"lastUpdated": "2017-05-07 01:22:47 UTC"
},
{
"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",
"lastUpdated": "2017-06-02 16:18:58 UTC"
},
{
"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",
"lastUpdated": "2018-10-26 01:22:13 UTC"
},
{
"description": "A collection of script commands for Bohemian Coding's Sketch.app",
"name": "sketch-commands",
"title": "Sketch Commands",
"author": "Ale Muñoz",
"owner": "bomberstudios",
"lastUpdated": "2018-10-25 20:20:00 UTC"
},
{
"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",
"lastUpdated": "2016-10-01 00:28:00 UTC"
},
{
"description": "Keep your Sketch files organized, batch rename layers and artboards.",
"name": "RenameIt",
"title": "Rename It",
"owner": "rodi01",
"author": "Rodrigo Soares",
"appcast": "https://raw.githubusercontent.com/rodi01/RenameIt/master/.appcast.xml",
"homepage": "http://rodi01.github.io/RenameIt/",
"lastUpdated": "2018-11-27 00:39:25 UTC"
},
{
"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",
"lastUpdated": "2017-02-04 22:31:53 UTC"
},
{
"description": "Make it a fun to create spec for developers and teammates! Automatically generating html page with one click, inspect all the design details including CSS Styles on it offline.",
"name": "sketch-measure",
"title": "Sketch Measure",
"owner": "utom",
"lastUpdated": "2018-11-24 14:20:25 UTC"
},
{
"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",
"lastUpdated": "2018-08-24 14:37:53 UTC"
},
{
"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": "alssndro",
"lastUpdated": "2018-05-26 15:40:34 UTC"
},
{
"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",
"lastUpdated": "2017-10-19 18:27:22 UTC"
},
{
"description": "A collection of Sketch Plugins for creating placeholder images.",
"owner": "tylergaw",
"author": "Tyler Gaw",
"name": "day-player",
"title": "Day Player",
"lastUpdated": "2017-06-26 18:15:46 UTC"
},
{
"description": "Convert to Layers on Sketch from JSON (with Fireworks PNG structure).",
"owner": "littlebusters",
"name": "JSON-to-Layers",
"title": "JSON to Layers",
"lastUpdated": "2017-06-13 14:34:41 UTC"
},
{
"description": "You can change the layer name by Regexp in Sketch 3.",
"owner": "littlebusters",
"name": "Regexp-Rename",
"title": "Regexp Rename",
"lastUpdated": "2017-06-13 14:34:30 UTC"
},
{
"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",
"lastUpdated": "2017-06-08 14:26:19 UTC"
},
{
"description": "Switch text spacing with OpenType features.",
"owner": "littlebusters",
"title": "Switch Text Spacing",
"name": "Switch-Text-Spacing",
"lastUpdated": "2017-06-13 14:35:10 UTC"
},
{
"description": "Convert from Sketch to JSON w/assets and JSON w/assets to Sketch. ",
"owner": "littlebusters",
"title": "Sketch Exchanger",
"name": "Sketch-Exchanger",
"lastUpdated": "2018-01-17 10:38:19 UTC"
},
{
"description": "Plugin can apply other fonts for each character type of Text Layer.",
"name": "Sketch-Font-Mixer",
"title": "Font Mixer",
"owner": "littlebusters",
"author": "littlebusters",
"homepage": "https://github.com/littlebusters/Sketch-Font-Mixer",
"lastUpdated": "2018-09-26 09:47:38 UTC"
},
{
"description": "A Sketch plugin that lets you preview your current artboard in the Dock.",
"owner": "fnky",
"author": "Christian Petersen",
"title": "Dockpreview",
"name": "sketch-dockpreview",
"lastUpdated": "2018-07-15 23:44:22 UTC"
},
{
"description": "Flowchart diagram plugin for Bohemian Coding Sketch app.",
"owner": "tadija",
"author": "Marko Tadić",
"name": "AEFlowchart",
"lastUpdated": "2018-11-04 17:58:39 UTC"
},
{
"description": "Split and Divide plugins for Sketch3 app.",
"owner": "KrevedAccky",
"author": "Konstantin Raspopov",
"title": "Split & Divide",
"name": "SketchSplitDivide",
"lastUpdated": "2018-09-01 12:46:15 UTC"
},
{
"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",
"lastUpdated": "2018-03-16 07:39:33 UTC"
},
{
"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",
"lastUpdated": "2017-03-15 11:58:44 UTC"
},
{
"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",
"lastUpdated": "2018-05-26 15:41:34 UTC"
},
{
"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",
"lastUpdated": "2018-05-26 15:42:15 UTC"
},
{
"description": "Sketch.app plugin for swapping fill and border colors.",
"owner": "nathco",
"author": "Nathan Rutzky",
"title": "Swap Fill & Border",
"name": "Swap-Fill-Border",
"lastUpdated": "2017-09-28 14:11:52 UTC"
},
{
"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",
"lastUpdated": "2018-04-14 11:55:49 UTC"
},
{
"description": "\"Zoom\" to currently selected Artboard.",
"owner": "Arkkimaagi",
"author": "Mikko Tapionlinna",
"title": "Artboardzoom",
"name": "ArtboardZoom",
"lastUpdated": "2018-01-02 07:48:18 UTC"
},
{
"description": "Bookmark your place and zoom in Sketch.app",
"owner": "Arkkimaagi",
"author": "Mikko Tapionlinna",
"title": "Bookmark 🔖",
"name": "Bookmark",
"lastUpdated": "2017-06-20 13:45:46 UTC"
},
{
"description": "iOS icon generator plugin for Bohemian Coding Sketch app.",
"owner": "tadija",
"author": "Marko Tadić",
"name": "AEIconizer",
"lastUpdated": "2018-10-07 13:12:09 UTC"
},
{
"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",
"lastUpdated": "2018-02-12 21:16:57 UTC"
},
{
"description": "A plugin for Sketch to generate divine proportions automatically.",
"owner": "ichord",
"author": "Harold.Luo",
"title": "Sketch Divine Proportions",
"name": "sketch-divine-proportions",
"lastUpdated": "2017-08-02 17:20:27 UTC"
},
{
"description": "Removes all the guides from selected artboards.",
"owner": "ichik",
"author": "Vadim Mikhnov",
"title": "Remove All Guides",
"name": "RemoveAllGuides",
"appcast": "https://raw.githubusercontent.com/ichik/removeallguides/master/.appcast.xml",
"homepage": "https://github.com/ichik/removeallguides",
"lastUpdated": "2018-10-14 18:34:17 UTC"
},
{
"description": "Sketch 3 plugin that align layers relative to more options.",
"name": "AlignTo",
"title": "Align To",
"author": "Lucien Lee",
"owner": "LucienLee",
"lastUpdated": "2017-12-13 09:49:51 UTC"
},
{
"description": "Sketch Plugin to quickly copy color RGB/HEX values.",
"owner": "mfouquet",
"author": "Michael Fouquet",
"name": "Color-Copier",
"title": "Color Copier",
"lastUpdated": "2018-05-26 15:43:41 UTC"
},
{
"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",
"lastUpdated": "2017-05-06 18:34:12 UTC"
},
{
"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",
"lastUpdated": "2017-03-31 18:31:16 UTC"
},
{
"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",
"lastUpdated": "2016-11-22 19:44:27 UTC"
},
{
"description": "Zeplin Sketch Plugin.",
"owner": "zeplin",
"author": "Zeplin",
"name": "zeplin-sketch-plugin",
"title": "Zeplin",
"homepage": "https://zeplin.io",
"lastUpdated": "2018-06-21 01:30:48 UTC"
},
{
"description": "Smartboards aims to make managing and exporting artboards easier in Sketch.",
"owner": "elihorne",
"author": "Eli Horne",
"name": "smartboards",
"lastUpdated": "2017-06-11 16:53:58 UTC"
},
{
"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",
"lastUpdated": "2017-01-25 18:30:11 UTC"
},
{
"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",
"lastUpdated": "2018-02-01 17:42:23 UTC"
},
{
"description": "Sketch app plugin for displaying Google material design color palette.",
"owner": "t32k",
"name": "material-design-color-palette",
"title": "Material Design Color Palette",
"lastUpdated": "2018-11-28 03:01:12 UTC"
},
{
"description": "Sketch plugin to randomly resize selected elements.",
"owner": "longzheng",
"author": "Long Zheng",
"name": "sketch-randomSize",
"title": "Random Sizing",
"lastUpdated": "2017-03-22 07:10:24 UTC"
},
{
"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",
"lastUpdated": "2017-12-06 18:21:18 UTC"
},
{
"description": "Update a button's label and it gets resized automatically, preserving existing padding.",
"owner": "kenmoore",
"author": "Ken Moore",
"title": "Relabel Button",
"name": "Sketch-Relabel-Button",
"lastUpdated": "2017-07-12 00:33:43 UTC"
},
{
"description": "Pull to center: Move selected shapes or layers toward center of artboard.",
"owner": "delighted",
"author": "Delighted Inc.",
"name": "sketch-pull-to-center",
"title": "Pull to Center",
"lastUpdated": "2018-05-22 20:58:00 UTC"
},
{
"description": "Scale all in place: Resize all selected shapes or layers, in place, from center.",
"owner": "delighted",
"author": "Delighted Inc.",
"title": "Scale All in Place",
"name": "sketch-scale-all-in-place",
"lastUpdated": "2018-05-22 20:54:47 UTC"
},
{
"description": "Upload to CloudApp: Upload the current artboard or page to CloudApp.",
"owner": "delighted",
"author": "Delighted Inc.",
"title": "Upload to CloudApp",
"name": "sketch-upload-to-cloudapp",
"lastUpdated": "2018-05-13 05:36:49 UTC"
},
{
"description": "These plugins will make you best friends with Sketch.",
"owner": "getflourish",
"author": "Florian Schulz",
"title": "Sketch Mate",
"name": "Sketch-Mate",
"lastUpdated": "2018-05-26 15:44:31 UTC"
},
{
"description": "Distribute selection objects vertically or horizontally with a given spacing between them.",
"name": "SketchDistributor",
"author": "Peter Strömberg",
"owner": "PEZ",
"lastUpdated": "2018-05-31 06:23:37 UTC"