This repository has been archived by the owner on Sep 4, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 386
/
packages.json
executable file
·2589 lines (2589 loc) · 134 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": "XcodeBuddyPlugin",
"url": "https://github.com/uugo/XcodeBuddyPlugin",
"description": "XcBuddy App running on ios devices is not only an independent source view and analysis tool, but also a client attached to the Xcode. You can connect to xcBuddy app and operate it with XcodeBuddy Plugin.",
"screenshot": "https://raw.githubusercontent.com/uugo/XcodeBuddyPlugin/master/image/usage.png"
},
{
"name": "AutoSelectTargets",
"url": "https://github.com/fjtrujy/AutoSelectTargets",
"description": "The plugin intends to auto select targets depending of the selected configuration when you add files to the project.",
"screenshot": "https://raw.githubusercontent.com/fjtrujy/AutoSelectTargets/master/Screenshots/mainMenu.png"
},
{
"name": "FindIt",
"url": "https://github.com/rogermolas/findit-for-xcode",
"description": "Plug-in for browsing stackoverflow website inside XCode IDE.",
"screenshot": "https://raw.githubusercontent.com/rogermolas/findit-for-xcode/master/demo.gif"
},
{
"name": "Snowonder",
"url": "https://github.com/Karetski/Snowonder",
"description": "Snowonder — pure import sorter for Xcode. It sorts import declarations in a way that you want.",
"screenshot": "https://raw.githubusercontent.com/Karetski/Snowonder/master/Resources/GithubHeader.png"
},
{
"name": "Wdoom",
"url": "https://github.com/AlexUlenkov/Wdoom",
"description": "Xcode plugin for the painful coding.",
"screenshot": "https://raw.githubusercontent.com/AlexUlenkov/Wdoom/master/Screenshots/Wdoom.png"
},
{
"name": "OCPropertyTransfer",
"url": "https://github.com/slq0378/OCPropertyTransfer",
"description": "Transfer assigned string to property",
"screenshot": "https://raw.githubusercontent.com/slq0378/OCPropertyTransfer/master/OCPropertyTransfer%E4%BD%BF%E7%94%A8.gif"
},
{
"name": "Xclip",
"url": "https://github.com/sebastianv1/Xclip",
"description": "Multilevel Clipboard that saves your past 10 copies and allows you to paste them inside Xcode.",
"screenshot": "https://raw.githubusercontent.com/sebastianv1/Xclip/master/XclipScreenshot.png"
},
{
"name": "XXAlignOnSave",
"url": "https://github.com/yangjunsss/XXAlignOnSave",
"description": "Align and indent code on Save",
"screenshot": "http://yangjunsss.github.io/assets/media/d17c7a5bb3aaa707c347fc08f90de58e.gif"
},
{
"name": "ProjectCleaner",
"url": "https://github.com/Lobster-King/ProjectCleaner",
"description": "Find unused resources like png files & delete some files that you want",
"screenshot": "https://raw.githubusercontent.com/Lobster-King/ProjectCleaner/master/ProjectCleaner/search_usage.gif"
},
{
"name": "HHJsonMapperAutocomplete",
"url": "https://github.com/red3/HHJsonMapperAutocomplete",
"description": "Xcode plug-in which helps you generate JsonModel Mapper automatically",
"screenshot": "https://raw.github.com/red3/HHJsonMapperAutocomplete/master/ScreenShot.gif"
},
{
"name": "LCJSONFormatter",
"url": "https://github.com/EvoIos/LCJSONFormatter",
"description": "a Xcode Plugin for Argo",
"screenshot": "https://raw.githubusercontent.com/EvoIos/LCJSONFormatter/master/alcatraz-packages-Img.png"
},
{
"name": "XcodeFolders",
"url": "https://github.com/poborp/XcodeFolders",
"description": "Extra menu for rapid folders.",
"screenshot": "https://raw.githubusercontent.com/poborp/XcodeFolders/master/Preview.png"
},
{
"name": "ESCodeSection",
"url": "https://github.com/ElfSundae/ESCodeSection",
"description": "Insert code separators."
},
{
"name": "FastStub",
"url": "https://github.com/music4kid/FastStub-Xcode",
"description": "Xcode Plugin helps you find missing methods in your class header, protocols, and super class, also makes fast inserting.",
"screenshot": "https://raw.githubusercontent.com/music4kid/FastStub-Xcode/master/fs1.png"
},
{
"name": "XcodeColorSense",
"url": "https://github.com/onmyway133/XcodeColorSense.git",
"description": "An Xcode plugin that makes working with color easier",
"screenshot": "https://github.com/onmyway133/XcodeColorSense/raw/master/Screenshots/XcodeColorSense.png"
},
{
"name": "DuplicateLine",
"url": "https://github.com/castus/xcode-duplicate-line.git",
"description": "Xcode plugin to duplicate selected line or lines",
"screenshot": "https://raw.github.com/castus/xcode-duplicate-line/master/screenshot/presentation.gif"
},
{
"name": "QCBlockCommenter",
"url": "https://github.com/qclmnt/QCBlockCommenter.git",
"description": "Xcode plugin to comment block of text with /* */ by pressing ⌘@",
"screenshot": "https://raw.githubusercontent.com/qclmnt/QCBlockCommenter/master/demo.png"
},
{
"name": "ProfilesTool-Xcode",
"url": "https://github.com/shaojiankui/ProfilesTool-Xcode",
"description": "ProfilesTool-Xcode,iOS Provisioning Profiles, .mobileprovision files manager tool for Xcode",
"screenshot": "https://raw.githubusercontent.com/shaojiankui/ProfilesTool-Xcode/master/demo.png"
},
{
"name": "JSPatchX",
"url": "https://github.com/bang590/JSPatchX",
"description": "Provides autocompletion for JSPatch.",
"screenshot": "https://raw.github.com/bang590/JSPatchX/master/Resource/Screenshot.gif"
},
{
"name": "gitflow",
"url": "https://github.com/alexkrzyzanowski/xcode-gitflow-plugin",
"description": "Gitflow plugin for Xcode.",
"screenshot": "https://raw.githubusercontent.com/alexkrzyzanowski/xcode-gitflow-plugin/develop/screenshot.png"
},
{
"name": "HCTemplet",
"url": "https://github.com/dongjiali/HCTemplet",
"description": "HCTemplet is create custom templates",
"screenshot": "http://raw.github.com/dongjiali/HCTemplet/master/Screenshots/templet.png"
},
{
"name": "Make the Mac Great Again",
"url": "https://github.com/edwardaux/MakeTheMacGreatAgain",
"description": "An Xcode plugin that puts OS X at the top of the list when creating new resources",
"screenshot": "https://raw.githubusercontent.com/edwardaux/MakeTheMacGreatAgain/master/MakeTheMacGreatAgain/screenshot.png"
},
{
"name": "Build Me Up",
"url": "https://github.com/edwardaux/BuildMeUp",
"description": "An Xcode plugin that keeps track of how long Xcode takes to build your project(s). It accumulates the total time and displays in the Activity View in the Xcode toolbar.",
"screenshot": "https://raw.githubusercontent.com/edwardaux/BuildMeUp/master/screenshot.png"
},
{
"name": "SQLPlugin",
"url": "https://github.com/viktyz/SQLPlugin",
"description": "SQLPlugin is a plugin for Xcode. This plugin will list all files with database type in your simulator directories.",
"screenshot": "https://github.com/viktyz/SQLPlugin/raw/master/Screenshots/Screenshots1.png"
},
{
"name": "ExportConsoleText",
"url": "https://github.com/iException/ExportConsoleText",
"description": "Exporting xcode console text to html file.",
"screenshot": "https://raw.githubusercontent.com/iException/ExportConsoleText/master/image.png"
},
{
"name": "StringsValidator",
"url": "https://github.com/wallora/StringsValidator.git",
"description": "StringsValidator is a Xcode plugin for easily finding errors in strings files.",
"screenshot": "https://raw.githubusercontent.com/wallora/StringsValidator/master/screenshots/screenshot1.png"
},
{
"name": "RAConsoleEditor",
"url": "https://github.com/Augustyniak/RAConsoleEditor",
"description": "RAConsoleEditor is an Xcode plugin which makes it really easy to browse Xcode console logs in external text editors.",
"screenshot": "https://raw.githubusercontent.com/Augustyniak/RAConsoleEditor/master/Resources/main-screenshot.png"
},
{
"name": "Cichlid",
"url": "https://github.com/dealforest/Cichlid",
"description": "It will be automatically removed DerivedData when you run the clean",
"screenshot": "https://raw.githubusercontent.com/dealforest/Cichlid/master/images/cichlid.png"
},
{
"name": "LogDisabler",
"url": "https://github.com/mavris/LogDisabler.git",
"description": "Disable/Enable all console log messages",
"screenshot": "https://raw.githubusercontent.com/mavris/LogDisabler/master/screenshot1.png"
},
{
"name": "SimulatorBuild",
"url": "https://github.com/Minal91/SimulatorBuild",
"description": "Create simulator build application for Facebook approval etc.",
"screenshot": "https://raw.githubusercontent.com/Minal91/SimulatorBuild/master/CreateSimulatorBuild.gif"
},
{
"name": "SortXcodeSelection",
"url": "https://github.com/dayitv89/SortXcodeSelection",
"description": "SortXcodeSelection-Plugin is a xcode plugin for sort xcode editor selected area alphabetic.",
"screenshot": "https://raw.githubusercontent.com/dayitv89/SortXcodeSelection/master/screenshot.gif"
},
{
"name": "Fastlane-Plugin",
"url": "https://github.com/RishabhTayal/Fastlane-Plugin",
"description": "Fastlane-Plugin is a xcode plugin for easily running Fastlane commands from xcode.",
"screenshot": "https://raw.githubusercontent.com/RishabhTayal/Fastlane-Plugin/master/screenshot.png"
},
{
"name": "HKSnippet",
"url": "https://github.com/hunk3000/HKSnippet",
"description": "HKSnippet is a xcode plug-in for typing code snippet with triggers strings. It can minimize input for often used code snippet.",
"screenshot": "https://raw.githubusercontent.com/hunk3000/HKSnippet/master/Images/demo2.gif"
},
{
"name": "Phoenix",
"url": "https://github.com/Pearapps/InitializeMe",
"description": "Turns a selected list of properties into a dependency injected initializer and copies it to your pasteboard. For Objective-C and Swift.",
"screenshot": "https://raw.githubusercontent.com/Pearapps/InitializeMe/master/Phoenix/Phoenix.png"
},
{
"name": "ImportSorter",
"url": "https://github.com/manji602/ImportSorter",
"description": "Sorting import declarations for Xcode",
"screenshot": "https://cloud.githubusercontent.com/assets/531477/12872322/e7b4f520-cde3-11e5-8814-8337b7aeb781.png"
},
{
"name": "ThinStrokes",
"url": "https://github.com/liscio/ThinStrokes",
"description": "Use a light-on-dark color scheme in Xcode, and frustrated by Xcode's too-heavy font rendering? Get sharper text using ThinStrokes!",
"screenshot": "http://raw.github.com/liscio/ThinStrokes/master/ThinStrokes@2x.png"
},
{
"name": "StringManage",
"url": "https://github.com/Loongwoo/StringManage",
"description": "Manage all the strings in localizable.strings, including adding,removing,searching and checking whether it used or not.",
"screenshot": "https://raw.githubusercontent.com/Loongwoo/StringManage/master/screenshots/1.png"
},
{
"name": "ExtComments",
"url": "https://github.com/WolfgangDomroese/ExtComments",
"description": "Ext(ract) Comments and Documentation including source code from your project. View or save to file.",
"screenshot": "http://www.domroese.berlin/images/SetupDialog.png"
},
{
"name": "VWInstantRun",
"url": "https://github.com/wangshengjia/VWInstantRun",
"description": "This plugin let you build & run your selected lines of code in Xcode without run the whole project, you'll have the output instantly in your Xcode console.",
"screenshot": "https://raw.githubusercontent.com/wangshengjia/VWInstantRun/master/run_swift_code_1.gif"
},
{
"name": "XYZHappyCoding",
"url": "https://github.com/nvkiet/XYZHappyCoding",
"description": "Every time a build succeeds, a happy face comes.",
"screenshot": "https://raw.githubusercontent.com/nvkiet/XYZHappyCoding/master/Resources/example.png"
},
{
"name": "SwiftJsonToObj",
"url": "https://github.com/aotian16/SwiftJsonToObj",
"description": "json to object plugin",
"screenshot": "https://github.com/aotian16/SwiftJsonToObj/raw/master/screenshot/SwiftJsonToObj.png"
},
{
"name": "Xmas",
"url": "https://github.com/onmyway133/Xmas",
"description": "It's beginning to look a lot like Christmas",
"screenshot": "https://github.com/onmyway133/Xmas/raw/master/Screenshots/xmas.png"
},
{
"name": "Time1970Convertor",
"url": "https://github.com/gshe/Time1970Convertor",
"description": "Convert time between millisecond from 1970-01-01 00-00-00 and standard time format. Please restart Xcode after installing!",
"screenshot": "https://github.com/gshe/Time1970Convertor/raw/master/Screenshots/Screenshot2.png"
},
{
"name": "AtAutoCompletion",
"url": "https://github.com/wzqcongcong/AtAutoCompletion",
"description": "Enable [@ auto completion] in Xcode 6 & 7 (Xcode 5 already has this feature)",
"screenshot": "https://raw.githubusercontent.com/wzqcongcong/AtAutoCompletion/master/screenshot/screenshot.png"
},
{
"name": "DVTPlugInCompatibilityUUIDifier",
"url": "https://github.com/mralexgray/DVTPlugInCompatibilityUUIDifier",
"description": "Permanent, automatic, and hassle-free Xcode/Alcatraz \"compatibility\" upgrades",
"screenshot": "https://github.com/mralexgray/DVTPlugInCompatibilityUUIDifier/raw/master/Screenshots/alcatraz.art.png"
},
{
"name": "KZLinkedConsole",
"url": "https://github.com/krzysztofzablocki/KZLinkedConsole",
"description": "Convert console logs containing fileName.extension:XX into clickable links, so you never have to wonder which class logged that message.",
"screenshot": "https://raw.githubusercontent.com/krzysztofzablocki/KZLinkedConsole/master/logs.gif"
},
{
"name": "PreciseCoverage",
"url": "https://github.com/zats/PreciseCoverage",
"description": "Make Xcode code coverage more informative.",
"screenshot": "https://raw.githubusercontent.com/zats/PreciseCoverage/master/screenshot.png"
},
{
"name": "Swimat",
"url": "https://github.com/Jintin/Swimat",
"description": "Swift code formatter, help you auto format your Swift code.",
"screenshot": "https://raw.githubusercontent.com/Jintin/Swimat/master/README/preview.gif"
},
{
"name": "xTransCodelation",
"url": "https://github.com/AsTryE/xTransCodelation",
"description": "XCODE in English translation, the use of the word SDK translation and Baidu web translation.",
"screenshot": "http://i.niupic.com/images/2016/08/29/0tEpZc.png"
},
{
"name": "Luft",
"url": "https://github.com/k0nserv/luft",
"description": "Helps you write lighter view controllers by warning you when they get long",
"screenshot": "https://raw.githubusercontent.com/k0nserv/luft/master/Screenshots/screenshot.png"
},
{
"name": "FixCode",
"url": "https://github.com/fastlane/FixCode",
"description": "Fixing the 'Fix Issues' button.",
"screenshot": "https://raw.githubusercontent.com/fastlane/FixCode/master/FixIssueButton.jpg"
},
{
"name": "Xcode Multi Edit",
"url": "https://github.com/timwredwards/Xcode-Multi-Edit-Plugin",
"description": "Allows developers to quickly edit a selected term in a source document. This is a feature borrowed from many text editors, such as Sublime Text.",
"screenshot": "https://github.com/timwredwards/Xcode-Multi-Edit-Plugin/raw/master/img/static.png"
},
{
"name": "AutoHighlightSymbol",
"url": "https://github.com/chiahsien/AutoHighlightSymbol",
"description": "Add highlight to those instances of selected symbol.",
"screenshot": "https://raw.githubusercontent.com/chiahsien/AutoHighlightSymbol/master/screenshot.png"
},
{
"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. IMPORTANT - Default Xcode font (Menlo) doesn't support ligatures. You have to download and install font with ligatures support like PragmataPro, Hasklig, ...",
"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://raw.githubusercontent.com/wokalski/Distraction-Free-Xcode-plugin/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": "ActivatePowerMode",
"url": "https://github.com/poboke/ActivatePowerMode",
"description": "ActivatePowerMode is a plugin for Xcode. This plugin will make your code powerful.",
"screenshot": "https://github.com/poboke/ActivatePowerMode/raw/master/Screenshots/about.gif"
},
{
"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": "AMAppExportToIPA",
"url": "https://github.com/MellongLau/AMAppExportToIPA-Xcode-Plugin",
"description": "AMAppExportToIPA-Xcode-Plugin is simple Xcode plugin to export .app to .ipa file.",
"screenshot": "https://raw.github.com/MellongLau/AMAppExportToIPA-Xcode-Plugin/master/Screenshots/screenshot.gif"
},
{
"name": "AMLocalizedStringBuilder",
"url": "https://github.com/MellongLau/AMLocalizedStringBuilder-Xcode-Plugin",
"description": "AMLocalizedStringBuilder is the localized string helper which help you build your \"Localizable.strings\" file to class with shortcut ctrl+f.",
"screenshot": "https://raw.github.com/MellongLau/AMLocalizedStringBuilder-Xcode-Plugin/master/Screenshots/screenshot.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://raw.githubusercontent.com/adamontherun/xCodeGenerateDescriptionPlugin/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://raw.githubusercontent.com/neonichu/BBUFullIssueNavigator/master/screenshot.png"
},
{
"name": "BBUncrustifyPlugin",
"url": "https://github.com/benoitsan/BBUncrustifyPlugin-Xcode",
"description": "Xcode plugin to format source code using ClangFormat or Uncrustify.",
"screenshot": "https://raw.githubusercontent.com/benoitsan/BBUncrustifyPlugin-Xcode/master/images/menu.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": "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": "CedarShortcuts",
"url": "https://github.com/cppforlife/CedarShortcuts",
"description": "CedarShortcuts is an Xcode plugin that adds handy shortcuts for Cedar or Quick."
},
{
"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",
"screenshot": "https://raw.githubusercontent.com/flexih/Xcode-CComment/master/snapshot/snapshot.gif"
},
{
"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": "CrashSymbal",
"url": "https://github.com/julian-weinert/CrashSymbal",
"description": "CrashSymbal is a Xcode plugin that brings manual crash symbolication back to Xcode! Simply select a crash report, that you might have received via mail or so, in the file system and withing seconds you'r provided with a symbolicated version.",
"screenshot": "https://raw.githubusercontent.com/julian-weinert/CrashSymbal/master/Screenshots/CrashSymbal.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": "DXViewInspectorPlugin",
"url": "https://github.com/dhcdht/DXViewInspectorPlugin",
"description": "Plugin for Xcode to integrate the Reveal and Spark Inspector to your project automatic."
},
{
"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": "FocusCycle",
"url": "https://github.com/julian-weinert/FocusCycle",
"description": "Adds menu items for focusing previous/next window to the Window menu item.",
"screenshot": "https://raw.githubusercontent.com/julian-weinert/FocusCycle/master/Screenshots/FocusCycle.png"
},
{
"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": "GoOutside",
"url": "https://github.com/dbgrandi/GoOutside",
"description": "Track how much time you have spent waiting for Xcode to build",
"screenshot": "https://raw.githubusercontent.com/dbgrandi/GoOutside/master/images/stats.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://raw.githubusercontent.com/holtwick/HOStringSense-for-Xcode/master/StringDemoAnimation.gif"
},
{
"name": "HCTAutoFolding",
"url": "https://github.com/ThilinaHewagama/HCTAutoFolding",
"description": "xCode plugin which fold all methods of a source file when opening..",
"screenshot": "http://www.apns.work/xCode/HCTAutoFolding/screen_shot.png"
},
{
"name": "AutoIndentWithSave",
"url": "https://github.com/ThilinaHewagama/AutoIndentWithSave",
"description": "xCode plugin to indent source code when save.",
"screenshot": "http://www.apns.work/xCode/AutoIndentWithSave/screen_shot.png"
},
{
"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://raw.githubusercontent.com/hanton/CopyIssue-Xcode-Plugin/master/screenshots/ScreenShot.png"
},
{
"name": "IndentComments",
"url": "https://github.com/poboke/IndentComments",
"description": "This plugin will let your comments indent.",
"screenshot": "https://github.com/poboke/IndentComments/raw/master/Screenshots/about.png"
},
{
"name": "InjectionPlugin",
"url": "https://github.com/johnno1962/injectionforxcode",
"description": "Inject code changes directly into your running application.",
"screenshot": "http://injection.johnholdsworth.com/democ.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": "IpaExporter",
"url": "https://github.com/poboke/IpaExporter",
"description": "The plugin can export the IPA file from the archive in the Orgnaizer window.",
"screenshot": "https://github.com/poboke/IpaExporter/raw/master/Screenshots/about.png"
},
{
"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.githubusercontent.com/ksuther/KSImageNamed-Xcode/master/screenshot.gif"
},
{
"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.githubusercontent.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": "LLDB, Is It Not?",
"url": "https://github.com/alloy/LLDB-Is-It-Not",
"description": "This Xcode plugin will look in the project root (where you keep your `xcworkspace` or `xcodeproj`) for a `.lldbinit` file and load it."
},
{
"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": "Miku",
"url": "https://github.com/poboke/Miku",
"description": "Miku is a plugin for Xcode. A copy of atom-miku.",
"screenshot": "https://github.com/poboke/Miku/raw/master/Screenshots/about.png"
},
{
"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": "OptionalOutlets",
"url": "https://github.com/fpg1503/OptionalOutlets",
"description": "This Xcode plugin makes @IBOutlets Optional in Xcode.",
"screenshot": "https://raw.githubusercontent.com/fpg1503/OptionalOutlets/master/screenshot.png"
},
{
"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://cl.ly/image/1D000H1D3t2j/Screen%20Shot%202013-09-24%20at%2023.37.27.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.",
"screenshot": "https://raw.githubusercontent.com/neonichu/PuncoverPlugin/master/screenshots/puncover-plugin.png"
},
{
"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\")",
"screenshot": "https://raw.githubusercontent.com/nanaimostudio/Xcode-Quick-Localization/master/Xcode_Quick_Localization_Settings.png"
},
{
"name": "RainyCode",
"url": "https://github.com/dimohamdy/RainyCode",
"description": "Listen to rainymood while coding.",
"screenshot": "https://raw.githubusercontent.com/dimohamdy/RainyCode/master/screenshot.png"
},
{
"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": "You Can Do It",
"url": "https://github.com/orta/You-Can-Do-It",
"description": "Find inspiration with Shia LaBeouf & Orta Therox when it feels like programming just isn't working for you at the moment. You can do it, so get on with it.",
"screenshot": "https://raw.githubusercontent.com/orta/You-Can-Do-It/master/web/doit.png"
},
{
"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": "Reveal-In-GitHub",
"url": "https://github.com/lzwjava/Reveal-In-GitHub",
"description": "Let you jump to Github History, Blame, PRs, Issues, Notifications of current repo in one second.",
"screenshot": "https://cloud.githubusercontent.com/assets/5022872/10865607/a840173e-804b-11e5-93a4-a054743951a7.jpg"
},
{
"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/ImageOptim-screenshot@2x.png"
},
{
"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": "RTTinyPNGWebAPIPlugin",
"url": "https://github.com/rickytan/RTTinyPNGWebAPIPlugin",
"description": "A Xcode plugin which calls http://tinypng.com api to minimize image assets",
"screenshot": "https://github.com/rickytan/RTTinyPNGWebAPIPlugin/raw/master/ScreenShots/s0.png"
},
{
"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",