-
Notifications
You must be signed in to change notification settings - Fork 472
/
Copy pathworkflow_api.json
7307 lines (7307 loc) · 369 KB
/
workflow_api.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
[
{
"workflow_name": "key value Storage",
"workflow_version": "1.0",
"workflow_description_small": "simple key value storage",
"workflow_type": "Everyday Useful workflows",
"workflow_language": "English (America) (en_US)",
"workflow_release_page": "https:\/\/github.com\/zhiqingchen\/kv",
"workflow_download_link": "https:\/\/github.com\/zhiqingchen\/kv\/blob\/master\/kv.alfredworkflow",
"workflow_author_name": "zhiqingchen",
"workflow_author_site": "http:\/\/weibo.com\/1767612335",
"workflow_file": "kv.alfredworkflow",
"workflow_screenshot": ""
},
{
"workflow_name": "Say Words",
"workflow_version": "1.0",
"workflow_description_small": "https:\/\/github.com\/liyaodong\/AlfredWorkflows",
"workflow_type": "Other workflows",
"workflow_language": "English (America) (en_US)",
"workflow_release_page": "https:\/\/github.com\/liyaodong\/AlfredWorkflows",
"workflow_download_link": "https:\/\/github.com\/liyaodong\/AlfredWorkflows\/raw\/master\/Say%20Words.alfredworkflow",
"workflow_author_name": "Vanilla",
"workflow_author_site": "http:\/\/liyaodong.com",
"workflow_file": "Say-Words.alfredworkflow",
"workflow_screenshot": ""
},
{
"workflow_name": "\u4e2d\u56fd\u80a1\u7968\u884c\u60c5",
"workflow_version": "1.0",
"workflow_description_small": "\u67e5\u8be2\u6caa\u6df1\u6307\u6570\u53ca\u80a1\u7968\u884c\u60c5",
"workflow_type": "Productive workflows",
"workflow_language": "Chinese - \u4e2d\u6587 (zh_CN)",
"workflow_release_page": "https:\/\/github.com\/larryisthere\/alfred.workflow.chinastockquotation",
"workflow_download_link": "https:\/\/github.com\/larryzh\/alfred.workflow.chinastockquotation\/raw\/master\/bundle\/ChinaStockQuotation.alfredworkflow?raw=true",
"workflow_author_name": "Larryzh",
"workflow_author_site": "http:\/\/www.zhxl.me",
"workflow_file": "\u4e2d\u56fd\u80a1\u7968\u884c\u60c5.alfredworkflow",
"workflow_screenshot": "\u5c4f\u5e55\u5feb\u7167-2015-02-02-16.54.51.png"
},
{
"workflow_name": "Remote Key",
"workflow_version": "1.0",
"workflow_description_small": "Unlock Mac with Alfred Remote",
"workflow_type": "Productive workflows",
"workflow_language": "English (America) (en_US)",
"workflow_release_page": "https:\/\/github.com\/24says\/Alfred\/blob\/master\/Remote%20Key.alfredworkflow",
"workflow_download_link": "https:\/\/github.com\/24says\/Alfred\/blob\/master\/Remote%20Key.alfredworkflow",
"workflow_author_name": "24Says",
"workflow_author_site": "http:\/\/24says.com",
"workflow_file": "Remote-Key.alfredworkflow",
"workflow_screenshot": "Screen-Shot-2015-01-30-at-16.10.00.png"
},
{
"workflow_name": "\u4eba\u6c11\u5e01\u91d1\u989d\u5927\u5199",
"workflow_version": "1.0",
"workflow_description_small": "\u8f6c\u6362\u6570\u5b57\u4e3a\u4eba\u6c11\u5e01\u91d1\u989d",
"workflow_type": "Everyday Useful workflows",
"workflow_language": "Chinese - \u4e2d\u6587 (zh_CN)",
"workflow_release_page": "https:\/\/github.com\/yourtion\/Alfred_NumToCny",
"workflow_download_link": "https:\/\/github.com\/yourtion\/Alfred_NumToCny\/raw\/master\/%E4%BA%BA%E6%B0%91%E5%B8%81%E9%87%91%E9%A2%9D%E5%A4%A7%E5%86%99.alfredworkflow",
"workflow_author_name": "Yourtion",
"workflow_author_site": "http:\/\/blog.yourtion.com",
"workflow_file": "\u4eba\u6c11\u5e01\u91d1\u989d\u5927\u5199.alfredworkflow",
"workflow_screenshot": "ScreenShot.jpg"
},
{
"workflow_name": "WifiSwitcher",
"workflow_version": "1.0",
"workflow_description_small": "wifi\u5207\u6362\u5668",
"workflow_type": "Productive workflows",
"workflow_language": "Chinese - \u4e2d\u6587 (zh_CN)",
"workflow_release_page": "http:\/\/www.lsfen.com",
"workflow_download_link": "https:\/\/github.com\/xxx\/xxx.alfredworkflow",
"workflow_author_name": "yeedomliu",
"workflow_author_site": "http:\/\/www.lsfen.com",
"workflow_file": "WifiSwitcher.alfredworkflow",
"workflow_screenshot": "\u5c4f\u5e55\u5feb\u7167-2015-01-27-\u4e0a\u53489.35.42.png"
},
{
"workflow_name": "\u7231\u8bcd\u9738(\u542b\u97f3\u6807)",
"workflow_version": "1.1",
"workflow_description_small": "\u5305\u542b\u97f3\u6807\u7684\u7231\u8bcd\u9738\u67e5\u8be2",
"workflow_type": "Productive workflows",
"workflow_language": "Chinese - \u4e2d\u6587 (zh_CN)",
"workflow_release_page": "http:\/\/",
"workflow_download_link": "https:\/\/github.com\/xxx\/xxx.alfredworkflow",
"workflow_author_name": "sunnysign",
"workflow_author_site": "http:\/\/",
"workflow_file": "dict_soundmark.alfredworkflow",
"workflow_screenshot": ""
},
{
"workflow_name": "Google CN Translate",
"workflow_version": "1.0",
"workflow_description_small": "Translate via Google.cn",
"workflow_type": "Productive workflows",
"workflow_language": "Chinese - \u4e2d\u6587 (zh_CN)",
"workflow_release_page": "http:\/\/",
"workflow_download_link": "http:\/\/www.lsfen.com\/download\/GoogleCNTranslate.alfredworkflow",
"workflow_author_name": "yeedomliu",
"workflow_author_site": "http:\/\/",
"workflow_file": "Google-CN-Translate.alfredworkflow",
"workflow_screenshot": "\u5c4f\u5e55\u5feb\u7167-2015-01-17-\u4e0b\u53487.18.58.png"
},
{
"workflow_name": "Uni Call",
"workflow_version": "6.02",
"workflow_description_small": "The missing universal audio, video call and text workflow for Alfred",
"workflow_type": "Everyday Useful workflows",
"workflow_language": "English (British) (en_GB)",
"workflow_release_page": "http:\/\/unicall.guiguan.net",
"workflow_download_link": "http:\/\/www.guiguan.net\/download\/uni-call-alfredworkflow",
"workflow_author_name": "Guan Gui",
"workflow_author_site": "http:\/\/www.guiguan.net",
"workflow_file": "Uni-Call.alfredworkflow",
"workflow_screenshot": "slide-4.png"
},
{
"workflow_name": "Baidu Translate",
"workflow_version": "2.0",
"workflow_description_small": "Call baidu translate API, provide multilingual translation in real time",
"workflow_type": "Everyday Useful workflows",
"workflow_language": "English (America) (en_US)",
"workflow_release_page": "https:\/\/github.com\/diegozeng\/Alfred-workflow-baidu-translate",
"workflow_download_link": "https:\/\/github.com\/diegozeng\/Alfred-workflow-baidu-translate\/blob\/master\/baidu%20translate.alfredworkflow",
"workflow_author_name": "Tao Zeng",
"workflow_author_site": "https:\/\/diegozeng.github.io",
"workflow_file": "baidu-translate.alfredworkflow",
"workflow_screenshot": "JP\uff0dCH.png"
},
{
"workflow_name": "Calendar",
"workflow_version": "1.1",
"workflow_description_small": "Displays a monthly calendar",
"workflow_type": "Everyday Useful workflows",
"workflow_language": "English (America) (en_US)",
"workflow_release_page": "https:\/\/github.com\/owenwater\/alfred-cal",
"workflow_download_link": "https:\/\/github.com\/owenwater\/alfred-cal\/blob\/master\/Calendar.alfredworkflow?raw=true",
"workflow_author_name": "owenwater",
"workflow_author_site": "https:\/\/github.com\/owenwater",
"workflow_file": "Calendar.alfredworkflow",
"workflow_screenshot": "screenshot1.png"
},
{
"workflow_name": "Iciba Translation",
"workflow_version": "0.9",
"workflow_description_small": "Use Iciba Open API to translate English to Chinese",
"workflow_type": "Productive workflows",
"workflow_language": "Chinese - \u4e2d\u6587 (zh_CN)",
"workflow_release_page": "https:\/\/github.com\/cztchoice\/alfred_workflow",
"workflow_download_link": "https:\/\/github.com\/cztchoice\/alfred_workflow\/raw\/master\/Iciba%20Translate.alfredworkflow",
"workflow_author_name": "Zhitao Chen",
"workflow_author_site": "http:\/\/zhitao.me",
"workflow_file": "Iciba-Translate.alfredworkflow",
"workflow_screenshot": "Screen-Shot-2014-12-28-at-20.55.23.png"
},
{
"workflow_name": "Macdown",
"workflow_version": "1.0",
"workflow_description_small": "Open .md in Macdown",
"workflow_type": "Productive workflows",
"workflow_language": "Esperanto (eo)",
"workflow_release_page": "https:\/\/github.com\/RoyXue\/Alfred_workflows\/tree\/master\/Macdown",
"workflow_download_link": "https:\/\/github.com\/RoyXue\/Alfred_workflows\/tree\/master\/Macdown\/Macdown.alfredworkflow",
"workflow_author_name": "Roy Xue",
"workflow_author_site": "http:\/\/royxue.me",
"workflow_file": "Macdown.alfredworkflow",
"workflow_screenshot": ""
},
{
"workflow_name": "Forvo",
"workflow_version": "1.0",
"workflow_description_small": "A pronunciation workflow based on Forvo.com.",
"workflow_type": "Other workflows",
"workflow_language": "English (America) (en_US)",
"workflow_release_page": "https:\/\/github.com\/owenwater\/alfred-forvo",
"workflow_download_link": "https:\/\/github.com\/owenwater\/alfred-forvo\/blob\/master\/Forvo.alfredworkflow?raw=true",
"workflow_author_name": "owenwater",
"workflow_author_site": "https:\/\/github.com\/owenwater",
"workflow_file": "Forvo.alfredworkflow",
"workflow_screenshot": "screenshot1.png"
},
{
"workflow_name": "\u4e9a\u9a6c\u900a\u641c\u7d22\u5efa\u8bae",
"workflow_version": "1.0",
"workflow_description_small": "\u4e2d\u56fd\u533a\u4e9a\u9a6c\u900a\u641c\u7d22\u5efa\u8bae\uff08\u5728\u5185\u7f6eworkflows\u4e0a\u4fee\u6539\uff09",
"workflow_type": "Web workflows",
"workflow_language": "Chinese - \u4e2d\u6587 (zh_CN)",
"workflow_release_page": "http:\/\/",
"workflow_download_link": "",
"workflow_author_name": "tinyyi",
"workflow_author_site": "http:\/\/tinyyi.com",
"workflow_file": "\u4e9a\u9a6c\u900a\u641c\u7d22\u5efa\u8bae.alfredworkflow",
"workflow_screenshot": "sc.png"
},
{
"workflow_name": "Safari-Chrome Switcher",
"workflow_version": "1.0",
"workflow_description_small": "Send the current Safari tab to Chrome or the other way around. \u5c06Safari\u7684\u6807\u7b7e\u9875\u53d1\u9001\u5230Chrome\u4e2d\u6253\u5f00\uff0c\u6216\u8005\u53cd\u8fc7\u6765\u3002",
"workflow_type": "Actions workflows",
"workflow_language": "English (America) (en_US)",
"workflow_release_page": "",
"workflow_download_link": "",
"workflow_author_name": "Songcrates",
"workflow_author_site": "https:\/\/twitter.com\/Songcrates911",
"workflow_file": "Safari-Chrome-Switcher.alfredworkflow",
"workflow_screenshot": "Screen-Shot-2014-12-18-at-5.17.46-PM.png"
},
{
"workflow_name": "Search in Maven Central Repo",
"workflow_version": "1.0",
"workflow_description_small": "Search in Maven Central Repo and paste it.",
"workflow_type": "Productive workflows",
"workflow_language": "English (America) (en_US)",
"workflow_release_page": "https:\/\/github.com\/yisiqi\/alfred2-workflow-maven",
"workflow_download_link": "",
"workflow_author_name": "Yi Siqi",
"workflow_author_site": "http:\/\/yisisiq.github.io",
"workflow_file": "Search-in-Maven-Central-Repository.alfredworkflow",
"workflow_screenshot": "ffout147.png"
},
{
"workflow_name": "Lock the Dock",
"workflow_version": "1.0",
"workflow_description_small": "Lock the dock to prevent changes caused by misoperation. \u9501\u4f4f Dock \u4ee5\u9632\u6b62\u8bef\u64cd\u4f5c\u3002",
"workflow_type": "Control Your Mac workflows",
"workflow_language": "English (America) (en_US)",
"workflow_release_page": "",
"workflow_download_link": "",
"workflow_author_name": "Songcrates",
"workflow_author_site": "https:\/\/twitter.com\/Songcrates911",
"workflow_file": "Lock-the-Dock.alfredworkflow",
"workflow_screenshot": ""
},
{
"workflow_name": "\u767e\u5ea6\u7ffb\u8bd1",
"workflow_version": "1.0",
"workflow_description_small": "\u767e\u5ea6\u7ffb\u8bd1",
"workflow_type": "Everyday Useful workflows",
"workflow_language": "Chinese - \u4e2d\u6587 (zh_CN)",
"workflow_release_page": "https:\/\/github.com\/zxyah\/alfred",
"workflow_download_link": "https:\/\/github.com\/zxyah\/alfred\/blob\/master\/Baidu-Translate\/%E7%99%BE%E5%BA%A6%E7%BF%BB%E8%AF%91.alfredworkflow?raw=true",
"workflow_author_name": "zack",
"workflow_author_site": "https:\/\/github.com\/zxyah",
"workflow_file": "\u767e\u5ea6\u7ffb\u8bd1.alfredworkflow",
"workflow_screenshot": "Baidu-Translate.png"
},
{
"workflow_name": "Open iTerm At Current Finder Path",
"workflow_version": "1.0",
"workflow_description_small": "Open current folder in iTerm",
"workflow_type": "Actions workflows",
"workflow_language": "English (America) (en_US)",
"workflow_release_page": "https:\/\/github.com\/hisway\/workflows",
"workflow_download_link": "https:\/\/github.com\/hisway\/workflows\/raw\/master\/Open%20iTerm%20At%20Current%20Finder%20Path.alfredworkflow",
"workflow_author_name": "hisway",
"workflow_author_site": "http:\/\/hesiwei.cn",
"workflow_file": "Open-iTerm-At-Current-Finder-Path.alfredworkflow",
"workflow_screenshot": ""
},
{
"workflow_name": "IME",
"workflow_version": "1.0",
"workflow_description_small": "A Input method program based on Google Input Tools",
"workflow_type": "Everyday Useful workflows",
"workflow_language": "English (America) (en_US)",
"workflow_release_page": "https:\/\/github.com\/owenwater\/alfred-ime",
"workflow_download_link": "https:\/\/github.com\/owenwater\/alfred-ime\/blob\/master\/IME.alfredworkflow?raw=true",
"workflow_author_name": "owenwater",
"workflow_author_site": "https:\/\/github.com\/owenwater",
"workflow_file": "IME.alfredworkflow",
"workflow_screenshot": ""
},
{
"workflow_name": "r\/ ",
"workflow_version": "1.0",
"workflow_description_small": "reddit on alfred",
"workflow_type": "Web workflows",
"workflow_language": "Chinese - \u4e2d\u6587 (zh_CN)",
"workflow_release_page": "https:\/\/github.com\/cadl\/r-alfredworkflow",
"workflow_download_link": "https:\/\/github.com\/cadl\/r-alfredworkflow",
"workflow_author_name": "cadl",
"workflow_author_site": "https:\/\/twitter.com\/ctrlaltdeletel",
"workflow_file": "r.alfredworkflow",
"workflow_screenshot": "screenshot.png"
},
{
"workflow_name": "Local Unity3D Script Manual",
"workflow_version": "1.0",
"workflow_description_small": "Find Keywords on Local Unity3D Script Manual",
"workflow_type": "Productive workflows",
"workflow_language": "English (America) (en_US)",
"workflow_release_page": "http:\/\/",
"workflow_download_link": "https:\/\/github.com\/xxx\/xxx.alfredworkflow",
"workflow_author_name": "Waigo",
"workflow_author_site": "http:\/\/www.108km.com",
"workflow_file": "Local-Unity3D-Script-Manual.alfredworkflow",
"workflow_screenshot": "Screen-Shot-2014-11-06-at-\u4e0b\u53487.30.59.png"
},
{
"workflow_name": "Yosemite Phone",
"workflow_version": "1.0",
"workflow_description_small": "Call Number from iPhone",
"workflow_type": "Productive workflows",
"workflow_language": "Chinese - \u4e2d\u6587 (zh_CN)",
"workflow_release_page": "https:\/\/github.com\/24says\/Alfred",
"workflow_download_link": "https:\/\/github.com\/24says\/Alfred\/blob\/master\/Yosemite%20Phone.alfredworkflow",
"workflow_author_name": "24Says",
"workflow_author_site": "http:\/\/24says.com",
"workflow_file": "Yosemite-Phone.alfredworkflow",
"workflow_screenshot": "Screen-Shot-2014-10-29-at-17.17.47.png"
},
{
"workflow_name": "WeMo Control",
"workflow_version": "1.1",
"workflow_description_small": "Control your Belkin WeMo Switch from Alfred",
"workflow_type": "Actions workflows",
"workflow_language": "English (America) (en_US)",
"workflow_release_page": "http:\/\/lucatnt.com\/2014\/05\/wemo-control-workflow-for-alfred\/",
"workflow_download_link": "http:\/\/cl.ly\/YFSw",
"workflow_author_name": "LucaTNT",
"workflow_author_site": "http:\/\/lucatnt.com\/",
"workflow_file": "WeMo-Control.alfredworkflow",
"workflow_screenshot": "Screen-Shot-2014-05-11-at-21.18.21.png"
},
{
"workflow_name": "Shadow Killer",
"workflow_version": "1.1",
"workflow_description_small": "Disable Screenshot Shadow \u5173\u95ed\u7cfb\u7edf\u622a\u56fe\u65f6\u7684\u7a97\u53e3\u9634\u5f71",
"workflow_type": "Productive workflows",
"workflow_language": "English (America) (en_US)",
"workflow_release_page": "https:\/\/github.com\/24says\/Alfred",
"workflow_download_link": "https:\/\/github.com\/24says\/Alfred\/raw\/master\/Screenshot%20Shadow%20Killer.alfredworkflow",
"workflow_author_name": "24Says",
"workflow_author_site": "http:\/\/24says.com",
"workflow_file": "Kill-Process.alfredworkflow",
"workflow_screenshot": "Screen-Shot-2014-10-28-at-03.56.36.png"
},
{
"workflow_name": "Apple Account Switcher",
"workflow_version": "1.3",
"workflow_description_small": "Switch between Apple accounts in iTunes, App Store and iBooks (using Keychain) (Apple \u591a\u8d26\u6237\u5207\u6362)",
"workflow_type": "Control Your Mac workflows",
"workflow_language": "English (America) (en_US)",
"workflow_release_page": "http:\/\/v2ex.com\/t\/101342",
"workflow_download_link": "http:\/\/cl.ly\/Xqnl\/download\/Apple%20Account%20Switcher%201.3.alfredworkflow",
"workflow_author_name": "Sylv",
"workflow_author_site": "http:\/\/v2ex.com\/t\/101342",
"workflow_file": "Apple-Account-Switcher-1.3.alfredworkflow",
"workflow_screenshot": "bea9001bgw1eds0h9qq8kj20sg0bmmyu.jpg"
},
{
"workflow_name": "\u771f\u76f8",
"workflow_version": "0.1",
"workflow_description_small": "\u8d85\u5feb\u6dfb\u52a0\u6587\u5b57\u540e\u7684\u62fc\u97f3\uff0c\u4f8b\uff1a\u606d(kuai)\u559c(fa)\u53d1(hong)\u8d22(bao)\u3002\u8d34\u5fc3\u5c0f\u5de5\u5177",
"workflow_type": "Productive workflows",
"workflow_language": "Chinese - \u4e2d\u6587 (zh_CN)",
"workflow_release_page": "https:\/\/github.com\/swaydeng\/zx",
"workflow_download_link": "https:\/\/raw.githubusercontent.com\/swaydeng\/zx\/master\/download\/zx.alfredworkflow",
"workflow_author_name": "swaydeng",
"workflow_author_site": "https:\/\/twitter.com\/swaydeng",
"workflow_file": "zx.alfredworkflow",
"workflow_screenshot": "2.jpg"
},
{
"workflow_name": "SpamSieve Hider",
"workflow_version": "1.0",
"workflow_description_small": "Hide and show SpamSieve dock icon",
"workflow_type": "Control Your Mac workflows",
"workflow_language": "English (America) (en_US)",
"workflow_release_page": "http:\/\/",
"workflow_download_link": "https:\/\/github.com\/xxx\/xxx.alfredworkflow",
"workflow_author_name": "MrMatthias",
"workflow_author_site": "http:\/\/",
"workflow_file": "SpamSieve.alfredworkflow",
"workflow_screenshot": ""
},
{
"workflow_name": "ChangeScrollDirection",
"workflow_version": "1.0",
"workflow_description_small": "Change Track Pad ScrollDirection",
"workflow_type": "Control Your Mac workflows",
"workflow_language": "Chinese - \u4e2d\u6587 (zh_CN)",
"workflow_release_page": "http:\/\/",
"workflow_download_link": "https:\/\/github.com\/xxx\/xxx.alfredworkflow",
"workflow_author_name": "Da Weng",
"workflow_author_site": "http:\/\/",
"workflow_file": "ChangeScrollDirection.alfredworkflow",
"workflow_screenshot": ""
},
{
"workflow_name": "jQuery\u4e2d\u6587API",
"workflow_version": "1.0",
"workflow_description_small": "jQuery\u4e2d\u6587API",
"workflow_type": "Web workflows",
"workflow_language": "Chinese - \u4e2d\u6587 (zh_CN)",
"workflow_release_page": "https:\/\/github.com\/kennylee26\/jquery.api.cn.alfredworkflow",
"workflow_download_link": "https:\/\/github.com\/kennylee26\/jquery.api.cn.alfredworkflow\/raw\/master\/jQueryAPI_CN.alfredworkflow",
"workflow_author_name": "KennyLee",
"workflow_author_site": "http:\/\/weibo.com\/kenny26",
"workflow_file": "jQueryAPI_CN.alfredworkflow",
"workflow_screenshot": "jquery.png"
},
{
"workflow_name": "Dict - Lookup Word",
"workflow_version": "1.0",
"workflow_description_small": "\u591a\u529f\u80fd\u3001\u5feb\u901f\u3001\u6613\u7528\u7684 Alfred \u67e5\u8bcd\u6269\u5c55\u3002",
"workflow_type": "Productive workflows",
"workflow_language": "Chinese - \u4e2d\u6587 (zh_CN)",
"workflow_release_page": "https:\/\/github.com\/liberize\/alfred-dict-workflow",
"workflow_download_link": "https:\/\/github.com\/liberize\/alfred-dict-workflow\/raw\/master\/Dict%20-%20Lookup%20Word.alfredworkflow",
"workflow_author_name": "liberize",
"workflow_author_site": "http:\/\/liberize.me\/",
"workflow_file": "Dict-Lookup-Word.alfredworkflow",
"workflow_screenshot": "screenshot.png"
},
{
"workflow_name": "API\u5728\u7ebf\u6587\u6863\u641c\u7d22",
"workflow_version": "1.0",
"workflow_description_small": "API\u5728\u7ebf\u6587\u6863\u641c\u7d22",
"workflow_type": "Web workflows",
"workflow_language": "Chinese - \u4e2d\u6587 (zh_CN)",
"workflow_release_page": "https:\/\/github.com\/jShi-git\/apis",
"workflow_download_link": "https:\/\/raw.githubusercontent.com\/jShi-git\/apis\/master\/download\/API.alfredworkflow",
"workflow_author_name": "stuart",
"workflow_author_site": "http:\/\/www.shizuwu.cn",
"workflow_file": "API.alfredworkflow",
"workflow_screenshot": "api.jpg"
},
{
"workflow_name": "\u83dc\u8c31\u641c\u7d22",
"workflow_version": "1.0",
"workflow_description_small": "\u8f93\u5165\u98df\u6750\u6216\u83dc\u540d\uff0c\u641c\u7d22\u83dc\u8c31",
"workflow_type": "Web workflows",
"workflow_language": "Chinese - \u4e2d\u6587 (zh_CN)",
"workflow_release_page": "https:\/\/github.com\/jShi-git\/cookbook",
"workflow_download_link": "https:\/\/raw.githubusercontent.com\/jShi-git\/cookbook\/master\/download\/%E8%8F%9C%E8%B0%B1.alfredworkflow",
"workflow_author_name": "stuart",
"workflow_author_site": "http:\/\/www.shizuwu.cn",
"workflow_file": "\u83dc\u8c31.alfredworkflow",
"workflow_screenshot": "cc.jpg"
},
{
"workflow_name": "\u89c6\u9891\u4e0b\u8f7d",
"workflow_version": "1.0",
"workflow_description_small": "\u4e24\u4e2a\u529f\u80fd\uff1a\u78c1\u529b\u641c\u7d22 & \u56fd\u5185\u4e3b\u6d41\u89c6\u9891\u7ad9\u4e0b\u8f7d\u76f4\u94fe",
"workflow_type": "Web workflows",
"workflow_language": "Chinese - \u4e2d\u6587 (zh_CN)",
"workflow_release_page": "http:\/\/",
"workflow_download_link": "https:\/\/github.com\/xxx\/xxx.alfredworkflow",
"workflow_author_name": "stuart",
"workflow_author_site": "http:\/\/github.com\/jShi-git",
"workflow_file": "\u89c6\u9891\u4e0b\u8f7d.alfredworkflow",
"workflow_screenshot": "20140828040737741_easyicon_net_256.png"
},
{
"workflow_name": "number convertor\uff08\u8fdb\u5236\u8f6c\u6362\uff09",
"workflow_version": "1.0",
"workflow_description_small": "\u8f6c\u6362\u6570\u5b57\u8fdb\u5236\uff0c\u652f\u63012\uff0c8\uff0c10\uff0c16\u56db\u79cd\u8fdb\u5236\u8f6c\u6362",
"workflow_type": "Productive workflows",
"workflow_language": "Chinese - \u4e2d\u6587 (zh_CN)",
"workflow_release_page": "",
"workflow_download_link": "",
"workflow_author_name": "ofisheye",
"workflow_author_site": "http:\/\/",
"workflow_file": "Number-Convertor.alfredworkflow",
"workflow_screenshot": ""
},
{
"workflow_name": "\u6c34\u6728\u793e\u533a",
"workflow_version": "0.1",
"workflow_description_small": "Browse newsmth.net bbs in Alfred",
"workflow_type": "Web workflows",
"workflow_language": "Chinese - \u4e2d\u6587 (zh_CN)",
"workflow_release_page": "http:\/\/github.com\/yrlihuan\/smth.alfredworkflow",
"workflow_download_link": "https:\/\/github.com\/yrlihuan\/smth.alfredworkflow\/raw\/master\/release\/smth.alfredworkflow",
"workflow_author_name": "yrlihuan",
"workflow_author_site": "http:\/\/github.com\/yrlihuan",
"workflow_file": "smth.alfredworkflow",
"workflow_screenshot": "Screen-Shot-2014-08-07-at-4.37.31-PM.png"
},
{
"workflow_name": "WiFi Toggle",
"workflow_version": "1.0",
"workflow_description_small": "Simple WiFi toggle with notification",
"workflow_type": "Control Your Mac workflows",
"workflow_language": "English (British) (en_GB)",
"workflow_release_page": "https:\/\/github.com\/trentmilton\/alfred-wifi-toggle\/releases\/tag\/v1.0",
"workflow_download_link": "https:\/\/github.com\/trentmilton\/alfred-wifi-toggle\/releases\/download\/v1.0\/WiFi.Toggle.alfredworkflow",
"workflow_author_name": "trentmilton",
"workflow_author_site": "http:\/\/www.trentmilton.com",
"workflow_file": "WiFi-Toggle.alfredworkflow",
"workflow_screenshot": ""
},
{
"workflow_name": "smth",
"workflow_version": "0.1",
"workflow_description_small": "\u6d4f\u89c8\u6c34\u6728\u793e\u533a",
"workflow_type": "Web workflows",
"workflow_language": "Chinese - \u4e2d\u6587 (zh_CN)",
"workflow_release_page": "https:\/\/github.com\/yrlihuan\/smth.alfredworkflow",
"workflow_download_link": "https:\/\/github.com\/yrlihuan\/smth.alfredworkflow\/raw\/master\/release\/smth.alfredworkflow",
"workflow_author_name": "yrlihuan",
"workflow_author_site": "http:\/\/",
"workflow_file": "smth.alfredworkflow",
"workflow_screenshot": ""
},
{
"workflow_name": "eatkeep",
"workflow_version": "1.0",
"workflow_description_small": "Add meals to eatkeep quickly with alfred",
"workflow_type": "Actions workflows",
"workflow_language": "English (America) (en_US)",
"workflow_release_page": "http:\/\/www.eatkeep.io\/mac",
"workflow_download_link": "https:\/\/github.com\/xxx\/xxx.alfredworkflow",
"workflow_author_name": "eatkeep",
"workflow_author_site": "http:\/\/www.eatkeep.io",
"workflow_file": "eatkeep.alfredworkflow",
"workflow_screenshot": ""
},
{
"workflow_name": "Doamin Searcher",
"workflow_version": "1.0",
"workflow_description_small": "Check domain's availability | \u68c0\u67e5\u57df\u540d\u662f\u5426\u53ef\u6ce8\u518c",
"workflow_type": "Other workflows",
"workflow_language": "English (America) (en_US)",
"workflow_release_page": "https:\/\/github.com\/Lings\/AlfredDomainSearcher",
"workflow_download_link": "https:\/\/raw.githubusercontent.com\/Lings\/AlfredDomainSearcher\/master\/Domain Searcher.alfredworkflow",
"workflow_author_name": "Lings He",
"workflow_author_site": "http:\/\/weibo.com\/yuhaohe",
"workflow_file": "Domain-Searcher.alfredworkflow",
"workflow_screenshot": "dm.jpeg"
},
{
"workflow_name": "CopyPublicKey",
"workflow_version": "1.0",
"workflow_description_small": "Filter and copy SSH public key",
"workflow_type": "Productive workflows",
"workflow_language": "English (America) (en_US)",
"workflow_release_page": "http:\/\/www.oldcai.com\/archives\/992",
"workflow_download_link": "http:\/\/www.oldcai.com\/wp-content\/uploads\/2014\/07\/CopyPublicKey.zip",
"workflow_author_name": "oldcai",
"workflow_author_site": "http:\/\/www.oldcai.com\/",
"workflow_file": "CopyPublicKey.alfredworkflow",
"workflow_screenshot": "copy-public-key.png"
},
{
"workflow_name": "vdisk",
"workflow_version": "1.0",
"workflow_description_small": "Search the vdisk resource in alfred",
"workflow_type": "Web workflows",
"workflow_language": "Chinese - \u4e2d\u6587 (zh_CN)",
"workflow_release_page": "https:\/\/github.com\/xmurobi\/vdisk.alfredworkflow\/releases\/tag\/v1.0",
"workflow_download_link": "https:\/\/github.com\/xmurobi\/vdisk.alfredworkflow",
"workflow_author_name": "Robi",
"workflow_author_site": "http:\/\/",
"workflow_file": "vdisk.alfredworkflow",
"workflow_screenshot": ""
},
{
"workflow_name": "\u90aa\u8def(Xie.lu)",
"workflow_version": "1.1",
"workflow_description_small": "Workflow for xie.lu ",
"workflow_type": "Web workflows",
"workflow_language": "Chinese - \u4e2d\u6587 (zh_CN)",
"workflow_release_page": "https:\/\/github.com\/woooha\/xielu_workflow",
"workflow_download_link": "https:\/\/github.com\/woooha\/xielu_workflow\/blob\/master\/Xielu.alfredworkflow",
"workflow_author_name": "woooha",
"workflow_author_site": "http:\/\/yang-fan.com",
"workflow_file": "Xielu.alfredworkflow",
"workflow_screenshot": ""
},
{
"workflow_name": "clojuredocs",
"workflow_version": "1.0",
"workflow_description_small": "\u901f\u67e5clojuredocs",
"workflow_type": "Feedback workflows",
"workflow_language": "English (America) (en_US)",
"workflow_release_page": "http:\/\/",
"workflow_download_link": "https:\/\/github.com\/xxx\/xxx.alfredworkflow",
"workflow_author_name": "season",
"workflow_author_site": "http:\/\/",
"workflow_file": "clojuredocs.alfredworkflow",
"workflow_screenshot": ""
},
{
"workflow_name": "NBA top news on ESPN",
"workflow_version": "1.0",
"workflow_description_small": "fetch top news of NBA from ESPN",
"workflow_type": "Web workflows",
"workflow_language": "English (America) (en_US)",
"workflow_release_page": "https:\/\/github.com\/ZaffRahn\/Alfred-workflow-NBA-news",
"workflow_download_link": "https:\/\/github.com\/ZaffRahn\/Alfred-workflow-NBA-news\/blob\/master\/NBA%20top%20news%20on%20ESPN.alfredworkflow",
"workflow_author_name": "Rahn",
"workflow_author_site": "rahn.me",
"workflow_file": "NBA-top-news-on-ESPN.alfredworkflow",
"workflow_screenshot": "Screen-Shot-2014-06-26-at-9.58.22.png"
},
{
"workflow_name": "DirectlySwitchKeyboard",
"workflow_version": "1.0",
"workflow_description_small": "Directly switcher keyboard layouts",
"workflow_type": "Productive workflows",
"workflow_language": "English (America) (en_US)",
"workflow_release_page": "https:\/\/github.com\/bimawa\/alfredWorkFlows",
"workflow_download_link": "https:\/\/github.com\/bimawa\/alfredWorkFlows\/blob\/master\/DirectlySwitchKeyboard.alfredworkflow",
"workflow_author_name": "Maxim Bunkow (aka Bimawa)",
"workflow_author_site": "https:\/\/github.com\/bimawa",
"workflow_file": "DirectlySwitchKeyboard.alfredworkflow",
"workflow_screenshot": ""
},
{
"workflow_name": "Whois",
"workflow_version": "1.0",
"workflow_description_small": "WHOIS lookups for internet domains",
"workflow_type": "Productive workflows",
"workflow_language": "English (America) (en_US)",
"workflow_release_page": "https:\/\/github.com\/mj3052\/alfred-whois",
"workflow_download_link": "https:\/\/github.com\/mj3052\/alfred-whois\/raw\/master\/WHOIS.alfredworkflow",
"workflow_author_name": "Mathias Jensen",
"workflow_author_site": "http:\/\/mjdk.dk",
"workflow_file": "WHOIS.alfredworkflow",
"workflow_screenshot": "Screenshot-2014-06-17-00.34.38.png"
},
{
"workflow_name": "SSH Key",
"workflow_version": "1.0",
"workflow_description_small": "Workflow that copys you public key",
"workflow_type": "Productive workflows",
"workflow_language": "English (British) (en_GB)",
"workflow_release_page": "https:\/\/github.com\/adamwen829\/sshkey",
"workflow_download_link": "https:\/\/github.com\/adamwen829\/sshkey-alfred\/raw\/master\/SSHKey.alfredworkflow",
"workflow_author_name": "Adam Wen",
"workflow_author_site": "http:\/\/www.darkof.com",
"workflow_file": "SSHKey.alfredworkflow",
"workflow_screenshot": ""
},
{
"workflow_name": "\u6709\u9053\u7ffb\u8bd1 | Youdao Translate",
"workflow_version": "1.0",
"workflow_description_small": "\u6709\u9053\u7ffb\u8bd1\uff0c\u8d85\u8be6\u7ec6\u5185\u5bb9 | Youdao Translate With More Detail",
"workflow_type": "Everyday Useful workflows",
"workflow_language": "Chinese - \u4e2d\u6587 (zh_CN)",
"workflow_release_page": "https:\/\/github.com\/wensonsmith\/YoudaoTranslate.git",
"workflow_download_link": "https:\/\/github.com\/wensonsmith\/YoudaoTranslate\/raw\/master\/Youdao%20Translate.alfredworkflow",
"workflow_author_name": "WensonSmith",
"workflow_author_site": "http:\/\/www.seekbetter.me",
"workflow_file": "Youdao-Translate.alfredworkflow",
"workflow_screenshot": "screenshot2.png"
},
{
"workflow_name": "Baidu Weather Forecast | \u767e\u5ea6\u5929\u6c14\u9884\u62a5",
"workflow_version": "1.0",
"workflow_description_small": "\u4f7f\u7528\u767e\u5ea6API\u505a\u7684\u5929\u6c14\u9884\u62a5\uff0c\u901f\u5ea6\u8d85\u5feb\uff01| Weather Forecast Using Baidu API with fast speed",
"workflow_type": "Everyday Useful workflows",
"workflow_language": "Chinese - \u4e2d\u6587 (zh_CN)",
"workflow_release_page": "https:\/\/github.com\/wensonsmith\/weather-workflow",
"workflow_download_link": "https:\/\/github.com\/wensonsmith\/weather-workflow\/raw\/master\/Baidu%20Weather.alfredworkflow",
"workflow_author_name": "WensonSmith",
"workflow_author_site": "http:\/\/www.seekbetter.me",
"workflow_file": "Baidu-Weather.alfredworkflow",
"workflow_screenshot": "baidu_weather-2.png"
},
{
"workflow_name": "Dued ",
"workflow_version": "0.2",
"workflow_description_small": "Formatted dates added to your clipboard",
"workflow_type": "Productive workflows",
"workflow_language": "English (America) (en_US)",
"workflow_release_page": "https:\/\/github.com\/unforswearing\/dued",
"workflow_download_link": "https:\/\/github.com\/unforswearing\/dued\/blob\/master\/dued.alfredworkflow",
"workflow_author_name": "Alvin\/Unforswearing",
"workflow_author_site": "http:\/\/",
"workflow_file": "dued.alfredworkflow",
"workflow_screenshot": ""
},
{
"workflow_name": "fis",
"workflow_version": "2.0",
"workflow_description_small": "an api search tool of FIS",
"workflow_type": "Other workflows",
"workflow_language": "Chinese - \u4e2d\u6587 (zh_CN)",
"workflow_release_page": "https:\/\/github.com\/xiangshouding\/alfred-workflows",
"workflow_download_link": "https:\/\/github.com\/xiangshouding\/alfred-workflows\/blob\/master\/download\/fis-workflow.alfredworkflow?raw=true",
"workflow_author_name": "xiangshouding",
"workflow_author_site": "http:\/\/www.orrafy.com",
"workflow_file": "fis-workflow.alfredworkflow",
"workflow_screenshot": "fis-workflow.png"
},
{
"workflow_name": "Mou",
"workflow_version": "1.0",
"workflow_description_small": "Use \"moo\" to open .md file in Mou",
"workflow_type": "Actions workflows",
"workflow_language": "English (America) (en_US)",
"workflow_release_page": "https:\/\/github.com\/RoyXue\/Alfred_workflows\/tree\/master\/Mou",
"workflow_download_link": "https:\/\/github.com\/RoyXue\/Alfred_workflows\/blob\/master\/Mou\/Mou.alfredworkflow",
"workflow_author_name": "Roy Xue",
"workflow_author_site": "http:\/\/royxue.me\/",
"workflow_file": "Mou.alfredworkflow",
"workflow_screenshot": "mou.png"
},
{
"workflow_name": "Virtualenvwrapper workon",
"workflow_version": "1.0",
"workflow_description_small": "Opens terminal tab and enters the virtualenv",
"workflow_type": "Actions workflows",
"workflow_language": "English (British) (en_GB)",
"workflow_release_page": "http:\/\/",
"workflow_download_link": "https:\/\/github.com\/xxx\/xxx.alfredworkflow",
"workflow_author_name": "James Lin",
"workflow_author_site": "http:\/\/james.lin.net.nz",
"workflow_file": "Workon.alfredworkflow",
"workflow_screenshot": ""
},
{
"workflow_name": "Eject",
"workflow_version": "1.0",
"workflow_description_small": "Ejects all removable media",
"workflow_type": "Control Your Mac workflows",
"workflow_language": "English (America) (en_US)",
"workflow_release_page": "http:\/\/",
"workflow_download_link": "https:\/\/github.com\/xxx\/xxx.alfredworkflow",
"workflow_author_name": "Marcelo Subtil Marcal",
"workflow_author_site": "http:\/\/blog.smarcal.com",
"workflow_file": "Eject.alfredworkflow",
"workflow_screenshot": ""
},
{
"workflow_name": "\u767e\u5ea6\u7f51\u76d8\u641c\u7d22",
"workflow_version": "1.5",
"workflow_description_small": "\u767e\u5ea6\u7f51\u76d8\u5206\u4eab\u641c\u7d22",
"workflow_type": "Productive workflows",
"workflow_language": "Chinese - \u4e2d\u6587 (zh_CN)",
"workflow_release_page": "https:\/\/github.com\/tidezyc\/alfred-pan",
"workflow_download_link": "",
"workflow_author_name": "tidezyc",
"workflow_author_site": "http:\/\/thinkjet.me\/",
"workflow_file": "baidu_yun_search.alfredworkflow",
"workflow_screenshot": "Screen-Shot-2014-05-20-at-11.19.17-AM.png"
},
{
"workflow_name": "8tracks",
"workflow_version": "1.0",
"workflow_description_small": "A workflow for Alfred 2.0 which let you quickly search for 8tracks mixes and have them returned to Alfred",
"workflow_type": "Music workflows",
"workflow_language": "English (America) (en_US)",
"workflow_release_page": "https:\/\/github.com\/yankuangshi\/alfred-8tracks-workflow",
"workflow_download_link": "https:\/\/github.com\/yankuangshi\/alfred-8tracks-workflow\/blob\/master\/8tracks.alfredworkflow?raw=true",
"workflow_author_name": "yankuangshi",
"workflow_author_site": "http:\/\/",
"workflow_file": "8tracks.alfredworkflow",
"workflow_screenshot": "screenshot2.png"
},
{
"workflow_name": "Ed2000.com \u7535\u9a74\u8d44\u6e90\u641c\u7d22 Workflow for Alfred 2",
"workflow_version": "1.0",
"workflow_description_small": "ed2000.com \u7535\u9a74\u8d44\u6e90GOOGLE\u641c\u7d22\u548c\u7ed3\u679c\u7684\u9884\u89c8",
"workflow_type": "Web workflows",
"workflow_language": "English (America) (en_US)",
"workflow_release_page": "http:\/\/lucifr.com\/2013\/03\/15\/site-search-workflow-for-alfred-2\/",
"workflow_download_link": "",
"workflow_author_name": "http:\/\/lucifr.com\/ & Elio",
"workflow_author_site": "",
"workflow_file": "ed2000.com-alfredworkflow.alfredworkflow",
"workflow_screenshot": ""
},
{
"workflow_name": "Copy Path",
"workflow_version": "1.0",
"workflow_description_small": "Copy files' path in Finder to Clipboard.",
"workflow_type": "Productive workflows",
"workflow_language": "English (America) (en_US)",
"workflow_release_page": "https:\/\/github.com\/hzlzh\/Alfred-Workflows",
"workflow_download_link": "https:\/\/github.com\/hzlzh\/Alfred-Workflows\/raw\/master\/Downloads\/Copy-Path.alfredworkflow",
"workflow_author_name": "hzlzh",
"workflow_author_site": "http:\/\/hzlzh.io",
"workflow_file": "Copy-Path.alfredworkflow",
"workflow_screenshot": "Copy-Path-demo.png"
},
{
"workflow_name": "Google Music Shuffle",
"workflow_version": "1.0",
"workflow_description_small": "Workflow to shuffle music on Google Music",
"workflow_type": "Music workflows",
"workflow_language": "English (America) (en_US)",
"workflow_release_page": "https:\/\/github.com\/jayj\/alfred-google-music-shuffle",
"workflow_download_link": "https:\/\/github.com\/jayj\/alfred-google-music-shuffle\/releases\/download\/1.0\/google-music-shuffle.alfredworkflow",
"workflow_author_name": "Jesper Johansen",
"workflow_author_site": "http:\/\/jayj.dk",
"workflow_file": "google-music-shuffle.alfredworkflow",
"workflow_screenshot": "687474703a2f2f696d6775722e636f6d2f4f484e455951572e706e67.png"
},
{
"workflow_name": "\u7231\u8bcd\u9738",
"workflow_version": "1.0",
"workflow_description_small": "\u7231\u8bcd\u9738",
"workflow_type": "Productive workflows",
"workflow_language": "Chinese - \u4e2d\u6587 (zh_CN)",
"workflow_release_page": "https:\/\/github.com\/flexih\/iciba.alfredworkflow",
"workflow_download_link": "https:\/\/github.com\/flexih\/iciba.alfredworkflow\/blob\/master\/dt.alfredworkflow",
"workflow_author_name": "flexih",
"workflow_author_site": "https:\/\/github.com\/flexih\/",
"workflow_file": "dt.alfredworkflow",
"workflow_screenshot": ""
},
{
"workflow_name": " Alfred Travel Destination Research Workflow",
"workflow_version": "1.0",
"workflow_description_small": "Related websites about your travel destination",
"workflow_type": "Web workflows",
"workflow_language": "English (British) (en_GB)",
"workflow_release_page": "http:\/\/www.alfredforum.com\/topic\/4277-alfred-travel-destination-research-workflow\/",
"workflow_download_link": "",
"workflow_author_name": "Marco Wollank",
"workflow_author_site": "http:\/\/www.erfahrungen.com\/mit\/Alfred\/",
"workflow_file": "Travel.alfredworkflow",
"workflow_screenshot": "Alfred1.png"
},
{
"workflow_name": "Baidu Search",
"workflow_version": "1.0",
"workflow_description_small": "quick search in baidu",
"workflow_type": "Web workflows",
"workflow_language": "Chinese - \u4e2d\u6587 (zh_CN)",
"workflow_release_page": "http:\/\/",
"workflow_download_link": "https:\/\/github.com\/LuckyMu\/php",
"workflow_author_name": "Lucky",
"workflow_author_site": "http:\/\/",
"workflow_file": "Baidu_Search.alfredworkflow",
"workflow_screenshot": "Screen-Shot-2014-04-24-at-14.23.40.png"
},
{
"workflow_name": "\u7f51\u6613\u65b0\u95fb",
"workflow_version": "1.0",
"workflow_description_small": "\u83b7\u53d6\u7f51\u6613\u6700\u65b0\u65b0\u95fb\uff0c\u4e00\u773c\u77e5\u6653\u5168\u7403\u65b0\u9c9c\u4e8b\u3002",
"workflow_type": "Web workflows",
"workflow_language": "Chinese - \u4e2d\u6587 (zh_CN)",
"workflow_release_page": "https:\/\/github.com\/Kingson\/Alfred-Workflows",
"workflow_download_link": "https:\/\/github.com\/Kingson\/Alfred-Workflows\/blob\/master\/NetEase%20News\/Downloads\/neteasenews.alfredworkflow?raw=true",
"workflow_author_name": "Kingson Zhou",
"workflow_author_site": "http:\/\/kingson.org",
"workflow_file": "neteasenews.alfredworkflow",
"workflow_screenshot": "netease-headline.png"
},
{
"workflow_name": "Shooter",
"workflow_version": "1.0",
"workflow_description_small": "https:\/\/github.com\/cuber\/alfredworkflow-shooter",
"workflow_type": "Productive workflows",
"workflow_language": "Chinese - \u4e2d\u6587 (zh_CN)",
"workflow_release_page": "https:\/\/github.com\/cuber\/alfredworkflow-shooter",
"workflow_download_link": "https:\/\/github.com\/cuber\/alfredworkflow-shooter\/raw\/master\/release\/alfredworkflow.Shooter.alfredworkflow",
"workflow_author_name": "Cube",
"workflow_author_site": "http:\/\/twitter.com\/iHRay",
"workflow_file": "alfredworkflow.Shooter.alfredworkflow",
"workflow_screenshot": "\u5c4f\u5e55\u5feb\u7167-2014-04-20-\u4e0b\u53485.58.35.png"
},
{
"workflow_name": "Lookup IP",
"workflow_version": "1.0",
"workflow_description_small": "\u6839\u636e\u6dd8\u5b9d\u5730\u5740\u5e93\u6765\u67e5\u8be2 IP \u5730\u5740\u4fe1\u606f",
"workflow_type": "Productive workflows",
"workflow_language": "Chinese - \u4e2d\u6587 (zh_CN)",
"workflow_release_page": "https:\/\/github.com\/dangoakachan\/lookup-ip",
"workflow_download_link": "https:\/\/github.com\/dangoakachan\/lookup-ip\/raw\/master\/lookupip.alfredworkflow",
"workflow_author_name": "kodango",
"workflow_author_site": "http:\/\/kodango.com\/alfred-workflow-lookup-ip",
"workflow_file": "lookupip.alfredworkflow",
"workflow_screenshot": "alfred-lookup-ip.png"
},
{
"workflow_name": "Switch DNS",
"workflow_version": "1.0",
"workflow_description_small": "\u5feb\u901f\u5207\u6362 DNS \u670d\u52a1\u5668\u8bbe\u7f6e",
"workflow_type": "Productive workflows",
"workflow_language": "Chinese - \u4e2d\u6587 (zh_CN)",
"workflow_release_page": "https:\/\/github.com\/dangoakachan\/switchdns",
"workflow_download_link": "https:\/\/github.com\/dangoakachan\/switchdns\/raw\/master\/switchdns.alfredworkflow",
"workflow_author_name": "kodango",
"workflow_author_site": "http:\/\/kodango.com",
"workflow_file": "switchdns.alfredworkflow",
"workflow_screenshot": "alfred-switchdns.png"
},
{
"workflow_name": "ASCII Translator",
"workflow_version": "1.0",
"workflow_description_small": "Translate between Character and ASCII",
"workflow_type": "Other workflows",
"workflow_language": "English (America) (en_US)",
"workflow_release_page": "https:\/\/github.com\/ytliu\/alfred2-ascii-translator",
"workflow_download_link": "https:\/\/github.com\/ytliu\/alfred2-ascii-translator\/blob\/master\/ASCIITranslator.alfredworkflow",
"workflow_author_name": "Liu Yutao",
"workflow_author_site": "http:\/\/ytliu.info",
"workflow_file": "ASCIITranslator.alfredworkflow",
"workflow_screenshot": "ASCIITranslator.png"
},
{
"workflow_name": "\u5929\u6daf\u8bba\u575b",
"workflow_version": "1.0",
"workflow_description_small": "\u6839\u636e\u5173\u952e\u8bcd\u548c\u641c\u7d22\u8bcd\u8bfb\u53d6\u70ed\u8d34\u699c\u6216\u70ed\u95e8\u677f\u5757\u5217\u8868",
"workflow_type": "Web workflows",
"workflow_language": "Chinese - \u4e2d\u6587 (zh_CN)",
"workflow_release_page": "https:\/\/github.com\/dopcn\/tianyaAlfred",
"workflow_download_link": "https:\/\/github.com\/dopcn\/tianyaAlfred\/raw\/master\/tianyaAlfred.alfredworkflow",
"workflow_author_name": "dopcn",
"workflow_author_site": "http:\/\/weizhou.name",
"workflow_file": "tianyaAlfred.alfredworkflow",
"workflow_screenshot": "tianyaAlfred.png"
},
{
"workflow_name": "Sites",
"workflow_version": "1.0",
"workflow_description_small": "Open up web directories in terminal",
"workflow_type": "Web workflows",
"workflow_language": "English (British) (en_GB)",
"workflow_release_page": "http:\/\/",
"workflow_download_link": "https:\/\/github.com\/PeterBroom\/alfred-sites",
"workflow_author_name": "Peter Broom",
"workflow_author_site": "http:\/\/www.peterbroom.co.uk",
"workflow_file": "Sites.alfredworkflow",
"workflow_screenshot": ""
},
{
"workflow_name": "ASCII Translator",
"workflow_version": "1.0",
"workflow_description_small": "Translate between Character and ASCII",
"workflow_type": "Feedback workflows",
"workflow_language": "English (America) (en_US)",
"workflow_release_page": "https:\/\/github.com\/ytliu\/alfred2-ascii-translator",
"workflow_download_link": "https:\/\/github.com\/ytliu\/alfred2-ascii-translator\/ASCIITranslator.alfredworkflow",
"workflow_author_name": "Liu Yutao",
"workflow_author_site": "http:\/\/ytliu.info",
"workflow_file": "ASCIITranslator.alfredworkflow",
"workflow_screenshot": "ASCIITranslator.png"
},
{
"workflow_name": "Movies torrents workflow",
"workflow_version": "1.0",
"workflow_description_small": "Download movies torrents in excellent DVD, 720p, 1080p and 3D quality ",
"workflow_type": "Web workflows",
"workflow_language": "English (America) (en_US)",
"workflow_release_page": "https:\/\/github.com\/vitoziv\/movies-torrents-workflow",
"workflow_download_link": "https:\/\/github.com\/vitoziv\/movies-torrents-workflow\/raw\/master\/Movies%20Torrents.alfredworkflow",
"workflow_author_name": "Vito",
"workflow_author_site": "http:\/\/vit0.com",
"workflow_file": "Movies-Torrents.alfredworkflow",
"workflow_screenshot": "screenshot.png"
},
{
"workflow_name": "Urban Dictionary",
"workflow_version": "1.0",
"workflow_description_small": "Quick search words on Urban Dictionary",
"workflow_type": "Web workflows",
"workflow_language": "English (America) (en_US)",
"workflow_release_page": "http:\/\/",
"workflow_download_link": "https:\/\/github.com\/tiden0614\/Urban-Dictionary-WF\/blob\/master\/Urban%20Dictionary.alfredworkflow",
"workflow_author_name": "Daryl",
"workflow_author_site": "http:\/\/",
"workflow_file": "Urban-Dictionary.alfredworkflow",
"workflow_screenshot": "Screen-Shot-2014-04-13-at-9.41.10-AM.png"
},
{
"workflow_name": "Xbox Live Friends",
"workflow_version": "1.0",
"workflow_description_small": "Quickly see if your xbox friends are online!",
"workflow_type": "Other workflows",
"workflow_language": "English (British) (en_GB)",
"workflow_release_page": "http:\/\/",
"workflow_download_link": "https:\/\/github.com\/xxx\/xxx.alfredworkflow",
"workflow_author_name": "Aaron Wilkinson",
"workflow_author_site": "http:\/\/",
"workflow_file": "Xbox-Friends.alfredworkflow",
"workflow_screenshot": ""
},
{
"workflow_name": "\u8c46\u74e3\u641c\u7d22",
"workflow_version": "0.5",
"workflow_description_small": "\u8c46\u74e3\u641c\u7d22\uff0c\u5305\u62ec\u7efc\u5408\u3001\u7535\u5f71\u3001\u8bfb\u4e66\u548c\u97f3\u4e50",
"workflow_type": "Web workflows",
"workflow_language": "English (America) (en_US)",
"workflow_release_page": "http:\/\/",
"workflow_download_link": "https:\/\/github.com\/xxx\/xxx.alfredworkflow",
"workflow_author_name": "yangcht",
"workflow_author_site": "http:\/\/",
"workflow_file": "db-search.alfredworkflow",
"workflow_screenshot": "Screen-Shot-2014-04-06-at-3.20.12-PM.png"
},
{
"workflow_name": "Password Manager",
"workflow_version": "1.0",
"workflow_description_small": "Store and retrieve passwords in your login keychain",
"workflow_type": "Productive workflows",
"workflow_language": "English (America) (en_US)",
"workflow_release_page": "http:\/\/",
"workflow_download_link": "https:\/\/github.com\/xxx\/xxx.alfredworkflow",
"workflow_author_name": "Joost Lubach",
"workflow_author_site": "http:\/\/",
"workflow_file": "Password-Manager.alfredworkflow",