-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathindex.html
2371 lines (2371 loc) · 170 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<link href="./web/img/favicon.png" rel="shortcut icon"/>
<meta charset="utf-8"/>
<meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0" name="viewport"/>
<!-- Facebook -->
<meta content="" property="og:url"/>
<meta content="website" property="og:type"/>
<!-- Twitter -->
<meta content="photo" name="twitter:card"/>
<link href="./web/css/web.css" rel="stylesheet" type="text/css"/>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.0/jquery.min.js">
</script>
<script src="https://animaapp.s3.amazonaws.com/launchpad-static/launchpad.js">
</script>
<meta content="AnimaApp.com - Design to code, Automated." name="author">
</meta>
</head>
<body style="margin: 0;
background: rgba(255, 255, 255, 1.0);">
<input id="anPageName" name="page" type="hidden" value="web"/>
<div class="web anima-screen ">
<div class="anima-container-center-horizontal ">
<div anima-show-on-scroll="" class="footer-cta-f9PWUm bp1-anima-animate-enter">
<div class="oodesign-all-right-PqLqqb font-class-3">
oodesign - All rights reserved
</div>
<a href="https://gum.co/mergeduplicatesymbols" target="_blank">
<div class="group-6-M1oMMH anima-smart-layers-pointers ">
<div anima-show-on-scroll="" class="bg-XhlAtk">
</div>
<div class="get-merge-duplicates-a9Dz9D font-class-4">
Get Merge Duplicates
</div>
</div>
</a>
<div class="features-l6wW0T anima-flexbox-container">
<div class="group-5-StsDyw anima-flexbox-container">
<div class="start-merging-t04NLZ font-class-4">
Start merging!
</div>
<div class="time-to-get-rid-of-t-kh0dRp font-class-3">
Time to get rid of those duplicate, inconsistent, and unnecessary symbols, layer styles, and text styles in your design files. Get the plugin and solve it in a breeze!
</div>
</div>
</div>
</div>
</div>
<div anima-show-on-scroll="" class="testimonials-PidrZi bp1-anima-animate-enter1">
<div class="anima-container-center-horizontal ">
<div class="group-2-j5YsQE anima-flexbox-container">
<div class="group-32-8xgpEy anima-flexbox-container">
<div class="group-26-AlQ6fP anima-flexbox-container">
<div class="over-15-000-designer-ihfvdX font-class-4">
Over 15.000 designers keep their files healthy
</div>
<div class="all-of-you-using-thi-Bq9Z0c font-class-3">
All of you using this plugin means a lot to us. We really appreciate this, and the help and feedback you've been kindly giving us.
</div>
<div class="you-are-so-awesome-KWpkGE font-class-3">
You are so awesome! Thanks a lot!
</div>
<div class="logos-dJhJYH anima-flexbox-container">
<div class="auto-flex-cxoqrB anima-flexbox-container">
<div class="amazon-EXVXYd anima-flexbox-container">
<img anima-src="./web/img/[email protected]" class="shape-evetUf" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="/>
<img anima-src="./web/img/[email protected]" class="shape-uR1Obd" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="/>
</div>
<div class="disney-wordmark-DifCO5">
</div>
</div>
<div class="auto-flex1-HCpa5P anima-flexbox-container">
<div class="google-2015-logo-EHI1Kq anima-flexbox-container">
<img anima-src="./web/img/[email protected]" class="path-avXFpn" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="/>
<img anima-src="./web/img/[email protected]" class="shape-kvXYfg" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="/>
<img anima-src="./web/img/[email protected]" class="shape-xPQOu9" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="/>
<img anima-src="./web/img/[email protected]" class="shape-SmyNLm" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="/>
<img anima-src="./web/img/[email protected]" class="path-rMdqQj" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="/>
<img anima-src="./web/img/[email protected]" class="shape-Mv6SiF" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="/>
</div>
<div class="netflix-FVlsUY anima-flexbox-container">
<img anima-src="./web/img/[email protected]" class="shape-uWUEug" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="/>
</div>
</div>
<div class="auto-flex2-8phx90 anima-flexbox-container">
<div class="ms-lMuFpD anima-flexbox-container">
<div class="auto-flex3-xWv91a anima-flexbox-container">
<img anima-src="./web/img/[email protected]" class="fill-1-ppdelP" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="/>
<img anima-src="./web/img/[email protected]" class="fill-16-xXujgu" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="/>
</div>
<div class="auto-flex4-RrruJU anima-flexbox-container">
<img anima-src="./web/img/[email protected]" class="fill-3-dxaloU" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="/>
<img anima-src="./web/img/[email protected]" class="fill-17-s3OH5E" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="/>
</div>
<img anima-src="./web/img/[email protected]" class="fill-6-o2QwgU" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="/>
<img anima-src="./web/img/[email protected]" class="fill-19-tqpHG8" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="/>
<img anima-src="./web/img/[email protected]" class="fill-7-xiBio8" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="/>
<img anima-src="./web/img/[email protected]" class="fill-11-uG5Wy4" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="/>
<img anima-src="./web/img/[email protected]" class="fill-18-mB4q3S" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="/>
<img anima-src="./web/img/[email protected]" class="fill-9-kLuxvU" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="/>
<div class="overlap-group-uoBVHu">
<img anima-src="./web/img/[email protected]" class="fill-15-Dipnny" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="/>
<img anima-src="./web/img/[email protected]" class="fill-4-PSWdEb" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="/>
</div>
</div>
<div class="apple-logo-black-74HqIS">
</div>
</div>
</div>
</div>
</div>
<div class="group-29-euU8L9">
<div class="group-28-copy-9-aXIGsA">
<div class="rectangle-21-UyHdWf">
</div>
<div class="group-27-xTM3xg anima-flexbox-container">
<img anima-src="./web/img/[email protected]" class="oval-3-lNRoWt" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="/>
<div class="bruce-murphy-a9shTN font-class-6">
Bruce Murphy
</div>
</div>
<img anima-src="./web/img/[email protected]" class="shape-Lvm8n0" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="/>
<div class="u201c-i-use-show-trackr-ev-2St4JB font-class-6">
“I use ShowTrackr every day, and it’s awesome! I track all of my TV shows in it. :) “
</div>
<div class="jan-18-2018-vFx1u6 font-class-7">
Jan 18, 2018
</div>
</div>
<div class="stacked-group-DRKomf">
<div class="group-28-WI8NZZ">
<div class="rectangle-21-826Ydl">
</div>
<div class="group-27-Gi3dK7 anima-flexbox-container">
<img anima-src="./web/img/[email protected]" class="oval-3-IeeyjK" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="/>
<div class="joseph-matthews-xPbClJ font-class-6">
Joseph Matthews
</div>
</div>
<img anima-src="./web/img/[email protected]" class="shape-RujXij" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="/>
<div class="i-use-show-trackr-eve-Cv5yxK font-class-2">
This has been a lifesaver plugin!
</div>
<div class="jun-7-2019-jmChrq font-class-2">
Jun 7, 2019
</div>
</div>
<div class="group-28-copy-WQajYP">
<div class="rectangle-21-dvE30X">
</div>
<div class="group-27-Wd4Nig anima-flexbox-container">
<img anima-src="./web/img/[email protected]" class="oval-3-PxpkI9" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="/>
<div class="nina-s-BtH0d3 font-class-5">
Nina S
</div>
</div>
<div class="this-has-been-a-life-Ox8gGQ font-class-3">
Great plugin! Sketch creates duplicates randomly for me, which is very irritating. This plugin saves a lot of time and totally worth the money. :)
</div>
<div class="jun-7-2019-nLc26u font-class-2">
Jun 7, 2019
</div>
</div>
<div class="group-28-copy-2-3IKsxI">
<div class="rectangle-21-ejM3A8">
</div>
<div class="group-27-GDyAYk anima-flexbox-container">
<img anima-src="./web/img/[email protected]" class="oval-3-CrIkZ5" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="/>
<div class="luis-b-D4i237 font-class-5">
Luis B
</div>
</div>
<div class="i-use-show-trackr-eve-Xf9Kwg font-class-2">
Just found this today! It saved me hours of precious time! Works really well.
</div>
<div class="jan-28-2018-AywCLb font-class-2">
Jan 28, 2018
</div>
</div>
<div class="group-28-copy-3-ACD79R">
<div class="rectangle-21-aKBwiu">
</div>
<div class="group-27-Lodxq2 anima-flexbox-container">
<img anima-src="./web/img/[email protected]" class="oval-3-wAxTXT" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="/>
<div class="varun-y-xPyZ0S font-class-5">
Varun Y
</div>
</div>
<div class="you-u2019ve-just-saved-co-aMvv2v font-class-2">
You’ve just saved countless hours for me. Sketch kept duplicating symbols for no reason. Kudos!
</div>
<div class="aug-25-2017-z32xry font-class-2">
Aug 25, 2017
</div>
</div>
<div class="group-28-copy-3-EKPumx">
<div class="rectangle-21-B3VnAm">
</div>
<div class="group-27-xLLaGX anima-flexbox-container">
<img anima-src="./web/img/[email protected]" class="oval-3-fGaB5g" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="/>
<div class="mario-r-6W6KE5 font-class-5">
Mario R
</div>
</div>
<div class="show-trackr-is-a-real-9U8jla font-class-2">
This is awesome!!! Thank you so much!!!!
</div>
<div class="jan-18-2018-NGHaPH font-class-2">
Jan 18, 2018
</div>
</div>
</div>
</div>
<div class="group-30-x02agA">
<div class="stacked-group-EbzJaK">
<div class="group-28-copy-8-bbiOux">
<div class="rectangle-21-maeYug">
</div>
<div class="group-27-M8uzlb anima-flexbox-container">
<img anima-src="./web/img/[email protected]" class="oval-3-2zOz5Q" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="/>
<div class="andrew-cook-Hpxs9f font-class-6">
Andrew Cook
</div>
</div>
<img anima-src="./web/img/[email protected]" class="shape-045x4e" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="/>
<div class="u201c-i-use-show-trackr-ev-dtCO4z font-class-6">
“I use ShowTrackr every day, and it’s awesome! I track all of my TV shows in it. :) “
</div>
<div class="jan-18-2018-Ko3B8H font-class-7">
Jan 18, 2018
</div>
</div>
<div class="group-28-copy-4-Zffzhx">
<div class="rectangle-21-xtRCxL">
</div>
<div class="group-27-IDs2Ny anima-flexbox-container">
<img anima-src="./web/img/[email protected]" class="oval-3-9a19Kh" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="/>
<div class="julia-w-wC1Z3t font-class-5">
Julia W
</div>
</div>
<div class="oh-thank-you-guys-7nxoXO font-class-2">
Oh, thank you guys, I’ve been suffering this issue for more than a year. I’ve just installed the plugin, it works perfectly! I’ve removed a bunch of duplicates, such a stunning thing you made :]
</div>
<div class="sep-24-2018-QfkrbZ font-class-2">
Sep 24, 2018
</div>
</div>
<div class="group-28-copy-5-60T5xh">
<div class="rectangle-21-4Qtzd4">
</div>
<div class="group-27-PxSBL8 anima-flexbox-container">
<img anima-src="./web/img/[email protected]" class="oval-3-Rv0AZo" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="/>
<div class="duncan-b-mOiXsY font-class-5">
Duncan B
</div>
</div>
<div class="i-use-show-trackr-eve-HoLish font-class-2">
Thank you, thank you, thank you! This has been a huge issue for me in my workflow.
</div>
<div class="aug-10-2017-DpqNFb font-class-2">
Aug 10, 2017
</div>
</div>
<div class="group-28-copy-6-k7yxn6">
<div class="rectangle-21-4mV1Tj">
</div>
<div class="group-27-e3O2uh anima-flexbox-container">
<img anima-src="./web/img/[email protected]" class="oval-3-ft5WTS" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="/>
<div class="kelsey-b-JLg60K font-class-5">
Kelsey B
</div>
</div>
<div class="this-plugin-has-save-njIGYk font-class-2">
This plugin has saved me so much time and effort! It really helps to keep things nice and tidy, so THANK YOU!
</div>
<div class="aug-17-2018-X1LpxD font-class-2">
Aug 17, 2018
</div>
</div>
<div class="group-28-copy-7-CN4HLt">
<div class="rectangle-21-Fetp9c">
</div>
<div class="group-27-luv1Tl anima-flexbox-container">
<img anima-src="./web/img/[email protected]" class="oval-3-5bChcM" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="/>
<div class="nam-d-ZxQGI1 font-class-5">
Nam D
</div>
</div>
<div class="u201c-i-use-show-trackr-ev-Y0F3bt font-class-2">
This is a gift from God. Thank you for the plugin
</div>
<div class="jan-18-2018-MriwbD font-class-7">
Jan 18, 2018
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="anima-container-center-horizontal ">
<div anima-show-on-scroll="" class="merge-text-styles-LdNlbP bp1-anima-animate-enter5" id="None">
<div class="gif-dFqshM">
<img anima-src="./web/img/MergeTextStyles.gif" height="100%" src="" width="100%"/>
</div>
<div class="stacked-group-s1tJrU anima-flexbox-container">
<div class="keypoint-xUbPVV anima-flexbox-container">
<img anima-src="./web/img/[email protected]" class="oval-n3OeYP" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="/>
</div>
<div class="including-or-not-u-sACDix font-class-1">
Including (or not, up to you) external libraries styles
</div>
</div>
<div class="stacked-group-w0tX37 anima-flexbox-container">
<div class="keypoint-phl7tG anima-flexbox-container">
<img anima-src="./web/img/[email protected]" class="oval-4chuCZ" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="/>
</div>
<div class="replaces-style-on-in-bVbXSm font-class-1">
Replaces style on instances and overrides
</div>
</div>
<a href="http://bit.ly/mergeduplicatestyles" target="_blank">
<div class="group-7-etnQty anima-smart-layers-pointers ">
<div class="read-on-medium-bZ2ZxU font-class-5">
Read on Medium
</div>
<img anima-src="./web/img/[email protected]" class="rectangle-8-zWJxVX" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="/>
</div>
</a>
<a href="https://youtu.be/YlgawrWV3xQ" target="_blank">
<div anima-show-on-scroll="" class="stacked-group-GhyO5h bp1-anima-animate-enter2 anima-smart-layers-pointers ">
<div class="merge-similar-text-s-aHFfm2 font-class-1">
Merge similar text styles
</div>
<div class="keypoint-nmPFpi anima-flexbox-container">
<img anima-src="./web/img/[email protected]" class="path-2-WUdTmq" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="/>
</div>
</div>
</a>
<a href="https://youtu.be/z3T-J2vXmbU" target="_blank">
<div anima-show-on-scroll="" class="stacked-group-KRaS96 bp1-anima-animate-enter3 anima-smart-layers-pointers ">
<div class="merge-selected-text-GswVbf font-class-1">
Merge selected text styles
</div>
<div class="keypoint-SRBluo anima-flexbox-container">
<img anima-src="./web/img/[email protected]" class="path-2-6DR7tF" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="/>
</div>
</div>
</a>
<a href="https://youtu.be/lyOYceDZh8Y" target="_blank">
<div anima-show-on-scroll="" class="stacked-group-1SUWHd bp1-anima-animate-enter4 anima-smart-layers-pointers ">
<div class="merge-duplicate-text-bNired font-class-1">
Merge duplicate text styles (with the same name)
</div>
<div class="keypoint-tSYsSi anima-flexbox-container">
<img anima-src="./web/img/[email protected]" class="path-2-WnlkiM" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="/>
</div>
</div>
</a>
<div class="find-duplicate-text-xzXsXk font-class-3">
Find duplicate text styles and decide which one is the good one. Merge Duplicates will remove the discarded ones and assign the good style to all instances and overrides.<br /><br />Find also similar styles and blend them together. Choose which attributes should be used to compare styles, and if you have a match… merge it!
</div>
<div class="merge-text-styles-7uT9Xi font-class-4">
Merge Text Styles
</div>
</div>
</div>
<div class="anima-container-center-horizontal ">
<div anima-show-on-scroll="" class="merge-layer-styles-VD9XU4 bp1-anima-animate-enter9" id="None">
<div class="gif-jrLO9J">
<img anima-src="./web/img/MergeLayerStyles.gif" height="100%" src="" width="100%"/>
</div>
<div class="stacked-group-l8XC8H anima-flexbox-container">
<div class="group-3-E5gjx6 anima-flexbox-container">
<img anima-src="./web/img/[email protected]" class="oval-UU4Mtx" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="/>
</div>
<div class="including-or-not-u-gUAP9k font-class-1">
Including (or not, up to you) external libraries styles
</div>
</div>
<div class="stacked-group-AnmBh5 anima-flexbox-container">
<div class="keypoint-wzm345 anima-flexbox-container">
<img anima-src="./web/img/[email protected]" class="oval-fjtPXs" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="/>
</div>
<div class="replaces-style-on-in-ag4BxA font-class-1">
Replaces style on instances and overrides
</div>
</div>
<a href="http://bit.ly/mergeduplicatestyles" target="_blank">
<div class="read-more-ZGAKMj anima-smart-layers-pointers ">
<div class="read-on-medium-FdG8XG font-class-5">
Read on Medium
</div>
<img anima-src="./web/img/[email protected]" class="rectangle-8-RImxot" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="/>
</div>
</a>
<a href="https://youtu.be/MR6jc8S90vk" target="_blank">
<div anima-show-on-scroll="" class="stacked-group-2td4Sn bp1-anima-animate-enter6 anima-smart-layers-pointers ">
<div class="merge-similar-layer-sFE91P font-class-1">
Merge similar layer styles
</div>
<div class="keypoint-R5IIav anima-flexbox-container">
<img anima-src="./web/img/[email protected]" class="path-2-r3QxMK" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="/>
</div>
</div>
</a>
<a href="https://youtu.be/7XofApSc6sU" target="_blank">
<div anima-show-on-scroll="" class="stacked-group-m0AxhX bp1-anima-animate-enter7 anima-smart-layers-pointers ">
<div class="merge-selected-layer-xxNfWi font-class-1">
Merge selected layer styles
</div>
<div class="keypoint-zIYj6A anima-flexbox-container">
<img anima-src="./web/img/[email protected]" class="path-2-6BNQMn" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="/>
</div>
</div>
</a>
<a href="https://youtu.be/JbOXRJ6A3Ow" target="_blank">
<div anima-show-on-scroll="" class="stacked-group-CPl2Tx bp1-anima-animate-enter8 anima-smart-layers-pointers ">
<div class="merge-duplicate-laye-qjp4mH font-class-1">
Merge duplicate layer styles (with the same name)
</div>
<div class="keypoint-xe6R2x anima-flexbox-container">
<img anima-src="./web/img/[email protected]" class="path-2-2m5z1o" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="/>
</div>
</div>
</a>
<div class="find-duplicate-layer-Q23BSC font-class-3">
Find duplicate layer styles and decide which one is the good one. Merge Duplicates will remove the discarded ones and assign the good style to all instances and overrides.<br /><br />Find also similar styles and blend them together. Choose which attributes should be used to compare styles, and if you have a match… merge it!
</div>
<a href="https://vimeo.com/5164733" target="_blank">
<div class="merge-layer-styles-dprkJD font-class-4">
Merge Layer Styles
</div>
</a>
</div>
</div>
<div class="anima-container-center-horizontal ">
<div anima-show-on-scroll="" class="merge-duplicate-symbols-72SZDu bp1-anima-animate-enter12" id="None">
<div class="gif-N8IE9w">
<img anima-src="./web/img/MergeSymbols.gif" height="100%" src="" width="100%"/>
</div>
<a href="http://bit.ly/mergesymbolsinsketch" target="_blank">
<div class="read-more-e4orIx anima-smart-layers-pointers ">
<div class="read-on-medium-xPKAYI font-class-5">
Read on Medium
</div>
<img anima-src="./web/img/[email protected]" class="rectangle-8-TaGRR5" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="/>
</div>
</a>
<div class="stacked-group-ExyhyK anima-flexbox-container">
<div class="group-3-658tzq anima-flexbox-container">
<div class="keypoint-iD6Qc7 anima-flexbox-container">
<img anima-src="./web/img/[email protected]" class="oval-j1DmZA" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="/>
</div>
</div>
<div class="including-or-not-u-qRFZeF font-class-1">
Including (or not, up to you) external libraries
</div>
</div>
<div class="stacked-group-h52ugs anima-flexbox-container">
<div class="group-3-mPqJ0E anima-flexbox-container">
<div class="keypoint-0ebtbB anima-flexbox-container">
<img anima-src="./web/img/[email protected]" class="oval-VLB3la" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="/>
</div>
</div>
<div class="keeps-overrides-whe-joguIx font-class-1">
Keeps overrides (when possible)
</div>
</div>
<a href="https://youtu.be/63JcOyidF7w" target="_blank">
<div anima-show-on-scroll="" class="stacked-group-4LDths bp1-anima-animate-enter10 anima-smart-layers-pointers ">
<div class="merge-selected-symbo-TqOGSK font-class-1">
Merge selected symbols
</div>
<div class="group-3-fHqXhs anima-flexbox-container">
<div class="play-UWVVu7 anima-flexbox-container">
<img anima-src="./web/img/[email protected]" class="path-2-2kpMBg" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="/>
</div>
</div>
</div>
</a>
<a href="https://youtu.be/TY-nAs_FKLk" target="_blank">
<div anima-show-on-scroll="" class="stacked-group-GPNoxd bp1-anima-animate-enter11 anima-smart-layers-pointers ">
<div class="merge-duplicate-symb-gQxXnx font-class-1">
Merge duplicate symbols (with the same name)
</div>
<div class="group-3-jQaxdw anima-flexbox-container">
<div class="play-0CgR16 anima-flexbox-container">
<img anima-src="./web/img/[email protected]" class="path-2-P48VLa" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="/>
</div>
</div>
</div>
</a>
<div class="merge-duplicates-wil-LcxZGb font-class-3">
Merge Duplicates will find automatically duplicate symbols and ask you what to do with them. Choose the one you want to keep and hit Merge. <br /><br />The other symbols will be removed, and all of their instances will be replaced by the one you chose to keep, keeping overrides whenever it is possible.
</div>
<div class="merge-duplicate-symb-HFv5Vh font-class-4">
Merge Duplicate Symbols
</div>
</div>
</div>
<div class="anima-container-center-horizontal ">
<div anima-show-on-scroll="" class="features-jh9SBx bp1-anima-animate-enter13">
<div class="keep-your-sketch-files-clean-fZSpk0 anima-flexbox-container">
<div class="keep-your-sketch-fil-rADSjb font-class-4">
Keep your Sketch files clean
</div>
<div class="you-have-duplicate-pPg8Li font-class-3">
You have duplicate, inconsistent, and unnecessary symbols, layer styles, and text styles in your design, and you know it
</div>
<div class="overlap-group-GAFLoI">
<img anima-src="./web/img/web-rectangle-9.png" class="rectangle-luqOUs" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="/>
<div class="rectangle-qUtRtW">
<iframe allowfullscreen="allowfullscreen" anima-src="https://player.vimeo.com/video/394637295" height="100%" mozallowfullscreen="mozallowfullscreen" msallowfullscreen="msallowfullscreen" oallowfullscreen="oallowfullscreen" src="" style="border: 0; pointer-events: auto;" webkitallowfullscreen="webkitallowfullscreen" width="100%">
</iframe>
</div>
</div>
</div>
</div>
</div>
<div class="anima-container-center-horizontal ">
<div class="hero-bg-kFBlUT anima-flexbox-container">
<img anima-src="./web/img/[email protected]" class="rectangle-6-t4tRBJ" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="/>
<div class="overlap-group1-RAUCIM">
<img anima-src="./web/img/web-rectangle-5-copy.png" class="rectangle-5-copy-2CRfqf" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="/>
<img anima-src="./web/img/web-rectangle-5-1.png" class="rectangle-5-O3Utly" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="/>
</div>
</div>
</div>
<div class="anima-container-center-horizontal ">
<div anima-show-on-scroll="" class="hero-WTGkGi bp1-anima-animate-enter14">
<div class="content-GQFmi3 anima-flexbox-container">
<div class="merge-duplicates-LN0lia font-class-4">
Merge Duplicates
</div>
<div class="get-rid-of-duplicate-Dx345q font-class-3">
Get rid of duplicate and inconsistent symbols and styles in a breeze.
</div>
<div class="auto-flex-8EiNpE anima-flexbox-container">
<a href="https://gum.co/mergeduplicatesymbols" target="_blank">
<div class="cta-a4YIWT anima-smart-layers-pointers ">
<div class="bg-rnd8Fr">
</div>
<div class="get-merge-duplicates-eGBzyN font-class-4">
Get Merge Duplicates
</div>
</div>
</a>
<a href="https://github.com/oodesign/merge-duplicate-symbols" target="_blank">
<div class="try-it-aE2OlI anima-smart-layers-pointers ">
<div class="bg-7Ipy5v">
</div>
<div class="try-it-for-free-x49jzf font-class-4">
Try it for free
</div>
</div>
</a>
</div>
</div>
</div>
</div>
<div class="navigation-umYMIO anima-flexbox-container">
<div class="anima-container-center-horizontal ">
<div class="main-bar-xUQz22">
<a href="https://gum.co/mergeduplicatesymbols" target="_blank">
<div class="cta-g4q9ss anima-smart-layers-pointers ">
<div class="rectangle-2-0cfyxi">
</div>
<div class="get-merge-duplicates-MTRbJx font-class-4">
Get Merge Duplicates
</div>
</div>
</a>
<div class="main-bar-xlmNaX">
<div class="logo-As5JfF">
</div>
<div class="stacked-group-AGsJEg">
<a href="#anchor1">
<div class="symbols-5h55Fl anima-smart-layers-pointers ">
<div class="symbols-xJABrf font-class-3">
Symbols
</div>
</div>
</a>
<a href="#anchor2">
<div class="layer-styles-8xaNTg anima-smart-layers-pointers ">
<div class="layer-styles-GfkZfl font-class-3">
Layer styles
</div>
</div>
</a>
<a href="#anchor3">
<div class="text-styles-VchLay anima-smart-layers-pointers ">
<div class="text-styles-xzajpj font-class-3">
Text styles
</div>
</div>
</a>
<a href="https://github.com/oodesign/merge-duplicate-symbols/issues" target="_blank">
<div class="support-A7247J anima-smart-layers-pointers ">
<div class="support-CY29aM font-class-3">
Support
</div>
</div>
</a>
</div>
</div>
</div>
</div>
</div>
<div class="anchor1-KyeGWM" id="anchor1">
</div>
<div class="anchor2-HBxBSK" id="anchor2">
</div>
<div class="anchor3-jRWRKd" id="anchor3">
</div>
</div>
<div class="tablet anima-screen ">
<div class="anima-container-center-horizontal ">
<div anima-show-on-scroll="" class="footer-cta-f9PWUm bp4-anima-animate-enter">
<div class="oodesign-all-right-PqLqqb font-class-3">
oodesign - All rights reserved
</div>
<a href="https://gum.co/mergeduplicatesymbols" target="_blank">
<div class="group-6-M1oMMH anima-smart-layers-pointers ">
<div anima-show-on-scroll="" class="bg-XhlAtk">
</div>
<div class="get-merge-duplicates-a9Dz9D font-class-4">
Get Merge Duplicates
</div>
</div>
</a>
<div class="features-l6wW0T anima-flexbox-container">
<div class="group-5-StsDyw anima-flexbox-container">
<div class="start-merging-t04NLZ font-class-4">
Start merging!
</div>
<div class="time-to-get-rid-of-t-kh0dRp font-class-3">
Time to get rid of those duplicate, inconsistent, and unnecessary symbols, layer styles, and text styles in your design files. Get the plugin and solve it in a breeze!
</div>
</div>
</div>
</div>
</div>
<div anima-show-on-scroll="" class="testimonials-PidrZi bp4-anima-animate-enter1">
<div class="anima-container-center-horizontal ">
<div class="group-2-j5YsQE anima-flexbox-container">
<div class="overlap-group-YdC1bV">
<div class="group-32-8Yf6Db anima-flexbox-container">
<div class="group-26-IZnmmX anima-flexbox-container">
<div class="over-15-000-designer-KyMEd2 font-class-4">
Over 15.000 designers keep their files healthy
</div>
<div class="all-of-you-using-thi-K7gyKH font-class-3">
All of you using this plugin means a lot to us. We really appreciate this, and the help and feedback you've been kindly giving us.
</div>
<div class="you-are-so-awesome-mZmOSq font-class-3">
You are so awesome! Thanks a lot!
</div>
<div class="logos-uSft7x anima-flexbox-container">
<div class="auto-flex-tb7B22 anima-flexbox-container">
<div class="amazon-uTVew2 anima-flexbox-container">
<img anima-src="./web/img/[email protected]" class="shape-XhxiVR" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="/>
<img anima-src="./web/img/[email protected]" class="shape-lWwk0Z" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="/>
</div>
<div class="disney-wordmark-nDDVxB">
</div>
</div>
<div class="auto-flex1-5Er7ek anima-flexbox-container">
<div class="google-2015-logo-Ajdlcl anima-flexbox-container">
<img anima-src="./web/img/[email protected]" class="path-xvMijT" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="/>
<img anima-src="./web/img/[email protected]" class="shape-1xbtxK" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="/>
<img anima-src="./web/img/[email protected]" class="shape-wzQtJd" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="/>
<img anima-src="./web/img/[email protected]" class="shape-b6Zs2s" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="/>
<img anima-src="./web/img/[email protected]" class="path-Q3FnRT" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="/>
<img anima-src="./web/img/[email protected]" class="shape-cuFWTs" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="/>
</div>
<div class="netflix-EuaqRe anima-flexbox-container">
<img anima-src="./web/img/[email protected]" class="shape-fylKcT" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="/>
</div>
</div>
<div class="auto-flex2-5W1kLW anima-flexbox-container">
<div class="ms-yzJSZY anima-flexbox-container">
<div class="auto-flex3-bzw71b anima-flexbox-container">
<img anima-src="./web/img/[email protected]" class="fill-1-TlAuat" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="/>
<img anima-src="./web/img/[email protected]" class="fill-16-rHB4Rz" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="/>
</div>
<div class="auto-flex4-89CqYX anima-flexbox-container">
<img anima-src="./web/img/[email protected]" class="fill-3-QLzUgG" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="/>
<img anima-src="./web/img/[email protected]" class="fill-17-sfU9y3" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="/>
</div>
<img anima-src="./web/img/[email protected]" class="fill-6-guoQxZ" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="/>
<img anima-src="./web/img/[email protected]" class="fill-19-X914jr" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="/>
<img anima-src="./web/img/[email protected]" class="fill-7-pxnnPB" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="/>
<img anima-src="./web/img/[email protected]" class="fill-11-hEOxL6" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="/>
<img anima-src="./web/img/[email protected]" class="fill-18-O4YPQK" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="/>
<img anima-src="./web/img/[email protected]" class="fill-9-BITGu1" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="/>
<div class="overlap-group1-gAttiq">
<img anima-src="./web/img/[email protected]" class="fill-15-CXN23x" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="/>
<img anima-src="./web/img/[email protected]" class="fill-4-4sNmwk" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="/>
</div>
</div>
<div class="apple-logo-black-xrubhf">
</div>
</div>
</div>
</div>
</div>
<div class="group-29-hJdYhA">
<div class="group-28-copy-9-MOTkrx">
<div class="rectangle-21-xGSbLe">
</div>
<div class="group-27-yTxst7 anima-flexbox-container">
<img anima-src="./web/img/[email protected]" class="oval-3-nrYFPt" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="/>
<div class="bruce-murphy-HDu77Z font-class-6">
Bruce Murphy
</div>
</div>
<img anima-src="./web/img/[email protected]" class="shape-ckA3El" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="/>
<div class="u201c-i-use-show-trackr-ev-tGvc4D font-class-6">
“I use ShowTrackr every day, and it’s awesome! I track all of my TV shows in it. :) “
</div>
<div class="jan-18-2018-IckyfG font-class-7">
Jan 18, 2018
</div>
</div>
<div class="stacked-group-iCgRS1">
<div class="group-28-txxZRG">
<div class="rectangle-21-rbPDca">
</div>
<div class="group-27-ntn8rq anima-flexbox-container">
<img anima-src="./web/img/[email protected]" class="oval-3-qzJZ4M" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="/>
<div class="joseph-matthews-HJ506e font-class-6">
Joseph Matthews
</div>
</div>
<img anima-src="./web/img/[email protected]" class="shape-N7HQeH" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="/>
<div class="i-use-show-trackr-eve-DGLzfN font-class-2">
This has been a lifesaver plugin!
</div>
<div class="jun-7-2019-jYAe2T font-class-2">
Jun 7, 2019
</div>
</div>
<div class="group-28-copy-xpcjx4">
<div class="rectangle-21-7mV6W2">
</div>
<div class="group-27-Si1UsC anima-flexbox-container">
<img anima-src="./web/img/[email protected]" class="oval-3-UW0Yxn" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="/>
<div class="nina-s-cDxpc9 font-class-5">
Nina S
</div>
</div>
<div class="this-has-been-a-life-lqTPjU font-class-3">
Great plugin! Sketch creates duplicates randomly for me, which is very irritating. This plugin saves a lot of time and totally worth the money. :)
</div>
<div class="jun-7-2019-BsEuqS font-class-2">
Jun 7, 2019
</div>
</div>
<div class="group-28-copy-2-nWSPgs">
<div class="rectangle-21-E1plsn">
</div>
<div class="group-27-y1e5aN anima-flexbox-container">
<img anima-src="./web/img/[email protected]" class="oval-3-Jqlb1a" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="/>
<div class="luis-b-alygC9 font-class-5">
Luis B
</div>
</div>
<div class="i-use-show-trackr-eve-OzSJ0n font-class-2">
Just found this today! It saved me hours of precious time! Works really well.
</div>
<div class="jan-28-2018-uWRxUC font-class-2">
Jan 28, 2018
</div>
</div>
<div class="group-28-copy-3-M06Ur9">
<div class="rectangle-21-O4qMBm">
</div>
<div class="group-27-i0cJSG anima-flexbox-container">
<img anima-src="./web/img/[email protected]" class="oval-3-Y2fiua" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="/>
<div class="varun-y-2N8wcy font-class-5">
Varun Y
</div>
</div>
<div class="you-u2019ve-just-saved-co-jzTQIw font-class-2">
You’ve just saved countless hours for me. Sketch kept duplicating symbols for no reason. Kudos!
</div>
<div class="aug-25-2017-iXxg0D font-class-2">
Aug 25, 2017
</div>
</div>
<div class="group-28-copy-3-0PxXi1">
<div class="rectangle-21-yiNXd7">
</div>
<div class="group-27-XzxGxP anima-flexbox-container">
<img anima-src="./web/img/[email protected]" class="oval-3-vO0LfR" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="/>
<div class="mario-r-xshXiT font-class-5">
Mario R
</div>
</div>
<div class="show-trackr-is-a-real-nohRYY font-class-2">
This is awesome!!! Thank you so much!!!!
</div>
<div class="jan-18-2018-4JWzUD font-class-2">
Jan 18, 2018
</div>
</div>
</div>
</div>
</div>
<div class="group-30-x02agA">
<div class="stacked-group-EbzJaK">
<div class="group-28-copy-8-bbiOux">
<div class="rectangle-21-maeYug">
</div>
<div class="group-27-M8uzlb anima-flexbox-container">
<img anima-src="./web/img/[email protected]" class="oval-3-2zOz5Q" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="/>
<div class="andrew-cook-Hpxs9f font-class-6">
Andrew Cook
</div>
</div>
<img anima-src="./web/img/[email protected]" class="shape-045x4e" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="/>
<div class="u201c-i-use-show-trackr-ev-dtCO4z font-class-6">
“I use ShowTrackr every day, and it’s awesome! I track all of my TV shows in it. :) “
</div>
<div class="jan-18-2018-Ko3B8H font-class-7">
Jan 18, 2018
</div>
</div>
<div class="group-28-copy-4-Zffzhx">
<div class="rectangle-21-xtRCxL">
</div>
<div class="group-27-IDs2Ny anima-flexbox-container">
<img anima-src="./web/img/[email protected]" class="oval-3-9a19Kh" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="/>
<div class="julia-w-wC1Z3t font-class-5">
Julia W
</div>
</div>
<div class="oh-thank-you-guys-7nxoXO font-class-2">
Oh, thank you guys, I’ve been suffering this issue for more than a year. I’ve just installed the plugin, it works perfectly! I’ve removed a bunch of duplicates, such a stunning thing you made :]
</div>
<div class="sep-24-2018-QfkrbZ font-class-2">
Sep 24, 2018
</div>
</div>
<div class="group-28-copy-5-60T5xh">
<div class="rectangle-21-4Qtzd4">
</div>
<div class="group-27-PxSBL8 anima-flexbox-container">
<img anima-src="./web/img/[email protected]" class="oval-3-Rv0AZo" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="/>
<div class="duncan-b-mOiXsY font-class-5">
Duncan B
</div>
</div>
<div class="i-use-show-trackr-eve-HoLish font-class-2">
Thank you, thank you, thank you! This has been a huge issue for me in my workflow.
</div>
<div class="aug-10-2017-DpqNFb font-class-2">
Aug 10, 2017
</div>
</div>
<div class="group-28-copy-6-k7yxn6">
<div class="rectangle-21-4mV1Tj">
</div>
<div class="group-27-e3O2uh anima-flexbox-container">
<img anima-src="./web/img/[email protected]" class="oval-3-ft5WTS" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="/>
<div class="kelsey-b-JLg60K font-class-5">
Kelsey B
</div>
</div>
<div class="this-plugin-has-save-njIGYk font-class-2">
This plugin has saved me so much time and effort! It really helps to keep things nice and tidy, so THANK YOU!
</div>
<div class="aug-17-2018-X1LpxD font-class-2">
Aug 17, 2018
</div>
</div>
<div class="group-28-copy-7-CN4HLt">
<div class="rectangle-21-Fetp9c">
</div>
<div class="group-27-luv1Tl anima-flexbox-container">
<img anima-src="./web/img/[email protected]" class="oval-3-5bChcM" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="/>
<div class="nam-d-ZxQGI1 font-class-5">
Nam D
</div>
</div>
<div class="u201c-i-use-show-trackr-ev-Y0F3bt font-class-2">
This is a gift from God. Thank you for the plugin
</div>
<div class="jan-18-2018-MriwbD font-class-7">
Jan 18, 2018
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="anima-container-center-horizontal ">
<div anima-show-on-scroll="" class="merge-text-styles-LdNlbP bp4-anima-animate-enter5" id="None">
<div class="gif-dFqshM">
<img anima-src="./web/img/MergeTextStyles.gif" height="100%" src="" width="100%"/>
</div>
<div class="stacked-group-s1tJrU anima-flexbox-container">
<div class="keypoint-xUbPVV anima-flexbox-container">
<img anima-src="./web/img/[email protected]" class="oval-n3OeYP" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="/>
</div>
<div class="replaces-style-on-in-WxXHFU font-class-1">
Replaces style on instances and overrides
</div>
</div>
<a href="http://bit.ly/mergeduplicatestyles" target="_blank">
<div class="group-7-etnQty anima-smart-layers-pointers ">
<div class="read-on-medium-bZ2ZxU font-class-5">
Read on Medium
</div>
<img anima-src="./web/img/[email protected]" class="rectangle-8-zWJxVX" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="/>
</div>
</a>
<div class="stacked-group-w0tX37 anima-flexbox-container">
<div class="keypoint-phl7tG anima-flexbox-container">
<img anima-src="./web/img/[email protected]" class="oval-4chuCZ" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="/>
</div>
<div class="including-or-not-u-3rgR1x font-class-1">
Including (or not, up to you) external libraries styles
</div>
</div>
<a href="https://youtu.be/YlgawrWV3xQ" target="_blank">
<div anima-show-on-scroll="" class="stacked-group-GhyO5h bp4-anima-animate-enter2 anima-smart-layers-pointers ">
<div class="merge-similar-text-s-aHFfm2 font-class-1">
Merge similar text styles
</div>
<div class="keypoint-nmPFpi anima-flexbox-container">
<img anima-src="./web/img/[email protected]" class="path-2-WUdTmq" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="/>
</div>
</div>
</a>
<a href="https://youtu.be/z3T-J2vXmbU" target="_blank">
<div anima-show-on-scroll="" class="stacked-group-KRaS96 bp4-anima-animate-enter3 anima-smart-layers-pointers ">
<div class="merge-selected-text-GswVbf font-class-1">
Merge selected text styles
</div>
<div class="keypoint-SRBluo anima-flexbox-container">
<img anima-src="./web/img/[email protected]" class="path-2-6DR7tF" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="/>
</div>
</div>
</a>
<a href="https://youtu.be/lyOYceDZh8Y" target="_blank">
<div anima-show-on-scroll="" class="stacked-group-1SUWHd bp4-anima-animate-enter4 anima-smart-layers-pointers ">
<div class="merge-duplicate-text-bNired font-class-1">
Merge duplicate text styles (with the same name)
</div>
<div class="keypoint-tSYsSi anima-flexbox-container">
<img anima-src="./web/img/[email protected]" class="path-2-WnlkiM" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="/>
</div>
</div>
</a>
<div class="find-duplicate-text-xzXsXk font-class-3">
Find duplicate text styles and decide which one is the good one. Merge Duplicates will remove the discarded ones and assign the good style to all instances and overrides.<br /><br />Find also similar styles and blend them together. Choose which attributes should be used to compare styles, and if you have a match… merge it!
</div>
<div class="merge-text-styles-7uT9Xi font-class-4">
Merge Text Styles
</div>
</div>
</div>
<div class="anima-container-center-horizontal ">
<div anima-show-on-scroll="" class="merge-layer-styles-VD9XU4 bp4-anima-animate-enter9" id="None">
<div class="gif-jrLO9J">
<img anima-src="./web/img/MergeLayerStyles.gif" height="100%" src="" width="100%"/>
</div>
<div class="stacked-group-l8XC8H anima-flexbox-container">
<div class="group-3-E5gjx6 anima-flexbox-container">
<img anima-src="./web/img/[email protected]" class="oval-UU4Mtx" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="/>
</div>
<div class="including-or-not-u-gUAP9k font-class-1">
Including (or not, up to you) external libraries styles
</div>
</div>
<div class="stacked-group-AnmBh5 anima-flexbox-container">
<div class="keypoint-wzm345 anima-flexbox-container">
<img anima-src="./web/img/[email protected]" class="oval-fjtPXs" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="/>
</div>
<div class="replaces-style-on-in-ag4BxA font-class-1">
Replaces style on instances and overrides
</div>
</div>
<a href="http://bit.ly/mergeduplicatestyles" target="_blank">
<div class="read-more-ZGAKMj anima-smart-layers-pointers ">
<div class="read-on-medium-FdG8XG font-class-5">
Read on Medium
</div>
<img anima-src="./web/img/[email protected]" class="rectangle-8-RImxot" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="/>
</div>
</a>
<a href="https://youtu.be/MR6jc8S90vk" target="_blank">
<div anima-show-on-scroll="" class="stacked-group-2td4Sn bp4-anima-animate-enter6 anima-smart-layers-pointers ">
<div class="merge-similar-layer-sFE91P font-class-1">