forked from alcatraz/alcatraz-packages
-
Notifications
You must be signed in to change notification settings - Fork 0
/
packages.json
executable file
·1701 lines (1701 loc) · 86.9 KB
/
packages.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
{
"packages": {
"plugins": [
{
"name": "ROTools",
"url": "https://github.com/rongl/ROTools",
"description": "ROTools For Xcode 7 Plugin ( AppIcon Maker, Import Icons, New Group ) ",
"screenshot": "https://raw.githubusercontent.com/rongl/ROTools/master/use.gif"
},
{
"name": "LigatureXcodePlugin",
"url": "https://github.com/robertvojta/LigatureXcodePlugin",
"description": "Enable default or all ligatures.",
"screenshot": "https://cloud.githubusercontent.com/assets/1084172/9930947/961becfe-5d37-11e5-8261-3fa90cb0851f.png"
},
{
"name": "Distraction free mode - ZEN",
"url": "https://github.com/wczekalski/Distraction-Free-Xcode-plugin",
"description": "Distraction free mode, whenever you want to focus code.",
"screenshot": "https://github.com/wczekalski/Distraction-Free-Xcode-plugin/blob/master/ZEN.png"
},
{
"name": "UnTrashed-Files",
"url": "https://github.com/muthuselvamlms/UnTrashed-Files",
"description": "This Xcode Plugin Will Identify the untrashed Files in Currently opened Project.",
"screenshot": "https://raw.githubusercontent.com/muthuselvamlms/UnTrashed-Files/master/unwanted_file_remover/ss.png"
},
{
"name": "RealmBrowser",
"url": "https://github.com/kittinunf/RealmBrowser-Plugin",
"description": "Open Realm Browser for your simulator without pain",
"screenshot": "https://raw.githubusercontent.com/kittinunf/RealmBrowser-Plugin/master/art/ss.png"
},
{
"name": "SymbolicationPlugin",
"url": "https://github.com/MaheshRS/symbolication-plugin",
"description": "Plugin for symbolicating crashes, fetching details of the application binary.",
"screenshot": "https://raw.githubusercontent.com/MaheshRS/symbolication-plugin/master/screenshots/Symbolicate_screen.png"
},
{
"name": "ApplicationSupport",
"url": "https://github.com/knutigro/Xcode-Plugin-Application-Support",
"description": "Adds a new MenuItem for opening Application Support Folder."
},
{
"name": "SwiftCodeSnippets",
"url": "https://github.com/CodeEagle/SwiftCodeSnippets",
"description": "AutoDownload Swift Code Snippets",
"screenshot": "https://raw.githubusercontent.com/burczyk/XcodeSwiftSnippets/master/assets/xcode-use-code-snippet-2.gif"
},
{
"name": "CoPilot",
"url": "https://github.com/feinstruktur/CoPilot",
"description": "Plugin for collaborative editing",
"screenshot": "https://raw.githubusercontent.com/feinstruktur/CoPilot/master/Misc/screenshot.png"
},
{
"name": "XcodeMediaLibraryTweak",
"url": "https://github.com/igiu1988/XcodeMediaLibraryTweak",
"description": "Show image size. Let the Xcode eedia library more useful",
"screenshot": "https://raw.githubusercontent.com/igiu1988/XcodeMediaLibraryTweak/master/helpImage.png"
},
{
"name": "PluginPanel",
"url": "https://github.com/AlexIzh/PluginPanel",
"description": "Plugin panel for XCode. It needed for other plugins.",
"screenshot": "https://dl.dropboxusercontent.com/u/52596119/Screen%20Shot%202015-04-14%20at%202.14.56%20AM.png"
},
{
"name": "TimePlugin",
"url": "https://github.com/AlexIzh/TimePlugin",
"description": "Simple time tracker. Need `PluginPanel` plugin for uses.",
"screenshot": "https://dl.dropboxusercontent.com/u/52596119/Screen%20Shot%202015-04-14%20at%202.43.04%20AM.png"
},
{
"name": "ACCodeSnippetRepository",
"url": "https://github.com/acoomans/ACCodeSnippetRepositoryPlugin",
"description": "Synchronize code snippets with a git repository.",
"screenshot": "https://github.com/acoomans/ACCodeSnippetRepositoryPlugin/raw/master/Screenshots/screenshot02.png"
},
{
"name": "AdjustFontSize",
"url": "https://github.com/zats/AdjustFontSize-Xcode-Plugin",
"description": "Adjust font size with ⌘ + / ⌘ -",
"screenshot": "https://raw.github.com/zats/AdjustFontSize-Xcode-Plugin/master/README/xcode.png"
},
{
"name": "BetaWarpaint",
"url": "https://github.com/zats/BetaWarpaint.git",
"description": "Never confuse Xcode-beta with a regular build again"
},
{
"name": "AllTargets",
"url": "https://github.com/poboke/AllTargets",
"description": "The plugin will auto select all targets when you add files to the project.",
"screenshot": "https://github.com/poboke/AllTargets/raw/master/Screenshots/about.png"
},
{
"name": "ATProperty",
"url": "https://github.com/Draveness/ATProperty",
"description": "Convenient and fast approach to create property",
"screenshot": "http://i.imgur.com/fQmXMvF.gif"
},
{
"name": "AMMethod2Implement",
"url": "https://github.com/MellongLau/AMMethod2Implement",
"description": "A simple Xcode plugin to generate implement code for the selected method.",
"screenshot": "https://raw.github.com/MellongLau/AMMethod2Implement/master/Screenshots/usageScreenshot.gif"
},
{
"name": "NCSimulatorPlugin",
"url": "https://github.com/scinfu/NCSimulatorPlugin",
"description": "Xcode 6+ Plugin that enable shortcuts to Documents apps for Simulator selected.",
"screenshot": "https://raw.githubusercontent.com/scinfu/NCSimulatorPlugin/master/01.png"
},
{
"name": "ApportablePlugin",
"url": "https://github.com/johnno1962/ApportablePlugin",
"description": "Simple Plugin for work with Apportable supporting Live Coding.",
"screenshot": "http://johnholdsworth.com/injection/demoa.png"
},
{
"name": "AutoGenerateDescriptionPluginProd",
"url": "https://github.com/adamontherun/xCodeGenerateDescriptionPlugin",
"description": "A plugin automatically override the description method for your class.",
"screenshot": "https://github.com/adamontherun/xCodeGenerateDescriptionPlugin/blob/master/AutoGenerateDescriptionPluginProd/AutoGenerateDescriptionPluginProd/screenshot.png"
},
{
"name": "Auto-Importer",
"url": "https://github.com/lucholaf/Auto-Importer-for-Xcode",
"description": "A plugin to quickly import your headers on the fly",
"screenshot": "https://raw.githubusercontent.com/lucholaf/Auto-Importer-for-Xcode/master/demo.gif"
},
{
"name": "Aviator",
"url": "https://github.com/marksands/Aviator",
"description": "Adds the AppCode shortcut shift+command+T to toggle between a source file and its test file counterpart."
},
{
"name": "AxeMode",
"url": "https://github.com/alloy/AxeMode",
"description": "This Xcode plugin provides monkey-patches that ‘fix’ issues with Xcode.",
"screenshot": "https://cloud.githubusercontent.com/assets/2320/6247886/38795892-b77a-11e4-9390-f8d817e0e151.gif"
},
{
"name": "Backlight",
"url": "https://github.com/limejelly/Backlight-for-XCode",
"description": "Highlights the current editing line in Xcode.",
"screenshot": "https://raw.githubusercontent.com/limejelly/Backlight-for-XCode/master/screenshot.png"
},
{
"name": "BBUDebuggerTuckAway",
"url": "https://github.com/neonichu/BBUDebuggerTuckAway",
"description": " Auto-hide the debugger once you start typing in the source code editor."
},
{
"name": "BBUFullIssueNavigator",
"url": "https://github.com/neonichu/BBUFullIssueNavigator",
"description": "Show all issue content in the issue navigator.",
"screenshot": "https://github.com/neonichu/BBUFullIssueNavigator/raw/master/screenshot.png"
},
{
"name": "BBUncrustifyPlugin",
"url": "https://github.com/benoitsan/BBUncrustifyPlugin-Xcode",
"description": "Xcode plugin to format source code using ClangFormat or Uncrustify.",
"screenshot": "http://f.cl.ly/items/1p3U2o1K1v361v0b1o1l/BBUncrustifyPlugin.png"
},
{
"name": "BBUToyUnboxing",
"url": "https://github.com/neonichu/BBUToyUnboxing",
"description": "Xcode 6 plugin which allows usage of custom frameworks inside Playgrounds.",
"screenshot": "https://raw.githubusercontent.com/neonichu/BBUToyUnboxing/master/Screenshots/contentful-playground.png"
},
{
"name": "BBUUtilitiesTuckAway",
"url": "https://github.com/neonichu/BBUUtilitiesTuckAway",
"description": "Auto-hide the utilities area once you start typing in the source code editor."
},
{
"name": "BlockJump",
"url": "https://github.com/tyeen/BlockJump",
"description": "A plug-in let you jump between methods, or other items in the source editor.",
"screenshot": "https://raw.github.com/tyeen/BlockJump/master/screen_record.gif"
},
{
"name": "BTGisterPost-Xcode5",
"url": "https://github.com/LogikBlitz/BTGisterPost_Xcode5",
"description": "Xcode 5+ only. This plug-in allow developers to quickly post gist's to GitHub directly from XCode.It supports Xcode 5.x."
},
{
"name": "CATweakerSense",
"url": "https://github.com/keefo/CATweaker",
"description": "Xcode plugin that makes working with CAMediaTimingFunction more visual.",
"screenshot": "https://raw.githubusercontent.com/keefo/CATweaker/master/plugin1.png"
},
{
"name": "ChangeMarks",
"url": "https://github.com/zenangst/ChangeMarks",
"description": "Change Marks helps you to keep track of your most recent changes by giving them a different background color.",
"screenshot": "https://raw.githubusercontent.com/zenangst/ChangeMarks/master/screenshot.png"
},
{
"name": "CComment",
"url": "https://github.com/flexih/Xcode-CComment",
"description": "Xcode plugin for C Style Comment(uncomment) /**/ Shortcuts"
},
{
"name": "ClangFormat",
"url": "https://github.com/travisjeffery/ClangFormat-Xcode",
"description": "Xcode plug-in to to use clang-format from in Xcode and consistently format your code with Clang",
"screenshot": "https://raw.github.com/travisjeffery/ClangFormat-Xcode/master/README/usage.png"
},
{
"name": "CocoaControls",
"url": "https://github.com/yeahdongcn/CocoaControlsPlugin",
"description": "Plugin for Xcode to browse, search, integrate, clone controls in http://cocoacontrols.com/.",
"screenshot": "https://raw.githubusercontent.com/yeahdongcn/CocoaControlsPlugin/master/app_screenshot.png"
},
{
"name": "CocoaPods",
"url": "https://github.com/kattrali/cocoapods-xcode-plugin",
"description": "CocoaPods integration right in Xcode",
"screenshot": "https://raw.github.com/kattrali/cocoapods-xcode-plugin/master/menu.png"
},
{
"name": "CocoaPodUI",
"url": "https://github.com/Galeas/CocoaPodUI",
"description": "Xcode plugin that implements CocoaPods GUI.",
"screenshot": "https://raw.githubusercontent.com/Galeas/CocoaPodUI/master/readme.png"
},
{
"name": "CodePilot",
"url": "https://github.com/macoscope/CodePilot",
"description": "Code Pilot is a plugin for Xcode 5 & 6 that allows you to quickly find files, methods and symbols within your project without the need for your mouse.",
"screenshot": "https://github.com/macoscope/CodePilot/raw/master/Screenshots/CodePilot_01.png"
},
{
"name": "ColorSenseRainbow",
"url": "https://github.com/NorthernRealities/ColorSenseRainbow",
"description": "A plugin for Xcode that shows colours and allows you to modify them. It works for both UIColor and NSColor in Swift and Objective-C.",
"screenshot": "https://raw.githubusercontent.com/NorthernRealities/ColorSenseRainbow/master/CSR_Demo.png"
},
{
"name": "DANOpenInMacVim",
"url": "https://github.com/DanielTomlinson/DANOpenInMacVim",
"description": "Opens the current file in MacVim.",
"screenshot": "https://raw.githubusercontent.com/DanielTomlinson/DANOpenInMacVim/master/screenshot.png"
},
{
"name": "DBSmartPanels",
"url": "https://github.com/chaingarden/DBSmartPanels/",
"description": "Optimizes screen real estate by auto-hiding panels (debug window, utilities, Assistant Editor) when you don't need them",
"screenshot": "https://raw.githubusercontent.com/chaingarden/DBSmartPanels/master/Screenshots/DemoScreenshot.png"
},
{
"name": "DCLazyInstantiate",
"url": "https://github.com/Tengag/DCLazyInstantiate",
"description": "Generates lazy instantiation for you!",
"screenshot": "https://raw.githubusercontent.com/Tengag/DCLazyInstantiate/master/screenshot.gif"
},
{
"name": "DebugSearch",
"url": "https://github.com/maranas/DebugSearch",
"description": "Xcode plugin to allow filtering of console messages"
},
{
"name": "DerivedData Exterminator",
"url": "https://github.com/kattrali/deriveddata-exterminator",
"description": "Button for quickly deleting derived data. Makes Xcode happy.",
"screenshot": "https://github.com/kattrali/deriveddata-exterminator/raw/master/docs/menu.png"
},
{
"name": "DXXcodeConsoleUnicodePlugin",
"url": "https://github.com/dhcdht/DXXcodeConsoleUnicodePlugin",
"description": "Convert unicode string to Human-readable in xcode 5+ console."
},
{
"name": "Eero Xcode",
"url": "https://github.com/eerolanguage/eero-installer-for-alcatraz",
"description": "Eero Programming Language support. Please restart Xcode after installing!",
"screenshot": "http://eerolanguage.org/images/HelloWorld.png"
},
{
"name": "ExtractorLocalizableStrings",
"url": "https://github.com/viniciusmo/extract-localizable-string-plugin-xcode",
"description": "Enable extract localizable",
"screenshot": "https://raw.githubusercontent.com/viniciusmo/extract-localizable-string-plugin-xcode/master/Resources/preview.png"
},
{
"name": "FuzzyAutocomplete",
"url": "https://github.com/FuzzyAutocomplete/FuzzyAutocompletePlugin",
"description": "Enables fuzzy matching in Xcode's autocomplete, using the 'Open Quickly' algorithm.",
"screenshot": "https://raw.github.com/FuzzyAutocomplete/FuzzyAutocompletePlugin/master/demo.gif"
},
{
"name": "GitDiff",
"url": "https://github.com/johnno1962/GitDiff",
"description": "Highlights differences against git repo in Xcode source editor.",
"screenshot": "http://injectionforxcode.johnholdsworth.com/gitdiff.png"
},
{
"name": "GoToJiraIssue",
"url": "https://github.com/MarshalGeazipp/GoToJiraIssue",
"description": "A nice little Xcode plugin that opens the 1&1 JIRA issue website if click on an issue reference like 'MAMIOS-123' in the git history."
},
{
"name": "Helmet",
"url": "https://github.com/brianmichel/Helmet",
"description": "Prevents editing of Apple provided header files."
},
{
"name": "HighlightSelectedString",
"url": "https://github.com/keepyounger/HighlightSelectedString",
"description": "Highlight The String which is same to Selected String.",
"screenshot": "https://raw.githubusercontent.com/keepyounger/HighlightSelectedString/master/demo.png"
},
{
"name": "HOStringSense",
"url": "https://github.com/holtwick/HOStringSense-for-Xcode",
"description": "Plugin for Xcode to make working with strings less \"escaped\"",
"screenshot": "https://github.com/holtwick/HOStringSense-for-Xcode/raw/master/Xcode.png"
},
{
"name": "HCTAutoFolding",
"url": "https://github.com/ThilinaHewagama/HCTAutoFolding",
"description": "xCode plugin which fold all methods of a source file when opening..",
"screenshot": "https://github.com/ThilinaHewagama/HCTAutoFolding/blob/master/HCTAutoFolding/hctautofolding_screen_shot.jpg"
},
{
"name": "AutoIndentWithSave",
"url": "https://github.com/ThilinaHewagama/AutoIndentWithSave",
"description": "xCode plugin to indent source code when save.",
"screenshot": "https://github.com/ThilinaHewagama/AutoIndentWithSave/blob/master/auto_indent_screen_shot.jpg"
},
{
"name": "HTYCopyIssue",
"url": "https://github.com/hanton/CopyIssue-Xcode-Plugin",
"description": "Makes Copy Xcode Issue Description Easily, Support Finding Answers in Google or StackOverflow Directly.",
"screenshot": "https://github.com/hanton/CopyIssue-Xcode-Plugin/blob/master/ScreenShot.png"
},
{
"name": "InjectionPlugin",
"url": "https://github.com/johnno1962/injectionforxcode",
"description": "Inject code changes directly into your running application.",
"screenshot": "http://johnholdsworth.com/injection/demo.png"
},
{
"name": "InstaCodesPlugin",
"url": "https://github.com/parametr/instacodes-for-xcode",
"description": "This plug-in allows developers to post code fragments directly from Xcode IDE to Instacode - an Instagram for your code. It supports OS X 10.7 and higher + Xcode 4.x."
},
{
"name": "IntelliPaste",
"url": "https://github.com/RobertGummesson/IntelliPaste-for-XCode",
"description": "IntelliPaste is an Xcode plugin that makes copy-pasting methods and RGB colors easier.",
"screenshot": "https://raw.githubusercontent.com/RobertGummesson/IntelliPaste-for-XCode/master/Screenshots/IntelliPaste-Demo.gif"
},
{
"name": "JDPluginManager",
"url": "https://github.com/jaydee3/JDPluginManager",
"description": "This plugin makes it easy to install, update and remove them. It adds a new MenuItem Plugins in the Menu Bar of Xcode.",
"screenshot": "https://raw.github.com/jaydee3/JDPluginManager/master/assets/screenshot1.png"
},
{
"name": "JKBlockCommenter",
"url": "https://github.com/Johnykutty/JKBlockCommenter",
"description": "Xcode plugin to comment selected code segment with /*...*/ by pressing `⌘⌥/` keys together",
"screenshot": "https://raw.githubusercontent.com/Johnykutty/JKBlockCommenter/master/Demo.gif"
},
{
"name": "Jumper",
"url": "https://github.com/deszip/Jumper.git",
"description": "Allows to move cursor 10 lines up/down with alt + up/down arrows.",
"screenshot": "https://raw.github.com/deszip/Jumper/master/menu.png"
},
{
"name": "JumpMarks",
"url": "https://github.com/merrickp/JumpMarks",
"description": "Xcode plugin for numbered bookmarks. Set bookmarks with ⇧⌥[#], and jump back with ⌥[#] with the respective number.",
"screenshot": "https://raw.githubusercontent.com/merrickp/JumpMarks/assets/screenshot.jpg"
},
{
"name": "KKHighlightRecentPlugin",
"url": "https://github.com/karolkozub/KKHighlightRecentPlugin",
"description": "Highlights recently selected files",
"screenshot": "https://raw.githubusercontent.com/karolkozub/KKHighlightRecentPlugin/master/screenshot.png"
},
{
"name": "KPRunEverywhereXcodePlugin",
"url": "https://github.com/kitschpatrol/KPRunEverywhereXcodePlugin",
"description": "Build and run apps across multiple iOS devices with one click.",
"screenshot": "https://raw.github.com/kitschpatrol/KPRunEverywhereXcodePlugin/master/screenshot.png"
},
{
"name": "KSImageNamed",
"url": "https://github.com/ksuther/KSImageNamed-Xcode",
"description": "Xcode plug-in that provides autocomplete for imageNamed: calls",
"screenshot": "https://raw.github.com/ksuther/KSImageNamed-Xcode/master/screenshot.png"
},
{
"name": "KSHObjcUML",
"url": "https://github.com/kimsungwhee/KSHObjcUML",
"description": "Xcode plug-in that provides show oriented graph of dependencies between classes in your project.",
"screenshot": "https://raw.githubusercontent.com/kimsungwhee/KSHObjcUML/master/ScreenShot.png"
},
{
"name": "Lin",
"url": "https://github.com/questbeat/Lin",
"description": "Shows completion for NSLocalizedString",
"screenshot": "https://raw.github.com/questbeat/Lin/master/screenshot.gif"
},
{
"name": "LinkedLog",
"url": "https://github.com/julian-weinert/LinkedLog",
"description": "LinkedLog is a Xcode plugin that includes a Xcode PCH header file template that adds the macros `LLog` and `LLogF` and parses their output to link from the console to the corresponding file and line.",
"screenshot": "https://raw.githubusercontent.com/julian-weinert/LinkedLog/master/Screenshots/LinkedLog.png"
},
{
"name": "MarvinPlugin",
"url": "https://github.com/zenangst/MarvinXcode",
"description": "A collection of nifty selection and text commands for your everyday workflow in Xcode",
"screenshot": "https://raw.githubusercontent.com/zenangst/MarvinXcode/master/screenshot.png"
},
{
"name": "MCLog",
"url": "https://github.com/yuhua-chen/MCLog",
"description": "Xcode plugin for filtering the console area.",
"screenshot": "https://raw.githubusercontent.com/yuhua-chen/MCLog/master/MCLogScreenshot.gif"
},
{
"name": "NJHMultiTheme",
"url": "https://github.com/nathanhosselton/NJHMultiTheme",
"description": "Set separate Xcode themes for Swift and Objective-C source files.",
"screenshot": "https://raw.githubusercontent.com/nathanhosselton/NJHMultiTheme/master/Screenshot.png"
},
{
"name": "NOXcodeEnumDebug",
"url": "https://github.com/memega/NOXcodeEnumDebug",
"description": "Plugin creates functions which convert NS_ENUM values to descriptive strings."
},
{
"name": "ObjectGraph-Xcode",
"url": "https://github.com/vampirewalk/ObjectGraph-Xcode",
"description": "Plugin for showing oriented graph of dependencies between classes.",
"screenshot": "https://raw.githubusercontent.com/vampirewalk/ObjectGraph-Xcode/master/ObjectGraph.png"
},
{
"name": "OFXcodeMenu",
"url": "https://github.com/openframeworks/OFXcodeMenu.git",
"description": "Plugin for adding OpenFrameworks addons to projects",
"screenshot": "https://raw.githubusercontent.com/openframeworks/OFXcodeMenu/master/screenshot.jpg"
},
{
"name": "OMColorSense",
"url": "https://github.com/omz/ColorSense-for-Xcode",
"description": "Xcode plugin that makes working with UIColor (and NSColor) more visual."
},
{
"name": "OMQuickHelp",
"url": "https://github.com/omz/Dash-Plugin-for-Xcode",
"description": "Plugin for Xcode to integrate the Dash documentation viewer app"
},
{
"name": "Open With Application",
"url": "https://github.com/inquisitiveSoft/Open-with-Application",
"description": "An Xcode plugin to open the current document or project in the finder, the terminal or your external editor or source control app of choice",
"screenshot": "https://raw.githubusercontent.com/inquisitiveSoft/Open-with-Application/master/Screenshots/Menu-screenshot.jpg"
},
{
"name": "OpenInSublimeText",
"url": "https://github.com/ryanmeisters/Xcode-Plugin-Open-Sublime-Text",
"description": "A plugin to quickly open source files in Sublime Text",
"screenshot": "https://raw.githubusercontent.com/ryanmeisters/Xcode-Plugin-Open-Sublime-Text/master/Misc/OpenInSublimeTextMenu.png"
},
{
"name": "OpenInITerm",
"url": "https://github.com/sathya-me/OpenInITerm.git",
"description": "Xcode plugin to reveal files in iTerm.",
"screenshot": "https://raw.githubusercontent.com/sathya-me/OpenInITerm/master/demo.png"
},
{
"name": "OpenInTerminal",
"url": "https://github.com/sathya-me/OpenInTerminal.git",
"description": "Xcode plugin to reveal files in Terminal.",
"screenshot": "https://raw.githubusercontent.com/sathya-me/OpenInTerminal/master/demo.png"
},
{
"name": "OpenQuicklyCtrlNP",
"url": "https://github.com/tyeen/OpenQuicklyCtrlNP",
"description": "Give Xcode's Open Quickly the lost Control-N/P navigation."
},
{
"name": "OROpenInAppCode",
"url": "https://github.com/orta/OROpenInAppCode",
"description": "Opens the current xcworkspace / xcproject in AppCode.",
"screenshot": "https://raw.github.com/orta/OROpenInAppCode/master/web/screenshot.png"
},
{
"name": "Peckham",
"url": "https://github.com/markohlebar/Peckham",
"description": "Add #import-s from anywhere in the code.",
"screenshot": "https://raw.githubusercontent.com/markohlebar/Peckham/master/Misc/Peckham.gif"
},
{
"name": "PluginConsole",
"url": "https://github.com/AlexIzh/PluginConsole",
"description": "Extension for standard Xcode console. Use it for log debug information from your plugin to Xcode console.",
"screenshot": "http://f.cl.ly/items/39053K1L311z191G2v1z/Screen%20Shot%202013-05-16%20at%203.06.21.png"
},
{
"name": "Polychromatic",
"url": "https://github.com/kolinkrewinkel/Polychromatic",
"description": "Coloring with significance. Gives properties, ivars, and local variables each a unique, dynamic color in Xcode's source editor.",
"screenshot": "https://files.app.net/20wlfjgeI.png"
},
{
"name": "ProjectWindowName",
"url": "https://github.com/sleifer/ProjectWindowName",
"description": "Prepend project name to window title for Xcode Project and Workspace windows."
},
{
"name": "PuncoverPlugin",
"url": "https://github.com/neonichu/PuncoverPlugin",
"description": "Xcode plugin for displaying information in the gutter."
},
{
"name": "QuickFind",
"url": "https://github.com/qiaoxueshi/QuickFind",
"description": "A plugin that helps you find/search something more quickly and more conveniently",
"screenshot": "https://raw.githubusercontent.com/qiaoxueshi/QuickFind/master/images/QuickFind.gif"
},
{
"name": "QuickLocalization",
"url": "https://github.com/nanaimostudio/Xcode-Quick-Localization",
"description": "Xcode Plugin to Convert @\"content\" to NSLocalizedString(@\"content\", @\"content\")"
},
{
"name": "RealmPlugin",
"url": "https://github.com/realm/realm-cocoa",
"description": "File and class templates for Realm.",
"screenshot": "https://gist.githubusercontent.com/jpsim/68d6a7152350c24df80f/raw/9c7717a1a1c428bd902ce4779051723dc5143789/RealmPlugin.jpg"
},
{
"name": "RedXcode",
"url": "https://github.com/orta/RedXcode",
"description": "Visually differentiate Xcode instances being ran in a debugger."
},
{
"name": "RegX",
"url": "https://github.com/kzaher/RegX",
"description": "Prettifies source code by aligning elements in a visually pleasing way.",
"screenshot": "https://raw.githubusercontent.com/kzaher/RegX/content/images/demo.gif"
},
{
"name": "RevealPlugin",
"url": "https://github.com/shjborage/Reveal-Plugin-for-XCode",
"description": "Plugin for Xcode to integrate the Reveal App to your project automatic.",
"screenshot": "https://github.com/shjborage/Reveal-Plugin-for-XCode/raw/master/Product-InspectWithReveal.png"
},
{
"name": "RRConstraintsPlugin",
"url": "https://github.com/RolandasRazma/RRConstraintsPlugin",
"description": "RRConstraintsPlugin is plugin for Xcode 5.1+ to improves workflow for constraints based layout by adding new features to Xcode Interface Builder.",
"screenshot": "https://raw.github.com/RolandasRazma/RRConstraintsPlugin/master/RRConstraintsPlugin/Resources/ChangeLog/Images/features.png"
},
{
"name": "RSImageOptimPlugin",
"url": "https://github.com/yeahdongcn/RSImageOptimPlugin",
"description": "Plugin for Xcode to optimize images using ImageOptim.",
"screenshot": "https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/master/[email protected]"
},
{
"name": "RTImageAssets",
"url": "https://github.com/rickytan/RTImageAssets",
"description": "A Xcode plugin to automatically generate @2x, @1x image from @3x image for you, or upscale to @3x from @2x",
"screenshot": "https://github.com/rickytan/RTImageAssets/raw/master/ScreenCap/usage.gif"
},
{
"name": "SCXcodeEditorInset",
"url": "https://github.com/stefanceriu/SCXcodeEditorInset",
"description": "Adds an empty (configurable) space to the end of the editor text view",
"screenshot": "https://dl.dropboxusercontent.com/u/12748201/Recordings/SCXcodeEditorInset/SCXcodeEditorInset.png"
},
{
"name": "SCXcodeMinimap",
"url": "https://github.com/stefanceriu/SCXcodeMiniMap",
"description": "Sublime Text like Minimap for Xcode",
"screenshot": "https://dl.dropboxusercontent.com/u/12748201/Recordings/SCXcodeMinimap/v2.2/SCXcodeMinimap%20v2.0-01.png"
},
{
"name": "SCXcodeSwitchExpander",
"url": "https://github.com/stefanceriu/SCXcodeSwitchExpander",
"description": "Autocomplete your switch cases",
"screenshot": "https://dl.dropboxusercontent.com/u/12748201/Recordings/SCXcodeSwitchExpander/SCXcodeSwitchExpanderExample.png"
},
{
"name": "SCXcodeTabSwitcher",
"url": "https://github.com/stefanceriu/SCXcodeTabSwitcher",
"description": "Switch tabs using the ⌘cmd + [1..9] keys",
"screenshot": "https://dl.dropboxusercontent.com/u/12748201/Recordings/SCXcodeTabSwitcher/SCXcodeTabSwitcherScreenshot.jpg"
},
{
"name": "seguecodePlugin",
"url": "https://github.com/Adorkable/seguecode",
"description": "seguecode is the missing support tool for building safe UIStoryboard code. This plugin detects and runs seguecode whenever you save a Storyboard automatically updating your generated code."
},
{
"name": "SFJumpToLine",
"url": "https://github.com/sferrini/SFJumpToLine",
"description": "Simply move the instruction pointer to the selected line",
"screenshot": "https://raw.githubusercontent.com/sferrini/SFJumpToLine/master/SFJumpToLine.png"
},
{
"name": "ShowInGithub",
"url": "https://github.com/larsxschneider/ShowInGitHub",
"description": "Open the related Github page of a source file directly form the Xcode editor code window."
},
{
"name": "SimpleXcodeIcon",
"url": "https://github.com/b3ll/SimpleXcodeIcon",
"description": "Removes the build number from the Xcode dock icon.",
"screenshot": "https://raw.githubusercontent.com/b3ll/SimpleXcodeIcon/master/SimpleXcodeIconPreview.png"
},
{
"name": "Snapshots",
"url": "https://github.com/orta/Snapshots",
"description": "An Xcode Plugin to show the state of FBSnapshot Tests."
},
{
"name": "SuggestedColors",
"url": "https://github.com/jwaitzel/SuggestedColors/",
"description": "Customize the drop-down menu for suggested colors in the Interface Builder",
"screenshot": "https://raw.githubusercontent.com/jwaitzel/SuggestedColors/master/SuggestedColors.png"
},
{
"name": "SwipeGestureSwitcher",
"url": "https://github.com/tyeen/SwipeGestureSwitcher",
"description": "Simply turns the swipe-to-navigate-files gesture on/off in the source editor.",
"screenshot": "https://raw.github.com/tyeen/SwipeGestureSwitcher/master/screenshot.png"
},
{
"name": "TOCAssetCatalogBackground",
"url": "https://github.com/toco/TOCAssetCatalogBackground",
"description": "Xcode plugin to switch between white and dark background color in the asset catalog viewer.",
"screenshot": "https://raw.githubusercontent.com/toco/TOCAssetCatalogBackground/master/Screenshot.png"
},
{
"name": "Tuna",
"url": "https://github.com/dealforest/Tuna",
"description": "Xcode plugin that provides easy set breakpoint with action.",
"screenshot": "https://raw.githubusercontent.com/dealforest/Tuna/master/images/capture.png"
},
{
"name": "URBNLin",
"url": "https://github.com/jgrandelli/URBNLin",
"description": "Xcode plugin that acts like Lin for URBNStr"
},
{
"name": "VVDocumenter-Xcode",
"url": "https://github.com/onevcat/VVDocumenter-Xcode",
"description": "Xcode plug-in which helps you write Javadoc style documents easier.",
"screenshot": "https://raw.github.com/onevcat/VVDocumenter-Xcode/master/ScreenShot.gif"
},
{
"name": "WakaTime",
"url": "https://github.com/wakatime/xcode-wakatime",
"description": "Fully automatic time tracking.",
"screenshot": "https://www.wakatime.com/static/img/ScreenShots/Screen%20Shot%202013-10-26%20at%205.04.01%20PM.png"
},
{
"name": "WarningLightsXcodePlugin",
"url": "https://github.com/mitchellallison/WarningLights.git",
"description": "An Xcode plug-in that flashes your Philips Hue light bulbs different colours depending on the result of your build.",
"screenshot": "https://raw.github.com/mitchellallison/WarningLights/master/WLMenu.png"
},
{
"name": "WCGitTagsPlugin",
"url": "https://github.com/wczekalski/WCGitTagsPlugin",
"description": "Add tagging ability to Xcode Source Control",
"screenshot": "https://raw.githubusercontent.com/wczekalski/WCGitTagsPlugin/master/Resources/revealed.png"
},
{
"name": "WindowFlex",
"url": "https://github.com/zenangst/WindowFlex",
"description": "Helps you flex your Xcode window muscles",
"screenshot": "https://raw.githubusercontent.com/zenangst/WindowFlex/master/screenshot.png"
},
{
"name": "XAlign",
"url": "https://github.com/qfish/XAlign",
"description": "An amazing Xcode plugin to align regular code. It can align Xnything in any way you want.",
"screenshot": "https://raw.github.com/qfish/XAlign/gh-pages/images/equal.gif"
},
{
"name": "XcAddedMarkup",
"url": "https://github.com/mikr/XcAddedMarkup",
"description": "XcAddedMarkup is an Xcode plugin that adds a custom markup for hyperlinks and images inside the Xcode console and the Xcode source editor",
"screenshot": "https://raw.github.com/mikr/XcAddedMarkup/master/images/sourcecode2.png"
},
{
"name": "XCActionBar",
"url": "https://github.com/pdcgomes/XCActionBar",
"description": "XCActionBar is a multipurpose Xcode productivity tool. Think of it like like Alfred for Xcode - it allows you perform all sorts of actions just by typing commands.",
"screenshot": "https://raw.githubusercontent.com/pdcgomes/XCActionBar/master/demo.gif"
},
{
"name": "XCFixin_CustomizeWarningErrorHighlights",
"url": "https://github.com/davekeck/Xcode-4-Fixins",
"description": "Customize the inline error/warning message highlight color. Useful if you want to be able to read your code when using a dark background color."
},
{
"name": "XCFixin_FindFix",
"url": "https://github.com/davekeck/Xcode-4-Fixins",
"description": "This fixin makes Xcode show all find options (such as \"Ignore Case\") in the find bar when it opens."
},
{
"name": "XCFixin_TabAcceptsCompletions",
"url": "https://github.com/davekeck/Xcode-4-Fixins",
"description": "Upon pressing tab, this fixin makes Xcode accept the currently-highlighted completion suggestion in the popup list."
},
{
"name": "XCFixin_UserScripts",
"url": "https://github.com/davekeck/Xcode-4-Fixins",
"description": "Reinstates some semblance of the Xcode 3.x User Scripts menu. See documentation in the XCFixin_UserScripts directory."
},
{
"name": "xcfui",
"url": "https://github.com/jcavar/xcfui",
"description": "Xcode plugin for fui tool",
"screenshot": "https://raw.githubusercontent.com/jcavar/xcfui/master/preview.png"
},
{
"name": "Xcode_beginning_of_line",
"url": "https://github.com/insanehunter/XCode4_beginning_of_line",
"description": "Xcode plugin to make HOME key jump to the first non-whitespace line of code"
},
{
"name": "Xcode_copy_line",
"url": "https://github.com/mthiesen/Xcode_copy_line",
"description": "Xcode plug-in to copy/cut the current line when there is no selected text"
},
{
"name": "XcodeAutoBasher",
"url": "https://github.com/vokal/XcodeAutoBasher",
"description": "Run a given script any time a given folder or its children have changes.",
"screenshot": "https://raw.githubusercontent.com/vokal/XcodeAutoBasher/master/screenshot.png"
},
{
"name": "XcodeBookmark",
"url": "https://github.com/nicoster/XcodeBookmark",
"description": "The bookmark plugin for Xcode."
},
{
"name": "XcodeBoost",
"url": "https://github.com/fortinmike/XcodeBoost",
"description": "An Xcode plugin that aims to make altering and inspecting code quick and easy.",
"screenshot": "https://raw.githubusercontent.com/fortinmike/XcodeBoost/master/Images/highlighting.gif"
},
{
"name": "XcodeColors",
"url": "https://github.com/robbiehanson/XcodeColors.git",
"description": "XcodeColors allows you to use colors in the Xcode debugging console. It's designed to aid in the debugging process."
},
{
"name": "XcodeExplorer",
"url": "https://github.com/edwardaux/XcodeExplorer",
"description": "This is a plugin project that allows you, as a developer, to explore the various events and notifications that Xcode4 emits during normal operations."
},
{
"name": "XcodePerforcePlugin",
"url": "https://[email protected]/jaime-rios-xcodeperforceplugin",
"description": "Native Xcode Plugin that integrates with Perforce source control system. For more information about this plugin and how to use it, you can view the project's README page at https://swarm.workshop.perforce.com/projects/jaime-rios-xcodeperforceplugin/ .",
"screenshot": "https://swarm.workshop.perforce.com/projects/jaime-rios-xcodeperforceplugin/view/xcodeperforceplugin/screenshot_xcodeperforceplugin.png"
},
{
"name": "XcodePlus Delete Line",
"url": "https://github.com/payliu/XcodePlus",
"description": "Xcode plugin to plus extra feature - delete line, even mulit-lines",
"screenshot": "https://raw.github.com/payliu/XcodePlus/master/screenshot/deleteline.gif"
},
{
"name": "XcodeRefactoringPlus",
"url": "https://github.com/kinwahlai/XcodeRefactoringPlus",
"description": "Xcode plugin to extend the current refactoring function to the functionality similar in eclipse."
},
{
"name": "XcodeWay",
"url": "https://github.com/onmyway133/XcodeWay",
"description": "An Xcode plugin that makes navigating to many places easier.",
"screenshot": "http://i59.tinypic.com/bfmey9.png"
},
{
"name": "XCommentWrap",
"url": "https://github.com/ianyh/XCommentWrap",
"description": "XCommentWrap is a plugin for wrapping comments at 80 characters."
},
{
"name": "XContract",
"url": "https://github.com/lechium/XContract",
"description": "Keep track / export contracting hours for a project."
},
{
"name": "XCoverage",
"url": "https://github.com/dropbox/XCoverage",
"description": "Displays test coverage data in the text editor. If you don't currently generate gcov data, see github page for info on setting it up.",
"screenshot": "https://github.com/dropbox/XCoverage/raw/master/docs/example.png"
},
{
"name": "ProvisioningProfileCleaner",
"url": "https://github.com/lechium/ProvisioningProfileCleaner",
"description": "Clean (move) expired and duplicate profiles out your Xcode Provisioning profile folder."
},
{
"name": "XFunnyEditor",
"url": "https://github.com/STAR-ZERO/XFunnyEditor",
"description": "Xcode plugin to display an image on the background of the editor",
"screenshot": "https://raw.github.com/STAR-ZERO/XFunnyEditor/master/screenshot.png"
},
{
"name": "XInfer",
"url": "https://github.com/markohlebar/XInfer",
"description": "Facebook Infer plugin for Xcode",
"screenshot": "https://raw.githubusercontent.com/markohlebar/XInfer/master/Misc/Infer.png"
},
{
"name": "XLCXcodeAssist",
"url": "https://github.com/xlc/XLCXcodeAssist",
"description": "Xcode plug-in to provide suggestion implementation for missing Objective-C methods.",
"screenshot": "https://raw.githubusercontent.com/xlc/XLCXcodeAssist/master/screenshot.png"
},
{
"name": "XLocation",
"url": "https://github.com/StefanLage/XLocation",
"description": "Xcode Plugin to add new location file (GPX file) to your current project from a Map or an address.",
"screenshot": "https://raw.githubusercontent.com/StefanLage/XLocation/master/Screens/main.png"
},
{
"name": "XprobePlugin",
"url": "https://github.com/johnno1962/XprobePlugin",
"description": "Xcode extension for viewing an application's objects in real time.",
"screenshot": "http://johnholdsworth.com/injection/demob.png"
},
{
"name": "Xprop",
"url": "https://github.com/shpakovski/Xprop",
"description": "Exclude @property and @synthesize document items from the navigator menu."
},
{
"name": "XQuit",
"url": "https://github.com/StefanLage/XQuit/",
"description": "Xcode plugin which ask to quit Xcode, useful if you quit clumsily.",
"screenshot": "https://raw.githubusercontent.com/StefanLage/XQuit/master/screenshots/main.png"
},
{
"name": "XToDo",
"url": "https://github.com/trawor/XToDo",
"description": "Xcode plugin to collect and list the `TODO`,`FIXME`,`???`,`!!!!`",
"screenshot": "http://i.imgur.com/BZk2tSo.png"
},
{
"name": "XTrello",
"url": "https://github.com/lechium/XTrello",
"description": "Xcode plugin that is an native implementation of trello",
"screenshot": "https://raw.githubusercontent.com/lechium/XTrello/master/add_labels.png"
},
{
"name": "XVim",
"url": "https://github.com/JugglerShu/XVim",
"description": "Xcode plugin for Vim keybindings"
},
{
"name": "ZKKeyBindingsTeacher",
"url": "https://github.com/zulkis/ZKKeyBindingsTeacher",
"description": "Xcode plugin for key bindings learning"
},
{
"name": "ZMDocItemInspector",
"url": "https://github.com/zolomatok/ZMDocItemInspector",
"description": "Converts the Quick Help inspector into an always visible Document Items inspector.",
"screenshot": "http://i.stack.imgur.com/x4SCO.png"
},
{
"name": "MLAutoReplace",
"url": "https://github.com/molon/MLAutoReplace",
"description": "Re-Intent, make you write code more quickly.",
"screenshot": "https://raw.githubusercontent.com/molon/MLAutoReplace/master/replaceTS.gif"
},
{
"name": "Remote",
"url": "https://github.com/johnno1962/Remote",
"description": "Control your iDevice from inside Xcode for end-to-end testing.",
"screenshot": "http://injectionforxcode.johnholdsworth.com/remote.png"
},
{
"name": "ZLGotoSandbox",
"url": "https://github.com/MakeZL/ZLGotoSandboxPlugin",
"description": "You can quickly enter the iOS simulator Xcode plugin!",
"screenshot": "https://github.com/MakeZL/ZLGotoSandboxPlugin/blob/master/screenshot.png"
},
{
"name": "ZLCheckFile",
"url": "https://github.com/MakeZL/ZLCheckFilePlugin-Xcode",
"description": "This is redundant files a lookup project (not the referenced file). Xcode - plugin.",
"screenshot": "https://github.com/MakeZL/ZLCheckFilePlugin-Xcode/raw/master/screenhost2.png"
},
{
"name": "ZLXCodeLine",
"url": "https://github.com/MakeZL/ZLXCodeLine",
"description": "This is a record of the number of lines of code - XcodePlugin."
},
{
"name": "IceBuilder",
"url": "https://github.com/zeroc-ice/ice-builder-xcode",
"branch": "alcatraz",
"description": "Automate the compilation of Slice files to C++ or Objective-C. Please restart Xcode after installing!",
"screenshot": "https://raw.githubusercontent.com/zeroc-ice/ice-builder-xcode/master/screenshot.png"
},
{
"name": "StencilPlugin",
"url": "https://github.com/samdods/Stencil",
"description": "Create your own custom templates on a per-project basis, and share with other project collaborators. See http://sam.dods.co/stencil-xcode-plugin/ for more info.",
"screenshot": "https://raw.githubusercontent.com/samdods/Stencil/master/create-new-template.jpg"
},
{
"name": "IconMaker",
"url": "https://github.com/kaphacius/IconMaker",
"description": "Create an app icon from Xcode",
"screenshot": "https://raw.githubusercontent.com/kaphacius/IconMaker/master/Screenshot.png"
},
{
"name": "PrettyPrintJSON",
"url": "https://github.com/psobko/PrettyPrintJSON",
"description": "Pretty print JSON from the console."
},
{
"name": "SketchExporter",
"url": "https://github.com/gliyao/SketchExporter",
"description": "Export your Sketch AppIcon and icons to your Images.xassets (require sketchtool - cli tool for Sektch)",
"screenshot": "https://raw.githubusercontent.com/gliyao/SketchExporter/master/SketchExporter.png"
},
{
"name": "EditorConfig",
"url": "https://github.com/MarcoSero/EditorConfig-Xcode",
"description": "Plugin to add EditorConfig support to Xcode"
},
{
"name": "QuickJump",
"url": "https://github.com/wiruzx/QuickJump",
"description": "Quick code navigation for Xcode",
"screenshot": "http://i.imgur.com/XGKiTGm.png"
},
{
"name": "JSFormatter",
"url": "https://github.com/bumaociyuan/JSFormatter-Xcode",
"description": "Xcode plug to format js html css files",
"screenshot": "https://raw.githubusercontent.com/bumaociyuan/JSFormatter-Xcode/master/screenshot.gif"
},
{
"name": "XcodeKit",
"url": "https://github.com/ptfly/XcodeKit",
"description": "Adds support for duplicating / removing current lines or selections in Xcode, just as we know it from Eclipse.",
"screenshot": "https://raw.githubusercontent.com/bumaociyuan/JSFormatter-Xcode/master/XcodeKit_screenshot.png"
},
{
"name": "ESJsonFormat",
"url": "https://github.com/EnjoySR/ESJsonFormat-Xcode",
"description": "Xcode plug-in which helps you generate model properties with json easier.",
"screenshot": "https://raw.githubusercontent.com/EnjoySR/ESJsonFormat-Xcode/master/ScreenShot/ScreenShot3.gif"
},
{
"name": "XCSnippetr",
"url": "https://github.com/dzenbot/XCSnippetr",
"description": "An XCode Plugin to upload code snippets directly into Slack and Gist",
"screenshot": "https://raw.githubusercontent.com/dzenbot/XCSnippetr/master/Documentation/Screenshots/screenshot_login_slack.png"
},
{
"name": "XReset",
"url": "https://github.com/chroman/XReset",
"description": "Xcode Plugin to Reset iOS Simulators Content and Settings.",
"screenshot": "http://chroman.me/wp-content/uploads/2015/07/XReset.png"
},
{
"name": "XWJsonToCode",
"url": "https://github.com/boyXiong/XWJsonToCode",
"description": "Xcode plug-in which helps you generate model properties and single class create file with json easier.",
"screenshot": "https://raw.githubusercontent.com/boyXiong/raw/master/picture/howToUse.png"
},
{
"name": "VariablesViewFullCopy",
"url": "https://github.com/Sephiroth87/VariablesViewFullCopy-Xcode",
"description": "An Xcode plugin to copy the full tree description of an object from the Variables View",
"screenshot": "https://raw.githubusercontent.com/Sephiroth87/VariablesViewFullCopy-Xcode/master/screenshot.png"
},
{
"name": "SublimeShortcuts-ObjC",
"url": "https://github.com/matrinox/InsertLineXcodePlugin",
"description": "Covenient inserting lines like in Sublime/Atom. Use command+enter or command+shift+enter to insert and jump to the next or previous line, respectively."
},
{
"name": "SYConfigurableVariable",