-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsharecuts.json
3419 lines (3419 loc) · 308 KB
/
sharecuts.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
[
{
"id": "00ad12f8-637d-4510-bf56-4af1152566bc",
"createdAt": "2019-03-07 20:59:14.169188",
"updatedAt": "2019-03-07 20:59:14.169188",
"userID": "7b094dd4-47b7-48f7-95f4-43f0f26f2cec",
"title": "Pick File",
"summary": "Pick a file from iCloud Drive and share it with other apps through extensions.",
"filePath": "f4f60a80-e8a7-446e-9295-964ffa69c4c0.8AF49B0A-4FEF-48A1-A7D9-317ABAB210C2.",
"fileID": "4_z775fd4fd45c276586c490e1f_f1106e63231203e16_d20190307_m205904_c001_v0001117_t0053",
"actionCount": 4,
"actionIdentifiers": "{is.workflow.actions.comment,is.workflow.actions.comment,is.workflow.actions.documentpicker.open,is.workflow.actions.runextension}",
"votes": 2,
"tagID": "2f46b7b4-a9fc-45f6-ba23-717cef56ce74",
"color": 3679049983,
"downloads": 96,
"fileHash": "7e995432dc6408c3e0c90e284f4bc84b"
},
{
"id": "043f3e90-381a-4198-96ee-ae7115b09d36",
"createdAt": "2019-03-07 21:10:36.236391",
"updatedAt": "2019-03-07 21:10:36.236391",
"userID": "7b094dd4-47b7-48f7-95f4-43f0f26f2cec",
"title": "Search Pocket",
"summary": "Search your last 50 unread Pocket items for a particular search query, which you can type directly in the shortcut. The result you pick will be opened in Safari.",
"filePath": "6aba494a-de34-4290-a960-fc16d4825f7d.9EA69F1E-874E-43D1-97B9-1B2DD44D646E.",
"fileID": "4_z775fd4fd45c276586c490e1f_f1048225ad83110b7_d20190307_m211036_c001_v0001019_t0031",
"actionCount": 5,
"actionIdentifiers": "{is.workflow.actions.comment,is.workflow.actions.gettext,is.workflow.actions.pocket.get,is.workflow.actions.choosefromlist,is.workflow.actions.openurl}",
"votes": 8,
"tagID": "2f46b7b4-a9fc-45f6-ba23-717cef56ce74",
"color": 3980825855,
"downloads": 427,
"fileHash": "53baedcc3cea46d5c33139d7f654e5a5"
},
{
"id": "055d9457-b6f7-472a-956c-4545f59cc272",
"createdAt": "2018-11-18 02:33:13.584695",
"updatedAt": "2018-11-18 02:33:13.584695",
"userID": "355e489e-0c50-4281-bb4d-3792a6eb71b5",
"title": "Summarise Webpage",
"summary": "Uses smmry.com to get the summary of a web page.",
"filePath": "summarise-webpage1630C718-0985-4495-90EF-932F8C8746E5.shortcut",
"fileID": "4_z775fd4fd45c276586c490e1f_f109b9c555ac13163_d20181118_m023312_c001_v0001102_t0053",
"actionCount": 14,
"actionIdentifiers": "{is.workflow.actions.count,is.workflow.actions.conditional,is.workflow.actions.getvariable,is.workflow.actions.detect.link,is.workflow.actions.conditional,is.workflow.actions.ask,is.workflow.actions.conditional,is.workflow.actions.urlencode,is.workflow.actions.gettext,is.workflow.actions.url,is.workflow.actions.downloadurl,is.workflow.actions.detect.dictionary,is.workflow.actions.getvalueforkey,is.workflow.actions.showresult}",
"votes": 81,
"tagID": "2e8603d9-d997-4eb4-aa7d-89b10c8c548d",
"color": 4292093695,
"downloads": 1413,
"fileHash": "2e40dcf5cb300707b904038491dbafc3"
},
{
"id": "06722cc9-e439-412c-9ec8-4be62ecafebf",
"createdAt": "2018-10-24 01:52:05.61499",
"updatedAt": "2018-10-24 01:52:05.61499",
"userID": "827a8528-da39-4e57-821d-9d38a43759fc",
"title": "Disable Bluetooth & WiFi",
"summary": "Simultaneously disables both Bluetooth and WiFi entirely.",
"filePath": "disable-bluetooth-wifiA05BF894-8D53-45DB-8863-7A7878518D63.shortcut",
"fileID": "4_z775fd4fd45c276586c490e1f_f109d573f0b306f08_d20181024_m015203_c001_v0001015_t0021",
"actionCount": 3,
"actionIdentifiers": "{is.workflow.actions.bluetooth.set,is.workflow.actions.wifi.set,is.workflow.actions.notification}",
"votes": 307,
"tagID": "2f46b7b4-a9fc-45f6-ba23-717cef56ce74",
"color": 2846468607,
"downloads": 2852,
"fileHash": "515e856dca5f50c48528a2ff758f4a34"
},
{
"id": "085f454e-14c9-401f-af79-73bb5863f13c",
"createdAt": "2018-07-07 20:14:59.638894",
"updatedAt": "2018-07-07 20:14:59.638895",
"userID": "9b5658e5-072e-4851-9e83-ece288156a8b",
"title": "Chuck Norris",
"summary": "Get a random Chuck Norris joke",
"filePath": "chuck-norris7D20DB70-DA13-4551-8F0B-BA4DC83A24C7.shortcut",
"fileID": "4_z775fd4fd45c276586c490e1f_f108ce3db49391fe1_d20180707_m201459_c001_v0001036_t0010",
"actionCount": 4,
"actionIdentifiers": "{is.workflow.actions.gettext,is.workflow.actions.downloadurl,is.workflow.actions.getvalueforkey,is.workflow.actions.speaktext}",
"votes": 123,
"tagID": "bf7fc94e-c99b-4dd4-b775-7b2837543b19",
"color": 3980825855,
"downloads": 2148,
"fileHash": "8eaa1840376db442ad3d06ee76b3ce00"
},
{
"id": "0904cce8-c071-4317-8e0c-071e3034b2ce",
"createdAt": "2019-03-07 21:03:26.191425",
"updatedAt": "2019-03-07 21:03:26.191425",
"userID": "7b094dd4-47b7-48f7-95f4-43f0f26f2cec",
"title": "OCR with Prizmo Go",
"summary": "Perform OCR on an image (either captured from the camera or selected from Photos) using Prizmo Go. The shortcut can ask Prizmo Go to perform standard OCR or Cloud OCR. You can choose to copy extracted text to the clipboard or send it as a text file to DEVONthink.",
"filePath": "afcafa4a-340d-448a-9d04-0724042927a3.88891105-18E7-43A9-AC78-33B4AC2348FD.",
"fileID": "4_z775fd4fd45c276586c490e1f_f11373955ec09f8de_d20190307_m210325_c001_v0001117_t0026",
"actionCount": 25,
"actionIdentifiers": "{is.workflow.actions.comment,is.workflow.actions.list,is.workflow.actions.choosefromlist,is.workflow.actions.conditional,is.workflow.actions.selectphoto,is.workflow.actions.detect.images,is.workflow.actions.setclipboard,is.workflow.actions.delay,is.workflow.actions.conditional,is.workflow.actions.conditional,is.workflow.actions.list,is.workflow.actions.choosefromlist,is.workflow.actions.list,is.workflow.actions.choosefromlist,is.workflow.actions.conditional,is.workflow.actions.gettext,is.workflow.actions.gettext,is.workflow.actions.urlencode,is.workflow.actions.gettext,is.workflow.actions.conditional,is.workflow.actions.gettext,is.workflow.actions.gettext,is.workflow.actions.conditional,is.workflow.actions.url,is.workflow.actions.openurl}",
"votes": 0,
"tagID": "2f46b7b4-a9fc-45f6-ba23-717cef56ce74",
"color": 4274264319,
"downloads": 247,
"fileHash": "4b994bdf68cc4c0edef2305758d97b67"
},
{
"id": "0a142e7a-fe00-4786-92cd-f0b4eae69631",
"createdAt": "2018-11-29 03:46:11.621326",
"updatedAt": "2018-11-29 03:46:11.621326",
"userID": "70fd4ac4-cc70-4b83-8580-3dfb8711d2ca",
"title": "Open Instagram Page in Safari",
"summary": "Open web pages from Instagram bios, posts, stories, ads, etc in Safari.\r\n\r\nMost apps with in-app web views support opening the page in Safari, however, some apps disable this feature. This shortcut adds support to those apps.",
"filePath": "open-instagram-page-in-safariCEE265D9-146F-4F3E-BDD4-C38212CCDCB5.shortcut",
"fileID": "4_z775fd4fd45c276586c490e1f_f1000530da71df3a4_d20181129_m034611_c001_v0001001_t0005",
"actionCount": 2,
"actionIdentifiers": "{is.workflow.actions.comment,is.workflow.actions.openurl}",
"votes": 71,
"tagID": "2e8603d9-d997-4eb4-aa7d-89b10c8c548d",
"color": 4274264319,
"downloads": 919,
"fileHash": "731029c5f29a5268854f830ca2798ee9"
},
{
"id": "0a5e0d99-e368-4fd9-a8b1-d104a679fa29",
"createdAt": "2019-03-07 21:02:17.400133",
"updatedAt": "2019-03-07 21:02:17.400134",
"userID": "7b094dd4-47b7-48f7-95f4-43f0f26f2cec",
"title": "Round Avatar",
"summary": "Create a round avatar based on someone's Twitter profile picture. To run this shortcut, save a profile image from Twitter first.",
"filePath": "afd1948a-0932-4a19-a4fa-41b203488df6.EE54C430-795B-4703-90E9-6AA8DBFC7995.",
"fileID": "4_z775fd4fd45c276586c490e1f_f1127ee850290ed36_d20190307_m210217_c001_v0001117_t0025",
"actionCount": 7,
"actionIdentifiers": "{is.workflow.actions.comment,is.workflow.actions.gettext,is.workflow.actions.base64encode,is.workflow.actions.selectphoto,is.workflow.actions.image.resize,is.workflow.actions.overlayimageonimage,is.workflow.actions.previewdocument}",
"votes": 1,
"tagID": "2f46b7b4-a9fc-45f6-ba23-717cef56ce74",
"color": 946986751,
"downloads": 305,
"fileHash": "89e9d0102de922f260f3b1f24245389c"
},
{
"id": "0b88aabf-f8f2-4b43-8ad6-ab0a5f909edd",
"createdAt": "2019-03-07 20:58:35.975742",
"updatedAt": "2019-03-07 20:58:35.975742",
"userID": "7b094dd4-47b7-48f7-95f4-43f0f26f2cec",
"title": "Message Last Photo",
"summary": "Quickly send the last photo you've taken on your device to a contact over iMessage. The shortcut supports both photos and screenshots, but you can add filters to remove one of the two media types.",
"filePath": "b2a6428f-769b-4161-8442-4b72d1f79862.8BBB48DB-18ED-4F65-B42B-1AEBE951D1F8.",
"fileID": "4_z775fd4fd45c276586c490e1f_f1047286146650fbc_d20190307_m205835_c001_v0001117_t0010",
"actionCount": 5,
"actionIdentifiers": "{is.workflow.actions.comment,is.workflow.actions.comment,is.workflow.actions.filter.photos,is.workflow.actions.detect.images,is.workflow.actions.sendmessage}",
"votes": 3,
"tagID": "2f46b7b4-a9fc-45f6-ba23-717cef56ce74",
"color": 4274264319,
"downloads": 84,
"fileHash": "c4a5343a167e9407d46247baed7d6c1f"
},
{
"id": "0c085394-3057-4c15-a96f-67d322e1fc9e",
"createdAt": "2018-08-20 18:39:05.63383",
"updatedAt": "2018-08-20 18:39:05.63383",
"userID": "29193e23-ddd0-4c00-a8d3-854ea257f4cc",
"title": "Apple Music to Song Link",
"summary": "Share your songs from Apple Music using a universal \"Song Link\". You can use it from the Widget, Share Sheet or even Siri to send the Now Playing song link to the clipboard. Song Link provides an easy access to that specific music on other platforms (such as Spotify and Tidal).",
"filePath": "musiclink6310DCED-F848-4800-8912-323476A32460.shortcut",
"fileID": "4_z775fd4fd45c276586c490e1f_f1118dec1341c7212_d20180820_m183903_c001_v0001043_t0048",
"actionCount": 16,
"actionIdentifiers": "{is.workflow.actions.getcurrentsong,is.workflow.actions.gettext,is.workflow.actions.url,is.workflow.actions.downloadurl,is.workflow.actions.setitemname,is.workflow.actions.getvalueforkey,is.workflow.actions.getitemfromlist,is.workflow.actions.getvalueforkey,is.workflow.actions.gettext,is.workflow.actions.setclipboard,is.workflow.actions.detect.text,is.workflow.actions.gettext,is.workflow.actions.url,is.workflow.actions.url.expand,is.workflow.actions.setclipboard,is.workflow.actions.showresult}",
"votes": 111,
"tagID": "faf60b08-353b-4fce-a4e9-ebe7652d6cf1",
"color": 431817727,
"downloads": 2394,
"fileHash": "98a1ae8fea72621896d420138f99de85"
},
{
"id": "0d63f075-dbcb-4a1c-bdb0-d639d58bc579",
"createdAt": "2019-03-07 21:09:03.417914",
"updatedAt": "2019-03-07 21:09:03.417915",
"userID": "7b094dd4-47b7-48f7-95f4-43f0f26f2cec",
"title": "Scan GoodTask Subtasks",
"summary": "Scan the Reminders database for tasks that contain subtasks based on the GoodTask syntax.",
"filePath": "eadcecc0-d74f-41ff-8300-596bbdf000d8.E8134CB3-0842-4FAF-978A-AAF8BC9D71E1.",
"fileID": "4_z775fd4fd45c276586c490e1f_f100529383ab9470f_d20190307_m210857_c001_v0001117_t0045",
"actionCount": 16,
"actionIdentifiers": "{is.workflow.actions.comment,is.workflow.actions.filter.reminders,is.workflow.actions.count,is.workflow.actions.conditional,is.workflow.actions.alert,is.workflow.actions.conditional,is.workflow.actions.getvariable,is.workflow.actions.properties.reminders,is.workflow.actions.text.match,is.workflow.actions.text.match.getgroup,is.workflow.actions.getvalueforkey,is.workflow.actions.repeat.each,is.workflow.actions.text.replace,is.workflow.actions.repeat.each,is.workflow.actions.choosefromlist,is.workflow.actions.conditional}",
"votes": 0,
"tagID": "2f46b7b4-a9fc-45f6-ba23-717cef56ce74",
"color": 463140863,
"downloads": 212,
"fileHash": "8429f219568b6d1b3d49f286c2ee6b0c"
},
{
"id": "0e3b1f6b-dad5-45ad-bfe1-423185d96e0f",
"createdAt": "2019-03-07 21:10:55.737829",
"updatedAt": "2019-03-07 21:10:55.737829",
"userID": "7b094dd4-47b7-48f7-95f4-43f0f26f2cec",
"title": "Linked Post → Ulysses",
"summary": "Create a template for a linked post to an article in Ulysses. The text selection from a Safari webpage is used as a Markdown blockquote. The original title, author name, and URL of the webpage are also preserved in the sheet.",
"filePath": "a99266f9-f305-4e95-9652-abaf42edecf7.98C8BF2F-6796-4C40-98FC-996FCCC2A6BF.",
"fileID": "4_z775fd4fd45c276586c490e1f_f1184cbcf79d78308_d20190307_m211052_c001_v0001097_t0014",
"actionCount": 8,
"actionIdentifiers": "{is.workflow.actions.comment,is.workflow.actions.properties.safariwebpage,is.workflow.actions.getmarkdownfromrichtext,is.workflow.actions.getvariable,is.workflow.actions.detect.link,is.workflow.actions.setclipboard,is.workflow.actions.gettext,com.soulmen.ulysses.pad.new-sheet}",
"votes": 7,
"tagID": "2f46b7b4-a9fc-45f6-ba23-717cef56ce74",
"color": 4274264319,
"downloads": 416,
"fileHash": "8fd905d2d68ddfde1ee1677bd7dcc972"
},
{
"id": "0f5c34b5-aac2-4732-9948-3a2036cce268",
"createdAt": "2019-03-07 21:10:33.325847",
"updatedAt": "2019-03-07 21:10:33.325848",
"userID": "7b094dd4-47b7-48f7-95f4-43f0f26f2cec",
"title": "Apple News",
"summary": "Get the latest Apple news from one of your favorite tech blogs. Headlines can be previewed in Siri or the widget.",
"filePath": "38ec2b2e-f69c-432a-a0ed-c08a19156791.8AA26CA2-5FD4-4FDF-8BAA-EF578F8164C5.",
"fileID": "4_z775fd4fd45c276586c490e1f_f116222ce8d1f51db_d20190307_m211032_c001_v0001042_t0017",
"actionCount": 14,
"actionIdentifiers": "{is.workflow.actions.comment,is.workflow.actions.setvariable,is.workflow.actions.comment,is.workflow.actions.gettext,is.workflow.actions.comment,is.workflow.actions.url,is.workflow.actions.rss,is.workflow.actions.repeat.each,is.workflow.actions.getitemname,is.workflow.actions.appendvariable,is.workflow.actions.gettext,is.workflow.actions.setvariable,is.workflow.actions.repeat.each,is.workflow.actions.showresult}",
"votes": 25,
"tagID": "2f46b7b4-a9fc-45f6-ba23-717cef56ce74",
"color": 463140863,
"downloads": 954,
"fileHash": "ab1d546218346c83502f35e8c7d56d07"
},
{
"id": "0f5db0a9-6f84-4e34-818d-93c4d5b20ac4",
"createdAt": "2018-10-08 18:39:13.444978",
"updatedAt": "2018-10-08 18:39:13.444978",
"userID": "5db40190-2de6-440f-adf8-65ae012eeff2",
"title": "XS Frames",
"summary": "Add device frames to iPhone XS and XS Max screenshots. The shortcut supports portrait and landscape orientations. If multiple screenshots are passed as input, they will be combined in a single image.",
"filePath": "xs-frames4EEB9813-0474-4800-83D8-E34695B0DF15.shortcut",
"fileID": "4_z775fd4fd45c276586c490e1f_f1071cd142431b353_d20181008_m183911_c001_v0001109_t0005",
"actionCount": 60,
"actionIdentifiers": "{is.workflow.actions.comment,is.workflow.actions.comment,is.workflow.actions.detect.images,is.workflow.actions.count,is.workflow.actions.conditional,is.workflow.actions.filter.photos,is.workflow.actions.filter.photos,is.workflow.actions.choosefromlist,is.workflow.actions.conditional,is.workflow.actions.getvariable,is.workflow.actions.conditional,is.workflow.actions.repeat.each,is.workflow.actions.detect.images,is.workflow.actions.base64encode,is.workflow.actions.getvariable,is.workflow.actions.properties.images,is.workflow.actions.conditional,is.workflow.actions.comment,is.workflow.actions.gettext,is.workflow.actions.dictionary,is.workflow.actions.conditional,is.workflow.actions.conditional,is.workflow.actions.comment,is.workflow.actions.gettext,is.workflow.actions.dictionary,is.workflow.actions.conditional,is.workflow.actions.conditional,is.workflow.actions.comment,is.workflow.actions.gettext,is.workflow.actions.dictionary,is.workflow.actions.conditional,is.workflow.actions.conditional,is.workflow.actions.comment,is.workflow.actions.gettext,is.workflow.actions.dictionary,is.workflow.actions.conditional,is.workflow.actions.conditional,is.workflow.actions.conditional,is.workflow.actions.conditional,is.workflow.actions.conditional,is.workflow.actions.repeat.each,is.workflow.actions.repeat.each,is.workflow.actions.getvalueforkey,is.workflow.actions.base64encode,is.workflow.actions.getvariable,is.workflow.actions.base64encode,is.workflow.actions.getvariable,is.workflow.actions.overlayimageonimage,is.workflow.actions.overlayimageonimage,is.workflow.actions.repeat.each,is.workflow.actions.comment,is.workflow.actions.count,is.workflow.actions.conditional,is.workflow.actions.getvariable,is.workflow.actions.image.combine,is.workflow.actions.savetocameraroll,is.workflow.actions.conditional,is.workflow.actions.getvariable,is.workflow.actions.savetocameraroll,is.workflow.actions.conditional}",
"votes": 243,
"tagID": "7c829cea-5384-4b69-96ea-cc089668a8c8",
"color": 4271458815,
"downloads": 1812,
"fileHash": "9b68a11b4d6aaca1caf8d9890c7aeaba"
},
{
"id": "0f9798d3-997e-49c3-aa37-3fba234a9a84",
"createdAt": "2019-03-07 21:09:54.014295",
"updatedAt": "2019-03-07 21:09:54.014295",
"userID": "7b094dd4-47b7-48f7-95f4-43f0f26f2cec",
"title": "Stop Timers",
"summary": "This shortcut stops any currently running timer in your Toggl account.",
"filePath": "4a9ea489-1710-404d-bf86-4103ddcf700a.68D4EB2D-0A42-412C-A3BE-25741E43B155.",
"fileID": "4_z775fd4fd45c276586c490e1f_f1121baeefc5ba7ea_d20190307_m210953_c001_v0001032_t0002",
"actionCount": 25,
"actionIdentifiers": "{is.workflow.actions.comment,is.workflow.actions.comment,is.workflow.actions.gettext,is.workflow.actions.base64encode,is.workflow.actions.url,is.workflow.actions.downloadurl,is.workflow.actions.conditional,is.workflow.actions.showresult,is.workflow.actions.conditional,is.workflow.actions.getvalueforkey,is.workflow.actions.getvalueforkey,is.workflow.actions.count,is.workflow.actions.conditional,is.workflow.actions.gettext,is.workflow.actions.conditional,is.workflow.actions.gettext,is.workflow.actions.conditional,is.workflow.actions.getvariable,is.workflow.actions.getvalueforkey,is.workflow.actions.url,is.workflow.actions.downloadurl,is.workflow.actions.getvalueforkey,is.workflow.actions.getvalueforkey,is.workflow.actions.showresult,is.workflow.actions.conditional}",
"votes": 8,
"tagID": "2f46b7b4-a9fc-45f6-ba23-717cef56ce74",
"color": 4282601983,
"downloads": 397,
"fileHash": "fd7bc55a2cc53fad3d62df9805bf29b5"
},
{
"id": "1109da7d-8fb3-4f91-af64-260ee772b63e",
"createdAt": "2019-03-07 21:09:15.602783",
"updatedAt": "2019-03-07 21:09:15.602783",
"userID": "7b094dd4-47b7-48f7-95f4-43f0f26f2cec",
"title": "Clip to iCloud Clipboard",
"summary": "Clip any kind of text contained in the system clipboard to a Clipboard.txt file stored in iCloud Drive. This shortcut is designed to allow you to keep a record of previously copied bits of text and easily sync them across devices. The shortcut can be executed from the widget, and it also supports rich text and URLs.",
"filePath": "8c2e88f2-fb7b-4a36-8b17-33f17354870d.F94B1D87-084B-4C68-998C-C877295F6360.",
"fileID": "4_z775fd4fd45c276586c490e1f_f108a423f1a2bd28b_d20190307_m210915_c001_v0001044_t0018",
"actionCount": 118,
"actionIdentifiers": "{is.workflow.actions.comment,is.workflow.actions.comment,is.workflow.actions.count,is.workflow.actions.conditional,is.workflow.actions.comment,is.workflow.actions.getclipboard,is.workflow.actions.alert,is.workflow.actions.conditional,is.workflow.actions.getvariable,is.workflow.actions.conditional,is.workflow.actions.setvariable,is.workflow.actions.getitemtype,is.workflow.actions.number,is.workflow.actions.comment,is.workflow.actions.documentpicker.open,is.workflow.actions.count,is.workflow.actions.conditional,is.workflow.actions.comment,is.workflow.actions.gettext,is.workflow.actions.setitemname,is.workflow.actions.documentpicker.save,is.workflow.actions.conditional,is.workflow.actions.nothing,is.workflow.actions.conditional,is.workflow.actions.comment,is.workflow.actions.getvariable,is.workflow.actions.conditional,is.workflow.actions.gettext,is.workflow.actions.conditional,is.workflow.actions.conditional,is.workflow.actions.gettext,is.workflow.actions.conditional,is.workflow.actions.conditional,is.workflow.actions.getvariable,is.workflow.actions.detect.link,is.workflow.actions.count,is.workflow.actions.conditional,is.workflow.actions.getvariable,is.workflow.actions.choosefromlist,is.workflow.actions.conditional,is.workflow.actions.getvariable,is.workflow.actions.getitemfromlist,is.workflow.actions.conditional,is.workflow.actions.conditional,is.workflow.actions.url.expand,is.workflow.actions.gettext,is.workflow.actions.conditional,is.workflow.actions.conditional,is.workflow.actions.url.expand,is.workflow.actions.gettext,is.workflow.actions.conditional,is.workflow.actions.getvariable,is.workflow.actions.detect.link,is.workflow.actions.count,is.workflow.actions.conditional,is.workflow.actions.getvariable,is.workflow.actions.url.expand,is.workflow.actions.getitemname,is.workflow.actions.gettext,is.workflow.actions.conditional,is.workflow.actions.conditional,is.workflow.actions.conditional,is.workflow.actions.conditional,is.workflow.actions.conditional,is.workflow.actions.conditional,is.workflow.actions.getvariable,is.workflow.actions.getmarkdownfromrichtext,is.workflow.actions.text.split,is.workflow.actions.text.combine,is.workflow.actions.conditional,is.workflow.actions.conditional,is.workflow.actions.getvariable,is.workflow.actions.detect.link,is.workflow.actions.count,is.workflow.actions.conditional,is.workflow.actions.choosefrommenu,is.workflow.actions.choosefrommenu,is.workflow.actions.getvariable,is.workflow.actions.detect.text,is.workflow.actions.text.split,is.workflow.actions.text.combine,is.workflow.actions.choosefrommenu,is.workflow.actions.getvariable,is.workflow.actions.choosefromlist,is.workflow.actions.url.expand,is.workflow.actions.getitemname,is.workflow.actions.gettext,is.workflow.actions.choosefrommenu,is.workflow.actions.conditional,is.workflow.actions.getvariable,is.workflow.actions.detect.text,is.workflow.actions.text.split,is.workflow.actions.text.combine,is.workflow.actions.conditional,is.workflow.actions.conditional,is.workflow.actions.conditional,is.workflow.actions.conditional,is.workflow.actions.conditional,is.workflow.actions.conditional,is.workflow.actions.conditional,is.workflow.actions.setvariable,is.workflow.actions.documentpicker.open,is.workflow.actions.count,is.workflow.actions.conditional,is.workflow.actions.number,is.workflow.actions.math,is.workflow.actions.repeat.count,is.workflow.actions.getvariable,is.workflow.actions.text.split,is.workflow.actions.getitemfromlist,is.workflow.actions.appendvariable,is.workflow.actions.repeat.count,is.workflow.actions.gettext,is.workflow.actions.conditional,is.workflow.actions.gettext,is.workflow.actions.conditional,is.workflow.actions.setitemname,is.workflow.actions.documentpicker.save}",
"votes": 8,
"tagID": "2f46b7b4-a9fc-45f6-ba23-717cef56ce74",
"color": 463140863,
"downloads": 497,
"fileHash": "11cfb78f7f7e8a641beb8162e0c714f6"
},
{
"id": "152b53b7-a65e-4e0a-a416-8b88d4b15c74",
"createdAt": "2018-07-08 14:31:49.1996",
"updatedAt": "2018-07-08 14:31:49.1996",
"userID": "6f2e56dd-c3c9-4767-9c92-b21dd86cf302",
"title": "Photo-a-Day Text Generator",
"summary": "Easily generate text for posting a “photo-a-day” image. Lets you set a title and automatically calculates the rest. Example:\n\n\"Cool photo\" 2018 Photo a day 189/365",
"filePath": "photo-a-day8B987A23-60E6-4DC4-A9FD-B9E34AA5B8A0.shortcut",
"fileID": "4_z775fd4fd45c276586c490e1f_f113c0726e0faa6a5_d20180708_m143148_c001_v0001099_t0039",
"actionCount": 20,
"actionIdentifiers": "{is.workflow.actions.ask,is.workflow.actions.detect.text,is.workflow.actions.setvariable,is.workflow.actions.date,is.workflow.actions.format.date,is.workflow.actions.appendvariable,is.workflow.actions.date,is.workflow.actions.format.date,is.workflow.actions.setvariable,is.workflow.actions.math,is.workflow.actions.conditional,is.workflow.actions.gettext,is.workflow.actions.setvariable,is.workflow.actions.conditional,is.workflow.actions.gettext,is.workflow.actions.setvariable,is.workflow.actions.conditional,is.workflow.actions.gettext,is.workflow.actions.setclipboard,com.tapbots.Tweetbot.tweet}",
"votes": 39,
"tagID": "7c829cea-5384-4b69-96ea-cc089668a8c8",
"color": 946986751,
"downloads": 907,
"fileHash": "e90ee8fec21da074c71a8d65158651e6"
},
{
"id": "17c2c304-d556-46c0-8b7a-08b6a8aadbf2",
"createdAt": "2019-03-07 21:09:24.164509",
"updatedAt": "2019-03-07 21:09:24.164509",
"userID": "7b094dd4-47b7-48f7-95f4-43f0f26f2cec",
"title": "Create Hyperlink",
"summary": "Create a rich text hyperlink based on a URL from the system clipboard. This shortcut is ideal for creating underlined links for apps that do not support rich link creation such as Notes or Apple Mail.",
"filePath": "338a23a9-aa8a-47ea-9955-907636819eb0.AFB7424C-EFA1-4E31-B378-3781A138EAA3.",
"fileID": "4_z775fd4fd45c276586c490e1f_f107816655667d3c6_d20190307_m210923_c001_v0001043_t0059",
"actionCount": 24,
"actionIdentifiers": "{is.workflow.actions.comment,is.workflow.actions.comment,is.workflow.actions.getclipboard,is.workflow.actions.detect.link,is.workflow.actions.count,is.workflow.actions.conditional,is.workflow.actions.alert,is.workflow.actions.conditional,is.workflow.actions.conditional,is.workflow.actions.getvariable,is.workflow.actions.setvariable,is.workflow.actions.conditional,is.workflow.actions.conditional,is.workflow.actions.getvariable,is.workflow.actions.choosefromlist,is.workflow.actions.setvariable,is.workflow.actions.conditional,is.workflow.actions.conditional,is.workflow.actions.conditional,is.workflow.actions.conditional,is.workflow.actions.ask,is.workflow.actions.gettext,is.workflow.actions.getrichtextfrommarkdown,is.workflow.actions.setclipboard}",
"votes": 11,
"tagID": "2f46b7b4-a9fc-45f6-ba23-717cef56ce74",
"color": 4271458815,
"downloads": 573,
"fileHash": "aaa4cb99aa19b0f31c8264dc9fc46fc3"
},
{
"id": "181d3786-e580-49b0-b7df-51745bfcc3c6",
"createdAt": "2019-03-07 20:59:50.148184",
"updatedAt": "2019-03-07 20:59:50.148184",
"userID": "7b094dd4-47b7-48f7-95f4-43f0f26f2cec",
"title": "DEVONmenu (with Things Parser)",
"summary": "A comprehensive shortcut to save a variety of file types into DEVONthink To Go. The shortcut can save Safari webpages, images, text, PDFs, videos, MP3s, and more, with the ability to add more supported file types manually. In most cases, files will be previewed natively in DEVONthink. At the end, the shortcut offers the ability to save each DEVONthink item as a task in Things using the Things Natural Language Parser syntax.",
"filePath": "1fc750ec-e0a8-43ce-a930-357e34acaa5c.34C1E046-F2C5-4FB4-9C01-6148C4961B70.",
"fileID": "4_z775fd4fd45c276586c490e1f_f109c4b0ac07c68bc_d20190307_m205949_c001_v0001101_t0059",
"actionCount": 81,
"actionIdentifiers": "{is.workflow.actions.comment,is.workflow.actions.comment,is.workflow.actions.comment,is.workflow.actions.gettext,is.workflow.actions.comment,is.workflow.actions.dictionary,is.workflow.actions.comment,is.workflow.actions.dictionary,is.workflow.actions.choosefromlist,is.workflow.actions.dictionary,is.workflow.actions.getvariable,is.workflow.actions.count,is.workflow.actions.conditional,is.workflow.actions.comment,is.workflow.actions.documentpicker.open,is.workflow.actions.setvariable,is.workflow.actions.conditional,is.workflow.actions.getvariable,is.workflow.actions.setvariable,is.workflow.actions.conditional,is.workflow.actions.getvariable,is.workflow.actions.repeat.each,is.workflow.actions.getitemtype,is.workflow.actions.comment,is.workflow.actions.conditional,is.workflow.actions.getvariable,is.workflow.actions.setvariable,is.workflow.actions.ask,is.workflow.actions.setvariable,is.workflow.actions.choosefrommenu,is.workflow.actions.choosefrommenu,is.workflow.actions.gettext,is.workflow.actions.choosefrommenu,is.workflow.actions.getvariable,is.workflow.actions.makepdf,is.workflow.actions.base64encode,is.workflow.actions.gettext,is.workflow.actions.choosefrommenu,is.workflow.actions.conditional,is.workflow.actions.getvariable,is.workflow.actions.properties.files,is.workflow.actions.getvariable,is.workflow.actions.properties.files,is.workflow.actions.text.changecase,is.workflow.actions.setvariable,is.workflow.actions.text.match,is.workflow.actions.count,is.workflow.actions.conditional,is.workflow.actions.alert,is.workflow.actions.conditional,is.workflow.actions.getvariable,is.workflow.actions.previewdocument,is.workflow.actions.getvariable,is.workflow.actions.getvalueforkey,is.workflow.actions.ask,is.workflow.actions.setvariable,is.workflow.actions.ask,is.workflow.actions.setvariable,is.workflow.actions.getvariable,is.workflow.actions.base64encode,is.workflow.actions.gettext,is.workflow.actions.conditional,is.workflow.actions.conditional,is.workflow.actions.url,is.workflow.actions.openxcallbackurl,is.workflow.actions.getvalueforkey,is.workflow.actions.choosefrommenu,is.workflow.actions.choosefrommenu,is.workflow.actions.comment,is.workflow.actions.ask,is.workflow.actions.gettext,is.workflow.actions.setclipboard,is.workflow.actions.runworkflow,is.workflow.actions.gettext,is.workflow.actions.choosefrommenu,is.workflow.actions.gettext,is.workflow.actions.choosefrommenu,is.workflow.actions.appendvariable,is.workflow.actions.repeat.each,is.workflow.actions.getvariable,is.workflow.actions.text.combine}",
"votes": 4,
"tagID": "2f46b7b4-a9fc-45f6-ba23-717cef56ce74",
"color": 463140863,
"downloads": 56,
"fileHash": "818f5e0cb7b1b9d14d5bcde64a10e085"
},
{
"id": "1996cae1-f3a3-4031-bbfb-c2e95dbefcff",
"createdAt": "2019-03-07 21:10:43.974777",
"updatedAt": "2019-03-07 21:10:43.974777",
"userID": "7b094dd4-47b7-48f7-95f4-43f0f26f2cec",
"title": "Add Clipboard Row to Google Sheet",
"summary": "Send a link from the iOS clipboard to IFTTT, which will add it as a new row in a Google spreadsheet. Requires setup of an IFTTT applet to turn a webhook request into a Google Sheets row.",
"filePath": "c3cc2c71-f7fe-4665-a273-660be4a3df00.0A5A2082-8644-4384-96C6-28DE9049F742.",
"fileID": "4_z775fd4fd45c276586c490e1f_f111f1c50519cf088_d20190307_m211043_c001_v0001117_t0038",
"actionCount": 11,
"actionIdentifiers": "{is.workflow.actions.comment,is.workflow.actions.gettext,is.workflow.actions.gettext,is.workflow.actions.getclipboard,is.workflow.actions.detect.link,is.workflow.actions.urlencode,is.workflow.actions.getvariable,is.workflow.actions.getitemname,is.workflow.actions.url,is.workflow.actions.downloadurl,is.workflow.actions.showresult}",
"votes": 13,
"tagID": "2f46b7b4-a9fc-45f6-ba23-717cef56ce74",
"color": 946986751,
"downloads": 491,
"fileHash": "dcfda97f0933d5ec1cbfa5b089b02fc1"
},
{
"id": "1d79b906-a667-420e-afd4-067f78f13c5f",
"createdAt": "2019-03-07 21:10:58.413994",
"updatedAt": "2019-03-07 21:10:58.413994",
"userID": "7b094dd4-47b7-48f7-95f4-43f0f26f2cec",
"title": "Inspect RSS Feed",
"summary": "Find the RSS feed for a Safari webpage and inspect its raw XML contents inside the Shortcuts extension.",
"filePath": "54c22bf9-97e8-4771-a278-1921422c6ae8.0422AF8D-674D-4F74-B64C-34C91BB64CB8.",
"fileID": "4_z775fd4fd45c276586c490e1f_f117bf2b297dc1168_d20190307_m211058_c001_v0001106_t0042",
"actionCount": 8,
"actionIdentifiers": "{is.workflow.actions.comment,is.workflow.actions.rss.extract,is.workflow.actions.choosefromlist,is.workflow.actions.url,is.workflow.actions.downloadurl,is.workflow.actions.setitemname,is.workflow.actions.detect.text,is.workflow.actions.previewdocument}",
"votes": 20,
"tagID": "2f46b7b4-a9fc-45f6-ba23-717cef56ce74",
"color": 4274264319,
"downloads": 643,
"fileHash": "e27597400a7c1911ab535c3e731d769a"
},
{
"id": "1d98d32b-8e61-460d-9e70-01527673db95",
"createdAt": "2019-03-07 21:11:27.52282",
"updatedAt": "2019-03-07 21:11:27.52282",
"userID": "7b094dd4-47b7-48f7-95f4-43f0f26f2cec",
"title": "Convert Temperature",
"summary": "Convert between Celsius and Fahrenheit with a menu that lets you pick a starting unit. The shortcuts supports interactions (including entering numbers) in the widget as well.",
"filePath": "53bc067e-5ace-4a32-8448-70e713b90f67.21B7FD41-B14E-4CCE-86CF-F4D7C1A537BB.",
"fileID": "4_z775fd4fd45c276586c490e1f_f11909cc87ed494f2_d20190307_m211127_c001_v0001106_t0035",
"actionCount": 22,
"actionIdentifiers": "{is.workflow.actions.comment,is.workflow.actions.list,is.workflow.actions.choosefromlist,is.workflow.actions.ask,is.workflow.actions.number,is.workflow.actions.getvariable,is.workflow.actions.conditional,is.workflow.actions.dictionary,is.workflow.actions.setvariable,is.workflow.actions.measurement.create,is.workflow.actions.measurement.convert,is.workflow.actions.conditional,is.workflow.actions.conditional,is.workflow.actions.dictionary,is.workflow.actions.setvariable,is.workflow.actions.measurement.create,is.workflow.actions.measurement.convert,is.workflow.actions.conditional,is.workflow.actions.conditional,is.workflow.actions.conditional,is.workflow.actions.round,is.workflow.actions.showresult}",
"votes": 32,
"tagID": "2f46b7b4-a9fc-45f6-ba23-717cef56ce74",
"color": 4271458815,
"downloads": 995,
"fileHash": "05c6c6878e3f15abd549478746c921ac"
},
{
"id": "1dd0b6fb-5434-41c1-ada0-f3060a6549d0",
"createdAt": "2019-03-07 21:11:02.150827",
"updatedAt": "2019-03-07 21:11:02.150827",
"userID": "7b094dd4-47b7-48f7-95f4-43f0f26f2cec",
"title": "Parse JSON Feed",
"summary": "Parse any JSON feed and display a list of recent posts to choose from. You can pick any post from the list to instantly open it in Safari.",
"filePath": "b8d3f815-074b-4d65-a821-012069906f2d.9675877D-9CFC-4352-A445-1C5A9DA93A76.",
"fileID": "4_z775fd4fd45c276586c490e1f_f1040eee3060b9eb5_d20190307_m211100_c001_v0001101_t0017",
"actionCount": 23,
"actionIdentifiers": "{is.workflow.actions.comment,is.workflow.actions.comment,is.workflow.actions.number,is.workflow.actions.comment,is.workflow.actions.dictionary,is.workflow.actions.getvalueforkey,is.workflow.actions.choosefromlist,is.workflow.actions.getvariable,is.workflow.actions.getvalueforkey,is.workflow.actions.url,is.workflow.actions.downloadurl,is.workflow.actions.getvalueforkey,is.workflow.actions.getitemfromlist,is.workflow.actions.comment,is.workflow.actions.repeat.each,is.workflow.actions.gettext,is.workflow.actions.setitemname,is.workflow.actions.appendvariable,is.workflow.actions.repeat.each,is.workflow.actions.list,is.workflow.actions.choosefromlist,is.workflow.actions.properties.contacts,is.workflow.actions.openurl}",
"votes": 23,
"tagID": "2f46b7b4-a9fc-45f6-ba23-717cef56ce74",
"color": 4282601983,
"downloads": 815,
"fileHash": "4db2a37a6ae1dc7db7eaaf1eccac413f"
},
{
"id": "1e00b1d1-5cc9-4c74-9ac5-a2600c0cb557",
"createdAt": "2019-03-07 21:11:03.958051",
"updatedAt": "2019-03-07 21:11:03.958051",
"userID": "7b094dd4-47b7-48f7-95f4-43f0f26f2cec",
"title": "Get Article Hero Image",
"summary": "Use Shortcuts' native support for parsing web articles to identify the featured (hero) image of an article and save it to the Photos app. The shortcut needs to run as an extension in Safari or Safari View Controller.",
"filePath": "840fc181-89be-4934-a5b4-e1464243ad39.A2E03F2E-3CE0-48BB-9D5B-A4356F0190E4.",
"fileID": "4_z775fd4fd45c276586c490e1f_f109c4b0ac07c6a29_d20190307_m211103_c001_v0001101_t0044",
"actionCount": 12,
"actionIdentifiers": "{is.workflow.actions.comment,is.workflow.actions.getitemtype,is.workflow.actions.conditional,is.workflow.actions.getvariable,is.workflow.actions.getarticle,is.workflow.actions.properties.articles,is.workflow.actions.detect.images,is.workflow.actions.previewdocument,is.workflow.actions.savetocameraroll,is.workflow.actions.conditional,is.workflow.actions.alert,is.workflow.actions.conditional}",
"votes": 8,
"tagID": "2f46b7b4-a9fc-45f6-ba23-717cef56ce74",
"color": 2846468607,
"downloads": 518,
"fileHash": "5b43d4ca5640ccd660b0af4695a57945"
},
{
"id": "1f92d235-718f-4a09-b201-f64ba35dbd0b",
"createdAt": "2019-03-07 21:03:22.519582",
"updatedAt": "2019-03-07 21:03:22.519582",
"userID": "7b094dd4-47b7-48f7-95f4-43f0f26f2cec",
"title": "Apple Frames",
"summary": "Add device frames to screenshots for iPhones (6, 7, 8, X, and XS generations in standard/Plus/Max sizes), iPad Pro (11\" and 12.9\", 2018 models), Apple Watch S4 (40 and 44mm), MacBook Pro (Retina 13-inch), and iMac (5K). The shortcut supports portrait and landscape orientations, but does not support Display Zoom. If multiple screenshots are passed as input, they will be combined in a single image.",
"filePath": "ffffe689-03f8-4e1c-babd-997a2d3c79f3.54D04B8E-5CAF-4E19-B6A5-C1D64BE842FB.",
"fileID": "4_z775fd4fd45c276586c490e1f_f11628232debc5c79_d20190307_m210239_c001_v0001000_t0010",
"actionCount": 162,
"actionIdentifiers": "{is.workflow.actions.comment,is.workflow.actions.comment,is.workflow.actions.handoff,is.workflow.actions.detect.images,is.workflow.actions.count,is.workflow.actions.conditional,is.workflow.actions.filter.photos,is.workflow.actions.choosefromlist,is.workflow.actions.conditional,is.workflow.actions.getvariable,is.workflow.actions.conditional,is.workflow.actions.repeat.each,is.workflow.actions.detect.images,is.workflow.actions.base64encode,is.workflow.actions.getvariable,is.workflow.actions.properties.images,is.workflow.actions.conditional,is.workflow.actions.comment,is.workflow.actions.getvariable,is.workflow.actions.properties.images,is.workflow.actions.conditional,is.workflow.actions.comment,is.workflow.actions.gettext,is.workflow.actions.dictionary,is.workflow.actions.conditional,is.workflow.actions.conditional,is.workflow.actions.comment,is.workflow.actions.getvariable,is.workflow.actions.image.resize,is.workflow.actions.base64encode,is.workflow.actions.gettext,is.workflow.actions.dictionary,is.workflow.actions.conditional,is.workflow.actions.conditional,is.workflow.actions.conditional,is.workflow.actions.conditional,is.workflow.actions.getvariable,is.workflow.actions.conditional,is.workflow.actions.comment,is.workflow.actions.gettext,is.workflow.actions.dictionary,is.workflow.actions.conditional,is.workflow.actions.getvariable,is.workflow.actions.conditional,is.workflow.actions.comment,is.workflow.actions.gettext,is.workflow.actions.dictionary,is.workflow.actions.conditional,is.workflow.actions.getvariable,is.workflow.actions.conditional,is.workflow.actions.comment,is.workflow.actions.gettext,is.workflow.actions.dictionary,is.workflow.actions.conditional,is.workflow.actions.getvariable,is.workflow.actions.conditional,is.workflow.actions.comment,is.workflow.actions.gettext,is.workflow.actions.getvariable,is.workflow.actions.image.resize,is.workflow.actions.base64encode,is.workflow.actions.dictionary,is.workflow.actions.conditional,is.workflow.actions.getvariable,is.workflow.actions.conditional,is.workflow.actions.comment,is.workflow.actions.gettext,is.workflow.actions.dictionary,is.workflow.actions.conditional,is.workflow.actions.getvariable,is.workflow.actions.conditional,is.workflow.actions.comment,is.workflow.actions.gettext,is.workflow.actions.dictionary,is.workflow.actions.conditional,is.workflow.actions.comment,is.workflow.actions.getvariable,is.workflow.actions.conditional,is.workflow.actions.gettext,is.workflow.actions.dictionary,is.workflow.actions.conditional,is.workflow.actions.comment,is.workflow.actions.getvariable,is.workflow.actions.conditional,is.workflow.actions.gettext,is.workflow.actions.dictionary,is.workflow.actions.conditional,is.workflow.actions.comment,is.workflow.actions.getvariable,is.workflow.actions.conditional,is.workflow.actions.gettext,is.workflow.actions.getvariable,is.workflow.actions.image.resize,is.workflow.actions.base64encode,is.workflow.actions.dictionary,is.workflow.actions.conditional,is.workflow.actions.comment,is.workflow.actions.getvariable,is.workflow.actions.conditional,is.workflow.actions.gettext,is.workflow.actions.dictionary,is.workflow.actions.conditional,is.workflow.actions.comment,is.workflow.actions.getvariable,is.workflow.actions.conditional,is.workflow.actions.gettext,is.workflow.actions.dictionary,is.workflow.actions.conditional,is.workflow.actions.comment,is.workflow.actions.getvariable,is.workflow.actions.conditional,is.workflow.actions.gettext,is.workflow.actions.dictionary,is.workflow.actions.conditional,is.workflow.actions.comment,is.workflow.actions.getvariable,is.workflow.actions.conditional,is.workflow.actions.gettext,is.workflow.actions.dictionary,is.workflow.actions.conditional,is.workflow.actions.comment,is.workflow.actions.getvariable,is.workflow.actions.conditional,is.workflow.actions.gettext,is.workflow.actions.dictionary,is.workflow.actions.conditional,is.workflow.actions.conditional,is.workflow.actions.conditional,is.workflow.actions.conditional,is.workflow.actions.conditional,is.workflow.actions.conditional,is.workflow.actions.conditional,is.workflow.actions.conditional,is.workflow.actions.conditional,is.workflow.actions.conditional,is.workflow.actions.conditional,is.workflow.actions.conditional,is.workflow.actions.conditional,is.workflow.actions.conditional,is.workflow.actions.conditional,is.workflow.actions.conditional,is.workflow.actions.repeat.each,is.workflow.actions.getvariable,is.workflow.actions.repeat.each,is.workflow.actions.getvalueforkey,is.workflow.actions.base64encode,is.workflow.actions.getvariable,is.workflow.actions.base64encode,is.workflow.actions.getvariable,is.workflow.actions.overlayimageonimage,is.workflow.actions.overlayimageonimage,is.workflow.actions.repeat.each,is.workflow.actions.comment,is.workflow.actions.count,is.workflow.actions.conditional,is.workflow.actions.getvariable,is.workflow.actions.image.combine,is.workflow.actions.savetocameraroll,is.workflow.actions.conditional,is.workflow.actions.getvariable,is.workflow.actions.savetocameraroll,is.workflow.actions.conditional}",
"votes": 7,
"tagID": "2f46b7b4-a9fc-45f6-ba23-717cef56ce74",
"color": 946986751,
"downloads": 358,
"fileHash": "f4d69b3f8ea5fbc18addfd7b20e9d774"
},
{
"id": "211f1a43-cae7-440b-bf0f-3408dc5d92c3",
"createdAt": "2018-07-19 18:13:14.319152",
"updatedAt": "2018-07-19 18:13:14.319152",
"userID": "7afdc8e1-a27f-4039-b98b-f65a7ff21255",
"title": "Scan UPC to List",
"summary": "Scans a Bar Code and if it appears to be a UPC (12 numbers), it uses UPCitemdb.com to look up the product name and add it to a Reminder list (e.g. your grocery list).",
"filePath": "scan-upc-to-listBE459743-A439-4C20-ADB3-9242E31135B3.shortcut",
"fileID": "4_z775fd4fd45c276586c490e1f_f108b5daa4aba3ea5_d20180719_m181309_c001_v0001038_t0038",
"actionCount": 21,
"actionIdentifiers": "{is.workflow.actions.comment,is.workflow.actions.scanbarcode,is.workflow.actions.text.match,is.workflow.actions.count,is.workflow.actions.conditional,is.workflow.actions.url,is.workflow.actions.downloadurl,is.workflow.actions.getvalueforkey,is.workflow.actions.getvalueforkey,is.workflow.actions.setvariable,is.workflow.actions.count,is.workflow.actions.conditional,is.workflow.actions.showresult,is.workflow.actions.conditional,is.workflow.actions.getvariable,is.workflow.actions.ask,is.workflow.actions.addnewreminder,is.workflow.actions.conditional,is.workflow.actions.conditional,is.workflow.actions.showresult,is.workflow.actions.conditional}",
"votes": 44,
"tagID": "2e8603d9-d997-4eb4-aa7d-89b10c8c548d",
"color": 255,
"downloads": 1024,
"fileHash": "9acfd40289ad84bbeac6732afff70102"
},
{
"id": "2360f3e6-1e13-42b9-83ce-c431b40c80a8",
"createdAt": "2019-03-07 20:59:33.887138",
"updatedAt": "2019-03-07 20:59:33.887138",
"userID": "7b094dd4-47b7-48f7-95f4-43f0f26f2cec",
"title": "Copy iCloud Drive Link",
"summary": "Pick a file from iCloud Drive (or other document providers) and create a shareable iCloud Mail Drop URL to let other people download the file.",
"filePath": "0a75cdd6-434a-48f2-a0ba-42765563e169.AA1C5A6F-DE74-4CCF-8ED9-055D30FBB471.",
"fileID": "4_z775fd4fd45c276586c490e1f_f1121baeefc5ba683_d20190307_m205933_c001_v0001032_t0026",
"actionCount": 6,
"actionIdentifiers": "{is.workflow.actions.comment,is.workflow.actions.comment,is.workflow.actions.documentpicker.open,is.workflow.actions.file.getlink,is.workflow.actions.setclipboard,is.workflow.actions.alert}",
"votes": 2,
"tagID": "2f46b7b4-a9fc-45f6-ba23-717cef56ce74",
"color": 4292093695,
"downloads": 105,
"fileHash": "18fe940702c3ee79217bc806f0a62b7e"
},
{
"id": "2469057d-d755-4d7d-ace8-efd5c4f7fbb3",
"createdAt": "2019-03-07 21:00:27.214521",
"updatedAt": "2019-03-07 21:00:27.214521",
"userID": "7b094dd4-47b7-48f7-95f4-43f0f26f2cec",
"title": "Median Heart Rate",
"summary": "Calculate your median heart rate for the past two weeks.",
"filePath": "00cec889-fb18-4751-8de8-e3771d3251f9.52EC584D-96D4-43E1-847F-B465923D251D.",
"fileID": "4_z775fd4fd45c276586c490e1f_f102d5908235ca9d0_d20190307_m210023_c001_v0001042_t0056",
"actionCount": 5,
"actionIdentifiers": "{is.workflow.actions.comment,is.workflow.actions.filter.health.quantity,is.workflow.actions.statistics,is.workflow.actions.round,is.workflow.actions.alert}",
"votes": 2,
"tagID": "2f46b7b4-a9fc-45f6-ba23-717cef56ce74",
"color": 946986751,
"downloads": 49,
"fileHash": "8c5ef5e5ef4d2b504d985bba42df58a1"
},
{
"id": "262d4c83-fa51-4065-843f-301d4bf1b445",
"createdAt": "2019-03-07 20:58:22.695836",
"updatedAt": "2019-03-07 20:58:22.695836",
"userID": "7b094dd4-47b7-48f7-95f4-43f0f26f2cec",
"title": "Days Until...",
"summary": "Calculate how many days are left until a date you can type in natural language. The shortcut was designed in English, but can be adapted to other languages as well.",
"filePath": "2b6379c2-97c8-4afb-b4cc-6a4aaa41128e.41323D91-1B82-48E8-9C09-98FB941E1B95.",
"fileID": "4_z775fd4fd45c276586c490e1f_f109f5cd6882d645e_d20190307_m205821_c001_v0001117_t0032",
"actionCount": 20,
"actionIdentifiers": "{is.workflow.actions.comment,is.workflow.actions.date,is.workflow.actions.format.date,is.workflow.actions.setvariable,is.workflow.actions.date,is.workflow.actions.format.date,is.workflow.actions.gettimebetweendates,is.workflow.actions.conditional,is.workflow.actions.gettext,is.workflow.actions.conditional,is.workflow.actions.conditional,is.workflow.actions.gettext,is.workflow.actions.conditional,is.workflow.actions.conditional,is.workflow.actions.gettext,is.workflow.actions.conditional,is.workflow.actions.conditional,is.workflow.actions.conditional,is.workflow.actions.conditional,is.workflow.actions.showresult}",
"votes": 5,
"tagID": "2f46b7b4-a9fc-45f6-ba23-717cef56ce74",
"color": 3679049983,
"downloads": 207,
"fileHash": "0cff5d1491742b4af040f07799e10861"
},
{
"id": "296a15a7-c276-4265-94d5-b79fc2c54f73",
"createdAt": "2019-03-07 21:09:51.835206",
"updatedAt": "2019-03-07 21:09:51.835206",
"userID": "7b094dd4-47b7-48f7-95f4-43f0f26f2cec",
"title": "Timer Running",
"summary": "This shortcut returns details for any currently running timer in your Toggl account.",
"filePath": "6ed3a5e4-598e-4021-8d60-8f5fc449e9ab.B89636F6-1292-4C9D-A7CE-BC366426F63C.",
"fileID": "4_z775fd4fd45c276586c490e1f_f11407eb0ce142f2a_d20190307_m210951_c001_v0001117_t0015",
"actionCount": 50,
"actionIdentifiers": "{is.workflow.actions.comment,is.workflow.actions.comment,is.workflow.actions.gettext,is.workflow.actions.base64encode,is.workflow.actions.setvariable,is.workflow.actions.url,is.workflow.actions.downloadurl,is.workflow.actions.conditional,is.workflow.actions.showresult,is.workflow.actions.conditional,is.workflow.actions.getvalueforkey,is.workflow.actions.setvariable,is.workflow.actions.getvalueforkey,is.workflow.actions.setvariable,is.workflow.actions.count,is.workflow.actions.conditional,is.workflow.actions.gettext,is.workflow.actions.setvariable,is.workflow.actions.conditional,is.workflow.actions.conditional,is.workflow.actions.getvariable,is.workflow.actions.getvalueforkey,is.workflow.actions.setvariable,is.workflow.actions.getvariable,is.workflow.actions.getvalueforkey,is.workflow.actions.text.replace,is.workflow.actions.setvariable,is.workflow.actions.comment,is.workflow.actions.date,is.workflow.actions.adjustdate,is.workflow.actions.setvariable,is.workflow.actions.getvariable,is.workflow.actions.getvalueforkey,is.workflow.actions.setvariable,is.workflow.actions.count,is.workflow.actions.conditional,is.workflow.actions.nothing,is.workflow.actions.conditional,is.workflow.actions.url,is.workflow.actions.downloadurl,is.workflow.actions.getvalueforkey,is.workflow.actions.getvalueforkey,is.workflow.actions.gettext,is.workflow.actions.setvariable,is.workflow.actions.conditional,is.workflow.actions.date,is.workflow.actions.gettimebetweendates,is.workflow.actions.setvariable,is.workflow.actions.showresult,is.workflow.actions.conditional}",
"votes": 1,
"tagID": "2f46b7b4-a9fc-45f6-ba23-717cef56ce74",
"color": 4271458815,
"downloads": 384,
"fileHash": "471c13f160238b19912e1f3497dc01ab"
},
{
"id": "296fc733-bf79-4458-960a-2f60d0de7b18",
"createdAt": "2018-07-18 00:02:41.9263",
"updatedAt": "2018-07-18 00:02:41.926301",
"userID": "5db40190-2de6-440f-adf8-65ae012eeff2",
"title": "Markup Screenshots",
"summary": "This shortcut can annotate screenshots using the new native Markup feature. Annotated screenshots are saved as new images to the library; the original image can optionally be deleted at the end of the shortcut.",
"filePath": "markup-screenshots228723FA-CF2E-4383-9E6D-F50F12D3A10F.shortcut",
"fileID": "4_z775fd4fd45c276586c490e1f_f117c819390d7cdaf_d20180718_m000241_c001_v0001098_t0013",
"actionCount": 13,
"actionIdentifiers": "{is.workflow.actions.getlastscreenshot,is.workflow.actions.choosefromlist,is.workflow.actions.repeat.each,is.workflow.actions.avairyeditphoto,is.workflow.actions.choosefrommenu,is.workflow.actions.choosefrommenu,is.workflow.actions.savetocameraroll,is.workflow.actions.choosefrommenu,is.workflow.actions.share,is.workflow.actions.choosefrommenu,is.workflow.actions.getvariable,is.workflow.actions.deletephotos,is.workflow.actions.repeat.each}",
"votes": 45,
"tagID": "7c829cea-5384-4b69-96ea-cc089668a8c8",
"color": 3980825855,
"downloads": 1654,
"fileHash": "126013b64c3fc6c8cd5e0bd4c7ff3ccc"
},
{
"id": "29eb004f-5baf-4e2b-aad3-d7652324c5b6",
"createdAt": "2018-07-19 14:09:46.750617",
"updatedAt": "2018-07-19 14:09:46.750617",
"userID": "2cd19df1-b19c-46b1-816a-d34bbdc672bd",
"title": "Flight Time",
"summary": "This prepares your phone for a flight - enabling airplane mode, low power mode, and do not disturb. ",
"filePath": "flight-time2D20C7B1-47CA-4F1C-BD99-6CF6A19DED26.shortcut",
"fileID": "4_z775fd4fd45c276586c490e1f_f117b904ac5626544_d20180719_m140946_c001_v0001098_t0015",
"actionCount": 5,
"actionIdentifiers": "{is.workflow.actions.comment,is.workflow.actions.cellulardata.set,is.workflow.actions.airplanemode.set,is.workflow.actions.lowpowermode.set,is.workflow.actions.dnd.set}",
"votes": 80,
"tagID": "2f46b7b4-a9fc-45f6-ba23-717cef56ce74",
"color": 431817727,
"downloads": 1535,
"fileHash": "917b85077dcc2097fdc92dafb24dc2c8"
},
{
"id": "2e6caef5-5ebe-495a-9d7c-10a133ceebc6",
"createdAt": "2018-09-26 20:33:19.497473",
"updatedAt": "2018-09-26 20:33:19.497473",
"userID": "06597d27-69ae-44e6-b252-98b4a7838077",
"title": "IMDB info",
"summary": "Let siri read you the IMDB synopsis of your selected movie title",
"filePath": "imdb-info5392C2A5-ABB0-4E87-8DA3-747B686C4EA9.shortcut",
"fileID": "4_z775fd4fd45c276586c490e1f_f1038b92d1027368c_d20180926_m203319_c001_v0001029_t0027",
"actionCount": 47,
"actionIdentifiers": "{is.workflow.actions.comment,is.workflow.actions.gettext,is.workflow.actions.setvariable,is.workflow.actions.dictatetext,is.workflow.actions.urlencode,is.workflow.actions.gettext,is.workflow.actions.downloadurl,is.workflow.actions.detect.text,is.workflow.actions.text.match,is.workflow.actions.setvariable,is.workflow.actions.count,is.workflow.actions.conditional,is.workflow.actions.getvariable,is.workflow.actions.text.match.getgroup,is.workflow.actions.getitemfromlist,is.workflow.actions.appendvariable,is.workflow.actions.comment,is.workflow.actions.getvariable,is.workflow.actions.getitemfromlist,is.workflow.actions.gettext,is.workflow.actions.appendvariable,is.workflow.actions.comment,is.workflow.actions.getvariable,is.workflow.actions.text.match.getgroup,is.workflow.actions.getitemfromlist,is.workflow.actions.appendvariable,is.workflow.actions.comment,is.workflow.actions.getvariable,is.workflow.actions.getitemfromlist,is.workflow.actions.text.match,is.workflow.actions.text.replace,is.workflow.actions.appendvariable,is.workflow.actions.text.combine,is.workflow.actions.speaktext,is.workflow.actions.getvariable,is.workflow.actions.gethtmlfromrichtext,is.workflow.actions.text.match,is.workflow.actions.setvariable,is.workflow.actions.count,is.workflow.actions.conditional,is.workflow.actions.getvariable,is.workflow.actions.getitemfromlist,is.workflow.actions.url,is.workflow.actions.showwebpage,is.workflow.actions.conditional,is.workflow.actions.conditional,is.workflow.actions.conditional}",
"votes": 84,
"tagID": "2f46b7b4-a9fc-45f6-ba23-717cef56ce74",
"color": 4251333119,
"downloads": 1215,
"fileHash": "19c9a812cd2701268709a21d11ea53df"
},
{
"id": "2eed984e-a4f2-4133-9497-313a82ba45f8",
"createdAt": "2019-03-07 20:59:25.957632",
"updatedAt": "2019-03-07 20:59:25.957632",
"userID": "7b094dd4-47b7-48f7-95f4-43f0f26f2cec",
"title": "Attach to Bear Note",
"summary": "Append a file or image to the bottom of a note in Bear. The shortcut will either present the native Files or Photos picker before launching the Bear app.",
"filePath": "554fd66d-5f99-4ef7-9202-b9aea9e39d6a.CE85F1CC-EDAF-4F13-A6FD-6EC550489E18.",
"fileID": "4_z775fd4fd45c276586c490e1f_f114955755899149e_d20190307_m205925_c001_v0001090_t0048",
"actionCount": 10,
"actionIdentifiers": "{is.workflow.actions.comment,is.workflow.actions.gettext,is.workflow.actions.choosefrommenu,is.workflow.actions.choosefrommenu,is.workflow.actions.documentpicker.open,is.workflow.actions.choosefrommenu,is.workflow.actions.selectphoto,is.workflow.actions.detect.images,is.workflow.actions.choosefrommenu,net.shinyfrog.bear-IOS.add}",
"votes": 6,
"tagID": "2f46b7b4-a9fc-45f6-ba23-717cef56ce74",
"color": 4282601983,
"downloads": 81,
"fileHash": "89bf42d5d9b6686a6a31945226104f65"
},
{
"id": "2f2f1057-0583-4719-939f-91b70b1407d0",
"createdAt": "2018-07-28 00:13:59.378899",
"updatedAt": "2018-07-28 00:13:59.378899",
"userID": "4517661e-2a88-4995-bc27-55294695e763",
"title": "Resize image to clipboard",
"summary": "Takes an image (via share sheet) and resizes to a much smaller JPEG. Useful for posting images to Slack. ",
"filePath": "resize-image-to-clipboard12429DC9-7C0F-484F-9483-2876646BBF19.shortcut",
"fileID": "4_z775fd4fd45c276586c490e1f_f104148abf6146890_d20180728_m001359_c001_v0001009_t0022",
"actionCount": 5,
"actionIdentifiers": "{is.workflow.actions.comment,is.workflow.actions.image.resize,is.workflow.actions.image.convert,is.workflow.actions.setclipboard,is.workflow.actions.notification}",
"votes": 43,
"tagID": "7c829cea-5384-4b69-96ea-cc089668a8c8",
"color": 4292093695,
"downloads": 3529,
"fileHash": "27af3ea6e2743c609867d40875a9e060"
},
{
"id": "31c35f92-ba45-46ac-b585-034eed234031",
"createdAt": "2019-03-07 20:58:31.592707",
"updatedAt": "2019-03-07 20:58:31.592707",
"userID": "7b094dd4-47b7-48f7-95f4-43f0f26f2cec",
"title": "Invert Names",
"summary": "Given a list of last and first names separated by a comma, the shortcut inverts their position and returns a plain text list of first names followed by last names.",
"filePath": "8f821e29-e367-4fc0-8910-de4f11855ab6.ACF04BF9-E7D9-4CDE-B6A5-9D86B187DD11.",
"fileID": "4_z775fd4fd45c276586c490e1f_f1056be83d759513b_d20190307_m205831_c001_v0001011_t0028",
"actionCount": 16,
"actionIdentifiers": "{is.workflow.actions.comment,is.workflow.actions.comment,is.workflow.actions.gettext,is.workflow.actions.text.split,is.workflow.actions.repeat.each,is.workflow.actions.text.match,is.workflow.actions.setvariable,is.workflow.actions.text.match.getgroup,is.workflow.actions.setvariable,is.workflow.actions.getvariable,is.workflow.actions.text.match.getgroup,is.workflow.actions.setvariable,is.workflow.actions.gettext,is.workflow.actions.setvariable,is.workflow.actions.repeat.each,is.workflow.actions.getvariable}",
"votes": 0,
"tagID": "2f46b7b4-a9fc-45f6-ba23-717cef56ce74",
"color": 255,
"downloads": 44,
"fileHash": "6ff3bef9106234a75d73402367c40147"
},
{
"id": "324ecfce-1eb9-49f4-b653-774db74d1547",
"createdAt": "2019-03-07 21:08:48.19285",
"updatedAt": "2019-03-07 21:08:48.19285",
"userID": "7b094dd4-47b7-48f7-95f4-43f0f26f2cec",
"title": "Webpage to Things",
"summary": "Turn a Safari webpage into a rich task in Things. The shortcut can add a task with a specific tag, into a specific project, under a specific heading in Things using the webpage's original title and URL as the task's metadata. Additionally, you can type a due date in natural language before creating the task in Things.",
"filePath": "a1bc9aa4-c0a3-4582-9ee8-378aadb11559.B83440F1-F7A3-4C83-AD3A-3E820E6228C5.",
"fileID": "4_z775fd4fd45c276586c490e1f_f106c8446dcfa0a3c_d20190307_m210847_c001_v0001043_t0050",
"actionCount": 6,
"actionIdentifiers": "{is.workflow.actions.comment,is.workflow.actions.gettext,is.workflow.actions.gettext,is.workflow.actions.gettext,is.workflow.actions.date,com.culturedcode.ThingsTouch.addtask}",
"votes": 1,
"tagID": "2f46b7b4-a9fc-45f6-ba23-717cef56ce74",
"color": 463140863,
"downloads": 266,
"fileHash": "aac2adb6b0e0539625d321e8509e09a6"
},
{
"id": "32699748-db50-4765-821a-39eb050e982f",
"createdAt": "2019-03-07 20:58:55.906718",
"updatedAt": "2019-03-07 20:58:55.906718",
"userID": "7b094dd4-47b7-48f7-95f4-43f0f26f2cec",
"title": "Twitter to Evernote",
"summary": "Convert a tweet URL into an embeddable rich text version that contains the original text and links of the tweet. The rich text is then appended to an existing note in Evernote. The shortcut cleans up shortened Twitter links, maintains author names, and lets you customize the list of Evernote notes to append tweets to.",
"filePath": "e680ba8b-7876-4fa2-8417-2db59a226a92.54522C5A-3672-49A7-AC18-C25B46B93E7E.",
"fileID": "4_z775fd4fd45c276586c490e1f_f100f7d1292738a9d_d20190307_m205855_c001_v0001015_t0039",
"actionCount": 51,
"actionIdentifiers": "{is.workflow.actions.comment,is.workflow.actions.comment,is.workflow.actions.list,is.workflow.actions.comment,is.workflow.actions.getvariable,is.workflow.actions.count,is.workflow.actions.conditional,is.workflow.actions.url,is.workflow.actions.conditional,is.workflow.actions.getvariable,is.workflow.actions.url.expand,is.workflow.actions.setvariable,is.workflow.actions.conditional,is.workflow.actions.alert,is.workflow.actions.conditional,is.workflow.actions.conditional,is.workflow.actions.getclipboard,is.workflow.actions.detect.link,is.workflow.actions.conditional,is.workflow.actions.url.expand,is.workflow.actions.setvariable,is.workflow.actions.conditional,is.workflow.actions.alert,is.workflow.actions.conditional,is.workflow.actions.conditional,is.workflow.actions.url,is.workflow.actions.downloadurl,is.workflow.actions.detect.dictionary,is.workflow.actions.comment,is.workflow.actions.getvalueforkey,is.workflow.actions.getrichtextfromhtml,is.workflow.actions.getmarkdownfromrichtext,is.workflow.actions.comment,is.workflow.actions.text.match,is.workflow.actions.text.match.getgroup,is.workflow.actions.url.expand,is.workflow.actions.getvariable,is.workflow.actions.text.replace,is.workflow.actions.comment,is.workflow.actions.text.replace,is.workflow.actions.comment,is.workflow.actions.text.replace,is.workflow.actions.setvariable,is.workflow.actions.getvariable,is.workflow.actions.getvalueforkey,is.workflow.actions.gettext,is.workflow.actions.getrichtextfrommarkdown,is.workflow.actions.getvariable,is.workflow.actions.choosefromlist,is.workflow.actions.getvariable,is.workflow.actions.evernote.append}",
"votes": 1,
"tagID": "2f46b7b4-a9fc-45f6-ba23-717cef56ce74",
"color": 4292093695,
"downloads": 30,
"fileHash": "7fd8983b3c5b72be178f493b8208b327"
},
{
"id": "36b8a057-3cb6-4fc1-8443-4e82494f723c",
"createdAt": "2019-03-07 21:10:27.152173",
"updatedAt": "2019-03-07 21:10:27.152173",
"userID": "7b094dd4-47b7-48f7-95f4-43f0f26f2cec",
"title": "Share Long URL",
"summary": "Expand a short URL into the long, unfurled version. Optionally, you can share a textshot associated with the URL by picking a photo from the library. ",
"filePath": "26c75949-e957-4106-a181-cfe99bb8ebce.6B765118-396C-46FA-B079-82BB064B1C13.",
"fileID": "4_z775fd4fd45c276586c490e1f_f1056630bd0cd1fe7_d20190307_m211026_c001_v0001037_t0005",
"actionCount": 31,
"actionIdentifiers": "{is.workflow.actions.comment,is.workflow.actions.comment,is.workflow.actions.getitemtype,is.workflow.actions.conditional,is.workflow.actions.gettext,is.workflow.actions.getvariable,is.workflow.actions.detect.link,is.workflow.actions.url.expand,is.workflow.actions.gettext,is.workflow.actions.setvariable,is.workflow.actions.conditional,is.workflow.actions.getvariable,is.workflow.actions.detect.text,is.workflow.actions.text.combine,is.workflow.actions.detect.link,is.workflow.actions.url.expand,is.workflow.actions.getvariable,is.workflow.actions.text.replace,is.workflow.actions.setvariable,is.workflow.actions.conditional,is.workflow.actions.choosefrommenu,is.workflow.actions.choosefrommenu,is.workflow.actions.gettext,is.workflow.actions.choosefrommenu,is.workflow.actions.handoff,is.workflow.actions.selectphoto,is.workflow.actions.detect.images,is.workflow.actions.appendvariable,is.workflow.actions.getvariable,is.workflow.actions.choosefrommenu,is.workflow.actions.share}",
"votes": 4,
"tagID": "2f46b7b4-a9fc-45f6-ba23-717cef56ce74",
"color": 255,
"downloads": 460,
"fileHash": "0974d40a6e28d1a324130975088fd154"
},
{
"id": "3733df85-9fb4-4b15-b7a0-fbe8d18ddd5a",
"createdAt": "2019-03-07 20:57:54.85277",
"updatedAt": "2019-03-07 20:57:54.85277",
"userID": "7b094dd4-47b7-48f7-95f4-43f0f26f2cec",
"title": "Save App to Trello",
"summary": "Save an app from the App Store as a card in Trello. The app's icon, title, and other metadata are used to compose a rich card in Trello.",
"filePath": "459b82a0-39a5-4e8e-afdf-22ae94d7076c.1FF7CA34-53B6-4593-B980-535F5300D2E8.",
"fileID": "4_z775fd4fd45c276586c490e1f_f101eb1941d8d44a4_d20190307_m205748_c001_v0001006_t0019",
"actionCount": 25,
"actionIdentifiers": "{is.workflow.actions.comment,is.workflow.actions.detect.link,is.workflow.actions.url.expand,is.workflow.actions.text.match,is.workflow.actions.text.match.getgroup,is.workflow.actions.searchappstore,is.workflow.actions.properties.appstore,is.workflow.actions.getvariable,is.workflow.actions.properties.appstore,is.workflow.actions.getvariable,is.workflow.actions.properties.appstore,is.workflow.actions.getvariable,is.workflow.actions.properties.appstore,is.workflow.actions.getvariable,is.workflow.actions.properties.appstore,is.workflow.actions.getvariable,is.workflow.actions.properties.appstore,is.workflow.actions.conditional,is.workflow.actions.gettext,is.workflow.actions.setvariable,is.workflow.actions.conditional,is.workflow.actions.gettext,is.workflow.actions.setvariable,is.workflow.actions.conditional,is.workflow.actions.trello.add.card}",
"votes": 3,
"tagID": "2f46b7b4-a9fc-45f6-ba23-717cef56ce74",
"color": 4292093695,
"downloads": 50,
"fileHash": "2da1814c3e9455b271ef6478d00a16ec"
},
{
"id": "373f64d7-224d-42a9-91f5-83c525a33e76",
"createdAt": "2018-07-07 23:44:40.912366",
"updatedAt": "2018-07-07 23:44:40.912366",
"userID": "9b5658e5-072e-4851-9e83-ece288156a8b",
"title": "Yoda",
"summary": "Translate a spoken phrase to the way Yoda would say it.",
"filePath": "yodaA046669D-CFA3-410A-9C38-90AA5FE20F84.shortcut",
"fileID": "4_z775fd4fd45c276586c490e1f_f104335a17da2c08c_d20180707_m234440_c001_v0001022_t0059",
"actionCount": 7,
"actionIdentifiers": "{is.workflow.actions.dictatetext,is.workflow.actions.setvariable,is.workflow.actions.gettext,is.workflow.actions.downloadurl,is.workflow.actions.getvalueforkey,is.workflow.actions.getvalueforkey,is.workflow.actions.speaktext}",
"votes": 130,
"tagID": "bf7fc94e-c99b-4dd4-b775-7b2837543b19",
"color": 4271458815,
"downloads": 2689,
"fileHash": "87a74f11b45c06ab425de5bfa53a5308"
},
{
"id": "37cb503f-d667-4fa9-a082-be347173f9fc",
"createdAt": "2019-03-07 21:00:19.01381",
"updatedAt": "2019-03-07 21:00:19.01381",
"userID": "7b094dd4-47b7-48f7-95f4-43f0f26f2cec",
"title": "Last Coffee",
"summary": "Check how long ago you had your last coffee based on when caffeine was last logged in HealthKit. You can use this shortcut in the widget and Siri.",
"filePath": "ea90aee2-0623-413f-916b-15e758487029.617CEB3C-A99C-42FA-88E1-E0208BB22D6F.",
"fileID": "4_z775fd4fd45c276586c490e1f_f1116d5ebda27784a_d20190307_m210018_c001_v0001105_t0040",
"actionCount": 18,
"actionIdentifiers": "{is.workflow.actions.comment,is.workflow.actions.filter.health.quantity,is.workflow.actions.detect.date,is.workflow.actions.date,is.workflow.actions.gettimebetweendates,is.workflow.actions.setvariable,is.workflow.actions.conditional,is.workflow.actions.getvariable,is.workflow.actions.math,is.workflow.actions.round,is.workflow.actions.setvariable,is.workflow.actions.gettext,is.workflow.actions.setvariable,is.workflow.actions.conditional,is.workflow.actions.gettext,is.workflow.actions.setvariable,is.workflow.actions.conditional,is.workflow.actions.showresult}",
"votes": 0,
"tagID": "2f46b7b4-a9fc-45f6-ba23-717cef56ce74",
"color": 4271458815,
"downloads": 32,
"fileHash": "dc689601948bc64dadf5d81547f3a85a"
},
{
"id": "3845ffcd-63c7-4ba1-831c-903d708b41e4",
"createdAt": "2019-03-07 20:58:19.53843",
"updatedAt": "2019-03-07 20:58:19.53843",
"userID": "7b094dd4-47b7-48f7-95f4-43f0f26f2cec",
"title": "Create Calendar Event from Template",
"summary": "Create a new calendar event choosing from a list of templates. Templates are represented by a Dictionary action at the beginning of the shortcut and they support customization for calendar name, location, duration, notes, alert time, and the all-day setting. The shortcut will only ask to confirm the event's title and start date. This shortcut was originally created for members of Club MacStories.",
"filePath": "ea158cae-091c-493c-8ca2-3fd2f565c2e8.550B734D-4E95-4C5C-A2F0-B2E6CC5B3E54.",
"fileID": "4_z775fd4fd45c276586c490e1f_f1171bb78dd0415ed_d20190307_m205814_c001_v0001113_t0048",
"actionCount": 14,
"actionIdentifiers": "{is.workflow.actions.comment,is.workflow.actions.comment,is.workflow.actions.dictionary,is.workflow.actions.getvalueforkey,is.workflow.actions.choosefromlist,is.workflow.actions.getvariable,is.workflow.actions.getvalueforkey,is.workflow.actions.ask,is.workflow.actions.comment,is.workflow.actions.ask,is.workflow.actions.adjustdate,is.workflow.actions.getvariable,is.workflow.actions.adjustdate,is.workflow.actions.addnewevent}",
"votes": 7,
"tagID": "2f46b7b4-a9fc-45f6-ba23-717cef56ce74",
"color": 4282601983,
"downloads": 184,
"fileHash": "13fc634b97bccbd0c06a5de1da295de5"
},
{
"id": "39aa3a4f-06b7-4cef-8d7f-284a4e77304b",
"createdAt": "2019-03-07 20:59:56.643311",
"updatedAt": "2019-03-07 20:59:56.643311",
"userID": "7b094dd4-47b7-48f7-95f4-43f0f26f2cec",
"title": "PDF Extract",
"summary": "Extract text from a PDF document picked from Files using iOS' native text extraction APIs. The resulting text is copied to the clipboard.",
"filePath": "c26a2a2f-4fbe-4061-8b7e-630da8260bb4.3B23CCA4-9309-494B-8A2E-FC39409717D3.",
"fileID": "4_z775fd4fd45c276586c490e1f_f106ce25c464c46eb_d20190307_m205956_c001_v0001038_t0047",
"actionCount": 11,
"actionIdentifiers": "{is.workflow.actions.comment,is.workflow.actions.documentpicker.open,is.workflow.actions.getitemtype,is.workflow.actions.conditional,is.workflow.actions.getvariable,is.workflow.actions.conditional,is.workflow.actions.makepdf,is.workflow.actions.conditional,is.workflow.actions.detect.text,is.workflow.actions.text.combine,is.workflow.actions.setclipboard}",
"votes": 0,
"tagID": "2f46b7b4-a9fc-45f6-ba23-717cef56ce74",
"color": 4271458815,
"downloads": 110,
"fileHash": "57230fa31be559005865244f7ff4f090"
},
{
"id": "3c236a32-8cf2-4bbe-a73a-d0db16e75a27",
"createdAt": "2019-03-07 21:09:11.270921",
"updatedAt": "2019-03-07 21:09:11.270921",
"userID": "7b094dd4-47b7-48f7-95f4-43f0f26f2cec",
"title": "Append to Clipboard",
"summary": "Get text from the share sheet and append it to the system clipboard as a new line.",
"filePath": "04f70dc3-c3a5-4fec-bf76-08989cf1734e.4E85C825-FCA6-4306-8764-1B6BEB8C1160.",
"fileID": "4_z775fd4fd45c276586c490e1f_f100956dae337d415_d20190307_m210910_c001_v0001036_t0020",
"actionCount": 10,
"actionIdentifiers": "{is.workflow.actions.comment,is.workflow.actions.comment,is.workflow.actions.detect.text,is.workflow.actions.setvariable,is.workflow.actions.getclipboard,is.workflow.actions.setvariable,is.workflow.actions.getvariable,is.workflow.actions.appendvariable,is.workflow.actions.text.combine,is.workflow.actions.setclipboard}",
"votes": 3,
"tagID": "2f46b7b4-a9fc-45f6-ba23-717cef56ce74",
"color": 463140863,
"downloads": 353,
"fileHash": "d9e24bd5dc937f071f5d7dc714ddab3d"
},
{
"id": "4066c658-70dd-4cfb-8355-ab88d3efb499",
"createdAt": "2019-03-07 21:08:53.449361",
"updatedAt": "2019-03-07 21:08:53.449361",
"userID": "7b094dd4-47b7-48f7-95f4-43f0f26f2cec",
"title": "Reminder with Links",
"summary": "Searches the Reminders app for tasks that contain URLs in their note field. Optionally, you can add more filters (for dates, Reminders lists, etc.) to narrow down the list of results. The shortcut lets you open multiple URLs from multiple reminders at once in Safari.",
"filePath": "7decf92b-021b-4966-b62c-0436b500af27.81345884-DF01-47A2-8B98-B97C9BA103F3.",
"fileID": "4_z775fd4fd45c276586c490e1f_f1032ae5606c9a09a_d20190307_m210852_c001_v0001109_t0005",
"actionCount": 54,
"actionIdentifiers": "{is.workflow.actions.comment,is.workflow.actions.filter.reminders,is.workflow.actions.repeat.each,is.workflow.actions.properties.reminders,is.workflow.actions.detect.link,is.workflow.actions.count,is.workflow.actions.conditional,is.workflow.actions.appendvariable,is.workflow.actions.getvariable,is.workflow.actions.appendvariable,is.workflow.actions.conditional,is.workflow.actions.conditional,is.workflow.actions.repeat.each,is.workflow.actions.getvariable,is.workflow.actions.count,is.workflow.actions.conditional,is.workflow.actions.gettext,is.workflow.actions.conditional,is.workflow.actions.gettext,is.workflow.actions.conditional,is.workflow.actions.getvariable,is.workflow.actions.count,is.workflow.actions.conditional,is.workflow.actions.alert,is.workflow.actions.conditional,is.workflow.actions.getvariable,is.workflow.actions.choosefromlist,is.workflow.actions.comment,is.workflow.actions.repeat.each,is.workflow.actions.filter.reminders,is.workflow.actions.properties.reminders,is.workflow.actions.detect.link,is.workflow.actions.count,is.workflow.actions.conditional,is.workflow.actions.getvariable,is.workflow.actions.appendvariable,is.workflow.actions.conditional,is.workflow.actions.comment,is.workflow.actions.conditional,is.workflow.actions.getvariable,is.workflow.actions.choosefromlist,is.workflow.actions.appendvariable,is.workflow.actions.conditional,is.workflow.actions.conditional,is.workflow.actions.nothing,is.workflow.actions.conditional,is.workflow.actions.conditional,is.workflow.actions.conditional,is.workflow.actions.conditional,is.workflow.actions.repeat.each,is.workflow.actions.conditional,is.workflow.actions.comment,is.workflow.actions.getvariable,is.workflow.actions.openurl}",
"votes": 2,
"tagID": "2f46b7b4-a9fc-45f6-ba23-717cef56ce74",
"color": 4292093695,
"downloads": 226,
"fileHash": "82778222e012d5fec6cae1715c5f48f5"
},
{
"id": "4144e0ff-d6f4-48ce-949d-20186da2988e",
"createdAt": "2018-10-23 16:50:48.113583",
"updatedAt": "2018-10-23 16:50:48.113583",
"userID": "26c85a38-b97d-483a-9081-dad41e78e63c",
"title": "IMDB rating for movies",
"summary": "Get an IMDb rating of any movie",
"filePath": "imdb-ratingDEB9BBA2-67D9-443A-B14A-1B75437F0798.shortcut",
"fileID": "4_z775fd4fd45c276586c490e1f_f11880ec1e4dbe50b_d20181023_m165047_c001_v0001103_t0024",
"actionCount": 19,
"actionIdentifiers": "{is.workflow.actions.ask,is.workflow.actions.text.replace,is.workflow.actions.gettext,is.workflow.actions.url,is.workflow.actions.downloadurl,is.workflow.actions.conditional,is.workflow.actions.text.match,is.workflow.actions.getitemfromlist,is.workflow.actions.setvariable,is.workflow.actions.getvariable,is.workflow.actions.text.replace,is.workflow.actions.getrichtextfromhtml,is.workflow.actions.setvariable,is.workflow.actions.showresult,is.workflow.actions.conditional,is.workflow.actions.alert,is.workflow.actions.gettext,is.workflow.actions.searchweb,is.workflow.actions.conditional}",
"votes": 105,
"tagID": "2f46b7b4-a9fc-45f6-ba23-717cef56ce74",
"color": 4282601983,
"downloads": 1623,
"fileHash": "c533bc44784667e80205fcb4a41b1adf"
},
{
"id": "41898e50-49ad-4f9a-a9ef-d6046b7f8785",
"createdAt": "2019-03-07 20:58:12.602472",
"updatedAt": "2019-03-07 20:58:12.602472",
"userID": "7b094dd4-47b7-48f7-95f4-43f0f26f2cec",
"title": "Upcoming Events",
"summary": "View your next five calendar events in a list. The selected event will be opened in the system Calendar app. This shortcut can be used from the widget.",
"filePath": "8c3d7f4f-3c8e-4ff2-a6b3-10db223f48a9.46E44E80-0835-43AB-8588-829F13FD3C46.",
"fileID": "4_z775fd4fd45c276586c490e1f_f1127d1572e9766a8_d20190307_m205812_c001_v0001044_t0014",
"actionCount": 11,
"actionIdentifiers": "{is.workflow.actions.comment,is.workflow.actions.getupcomingevents,is.workflow.actions.getitemfromlist,is.workflow.actions.detect.date,is.workflow.actions.getvariable,is.workflow.actions.getitemfromlist,is.workflow.actions.detect.date,is.workflow.actions.gettext,is.workflow.actions.getvariable,is.workflow.actions.choosefromlist,is.workflow.actions.showincalendar}",
"votes": 6,
"tagID": "2f46b7b4-a9fc-45f6-ba23-717cef56ce74",
"color": 4271458815,
"downloads": 113,
"fileHash": "f7ad4008e8eb32aab30851c63f5273bd"
},
{
"id": "42ec6574-71ce-4b9c-87b1-d48e45c7f2fe",
"createdAt": "2019-03-07 21:10:41.113751",
"updatedAt": "2019-03-07 21:10:41.113752",
"userID": "7b094dd4-47b7-48f7-95f4-43f0f26f2cec",
"title": "Trigger IFTTT Webhook",
"summary": "Trigger a webhook-based IFTTT applet from Shortcuts. Requires an IFTTT Maker developer key. The shortcut can be executed from Siri or the widget as well.",
"filePath": "e579cd7c-ac7d-4c42-8a27-3ea0bc5b8874.8A0205C7-6A04-40B4-9A90-EAF46B9D4682.",
"fileID": "4_z775fd4fd45c276586c490e1f_f114998d4b1e53263_d20190307_m211040_c001_v0001101_t0035",
"actionCount": 6,
"actionIdentifiers": "{is.workflow.actions.comment,is.workflow.actions.gettext,is.workflow.actions.comment,is.workflow.actions.gettext,is.workflow.actions.url,is.workflow.actions.downloadurl}",
"votes": 7,
"tagID": "2f46b7b4-a9fc-45f6-ba23-717cef56ce74",
"color": 4292093695,
"downloads": 638,
"fileHash": "57aeb08cdd731f18e1018d8e371ecb5e"
},
{
"id": "441c6818-5d66-45e5-822f-953a23373125",
"createdAt": "2019-03-07 21:09:08.324677",
"updatedAt": "2019-03-07 21:09:08.324678",
"userID": "7b094dd4-47b7-48f7-95f4-43f0f26f2cec",
"title": "Add Reminder with GoodTask Subtasks",
"summary": "Create a new task in the Reminders database with subtasks based on the GoodTask syntax. Subtasks have to be entered on multiple lines and they'll be added to the reminder's note field. Subtasks can be previewed natively in the GoodTask app.",
"filePath": "d9908e8d-e297-4272-97b0-8299c662988b.BE5774EA-57EB-46FE-8C5F-709F3E0F6F52.",
"fileID": "4_z775fd4fd45c276586c490e1f_f11308fb214bd5734_d20190307_m210905_c001_v0001113_t0026",
"actionCount": 12,
"actionIdentifiers": "{is.workflow.actions.comment,is.workflow.actions.ask,is.workflow.actions.comment,is.workflow.actions.gettext,is.workflow.actions.text.split,is.workflow.actions.repeat.each,is.workflow.actions.gettext,is.workflow.actions.repeat.each,is.workflow.actions.text.combine,is.workflow.actions.comment,is.workflow.actions.gettext,is.workflow.actions.addnewreminder}",
"votes": 4,
"tagID": "2f46b7b4-a9fc-45f6-ba23-717cef56ce74",
"color": 946986751,
"downloads": 228,
"fileHash": "f95f622e8cc2c504ee27039fadb3c58b"
},
{
"id": "44ac33d9-7183-4bbc-83a6-cd2cb7f11986",
"createdAt": "2018-10-24 02:59:49.302461",
"updatedAt": "2018-10-24 02:59:49.302461",
"userID": "355e489e-0c50-4281-bb4d-3792a6eb71b5",
"title": "Scan and Search from a barcode",
"summary": "Quickly search the internet from a barcode.",
"filePath": "search-barcode31CAF4A3-2045-4F00-A7BA-8D20D41501BB.shortcut",
"fileID": "4_z775fd4fd45c276586c490e1f_f111d2f75bf08a227_d20181024_m025949_c001_v0001003_t0026",
"actionCount": 3,
"actionIdentifiers": "{is.workflow.actions.scanbarcode,is.workflow.actions.gettext,is.workflow.actions.searchweb}",
"votes": 152,
"tagID": "2f46b7b4-a9fc-45f6-ba23-717cef56ce74",
"color": 4282601983,
"downloads": 1752,
"fileHash": "5907b953fd2111ab7e5e3b663498afb0"
},
{
"id": "45996fa6-24d4-4162-bd4e-2df8d09f7457",
"createdAt": "2019-03-07 21:01:47.224902",
"updatedAt": "2019-03-07 21:01:47.224902",
"userID": "7b094dd4-47b7-48f7-95f4-43f0f26f2cec",
"title": "Encode to Audio and Share",
"summary": "Encode the file passed to the shortcut as audio and apply custom metadata to it such as artwork, artist name, and album. The audio file is then shared with extensions.",
"filePath": "7c51a1f7-5983-4c66-8fea-4f4626f0a934.C4FFDF1C-14FD-433E-8770-AB54C2BF52C3.",
"fileID": "4_z775fd4fd45c276586c490e1f_f11373847833bd20b_d20190307_m210147_c001_v0001042_t0010",
"actionCount": 7,
"actionIdentifiers": "{is.workflow.actions.comment,is.workflow.actions.gettext,is.workflow.actions.documentpicker.open,is.workflow.actions.detect.images,is.workflow.actions.getvariable,is.workflow.actions.encodemedia,is.workflow.actions.openin}",
"votes": 0,
"tagID": "2f46b7b4-a9fc-45f6-ba23-717cef56ce74",
"color": 255,
"downloads": 278,
"fileHash": "ca2b44f42ac15323b9f23e8448b5cf56"
},
{
"id": "46051272-40ac-495f-be1c-3ab3df910e96",
"createdAt": "2019-03-07 20:57:41.669346",
"updatedAt": "2019-03-07 20:57:41.669346",
"userID": "7b094dd4-47b7-48f7-95f4-43f0f26f2cec",
"title": "App Release Notes",
"summary": "Copy the release notes for the latest version of an app shared from the App Store. By default, the shortcut searches the U.S. App Store, but you can change the country to your locale.",
"filePath": "f7d816c2-e4a4-4a63-977d-563151d896fb.15825BC7-680F-45CE-B36A-31F03839AE55.",
"fileID": "4_z775fd4fd45c276586c490e1f_f105566152b51bb5d_d20190307_m205741_c001_v0001103_t0026",
"actionCount": 16,
"actionIdentifiers": "{is.workflow.actions.comment,is.workflow.actions.detect.link,is.workflow.actions.url.expand,is.workflow.actions.text.match,is.workflow.actions.text.match.getgroup,is.workflow.actions.searchappstore,is.workflow.actions.properties.appstore,is.workflow.actions.getvariable,is.workflow.actions.properties.appstore,is.workflow.actions.format.date,is.workflow.actions.getvariable,is.workflow.actions.properties.appstore,is.workflow.actions.gettext,is.workflow.actions.alert,is.workflow.actions.getvariable,is.workflow.actions.setclipboard}",
"votes": 2,
"tagID": "2f46b7b4-a9fc-45f6-ba23-717cef56ce74",
"color": 2846468607,
"downloads": 41,
"fileHash": "5a04db5c0211ee84cff8501e582958d7"
},
{
"id": "47314438-9158-4694-8bcd-b65ec512bf3a",
"createdAt": "2019-03-07 21:11:41.947892",
"updatedAt": "2019-03-07 21:11:41.947892",
"userID": "7b094dd4-47b7-48f7-95f4-43f0f26f2cec",
"title": "Morning Routine",
"summary": "A comprehensive shortcut for your morning routine. This shortcut can read you the news, list your upcoming agenda, turn on HomeKit scenes, and much more. By default, the shortcut requires the AutoSleep app to process sleep data (AutoSleep is only available on iPhone), LookUp for the word of the day, and GoodTask for Reminders lists. It also uses the Today Weather Forecast shortcut. Optionally, the shortcut can also integrate with Apple Music, Overcast, and Deliveries. More details about this shortcut are available in the MacStories iOS 12 review.",
"filePath": "67df3884-86d9-47b8-8279-45417a038519.7D7DD100-C870-4879-ABE6-8E7EC00311BB.",
"fileID": "4_z775fd4fd45c276586c490e1f_f100cfdb9c43a687d_d20190307_m211140_c001_v0001104_t0030",
"actionCount": 113,
"actionIdentifiers": "{is.workflow.actions.comment,is.workflow.actions.comment,is.workflow.actions.filter.calendarevents,is.workflow.actions.count,is.workflow.actions.conditional,is.workflow.actions.gettext,is.workflow.actions.setvariable,is.workflow.actions.gettext,is.workflow.actions.setvariable,is.workflow.actions.conditional,is.workflow.actions.conditional,is.workflow.actions.gettext,is.workflow.actions.setvariable,is.workflow.actions.gettext,is.workflow.actions.setvariable,is.workflow.actions.conditional,is.workflow.actions.conditional,is.workflow.actions.gettext,is.workflow.actions.setvariable,is.workflow.actions.gettext,is.workflow.actions.setvariable,is.workflow.actions.conditional,is.workflow.actions.conditional,is.workflow.actions.conditional,is.workflow.actions.conditional,is.workflow.actions.getvariable,is.workflow.actions.repeat.each,is.workflow.actions.gettext,is.workflow.actions.appendvariable,is.workflow.actions.repeat.each,is.workflow.actions.getvariable,is.workflow.actions.conditional,is.workflow.actions.nothing,is.workflow.actions.setvariable,is.workflow.actions.conditional,is.workflow.actions.getvariable,is.workflow.actions.text.combine,is.workflow.actions.gettext,is.workflow.actions.setvariable,is.workflow.actions.conditional,is.workflow.actions.gettext,is.workflow.actions.setvariable,is.workflow.actions.url,is.workflow.actions.rss,is.workflow.actions.repeat.each,is.workflow.actions.getitemname,is.workflow.actions.gettext,is.workflow.actions.appendvariable,is.workflow.actions.repeat.each,is.workflow.actions.getvariable,is.workflow.actions.text.combine,is.workflow.actions.comment,is.workflow.actions.sirikit.donation.handle,is.workflow.actions.getclipboard,is.workflow.actions.getvalueforkey,is.workflow.actions.gettext,is.workflow.actions.setvariable,is.workflow.actions.comment,is.workflow.actions.rss,is.workflow.actions.comment,is.workflow.actions.runworkflow,is.workflow.actions.setvariable,is.workflow.actions.comment,is.workflow.actions.comment,is.workflow.actions.comment,is.workflow.actions.gettext,is.workflow.actions.appendvariable,is.workflow.actions.comment,is.workflow.actions.gettext,is.workflow.actions.appendvariable,is.workflow.actions.comment,is.workflow.actions.gettext,is.workflow.actions.appendvariable,is.workflow.actions.comment,is.workflow.actions.gettext,is.workflow.actions.appendvariable,is.workflow.actions.comment,is.workflow.actions.gettext,is.workflow.actions.appendvariable,is.workflow.actions.getvariable,is.workflow.actions.text.combine,is.workflow.actions.setitemname,is.workflow.actions.comment,is.workflow.actions.sirikit.donation.handle,is.workflow.actions.sirikit.donation.handle,is.workflow.actions.comment,is.workflow.actions.showresult,is.workflow.actions.handoff,is.workflow.actions.list,is.workflow.actions.choosefromlist,is.workflow.actions.comment,is.workflow.actions.repeat.each,is.workflow.actions.conditional,is.workflow.actions.sirikit.donation.handle,is.workflow.actions.conditional,is.workflow.actions.conditional,is.workflow.actions.runscene,is.workflow.actions.conditional,is.workflow.actions.conditional,is.workflow.actions.runworkflow,is.workflow.actions.conditional,is.workflow.actions.conditional,is.workflow.actions.sirikit.donation.handle,is.workflow.actions.conditional,is.workflow.actions.conditional,is.workflow.actions.sirikit.donation.handle,is.workflow.actions.conditional,is.workflow.actions.conditional,is.workflow.actions.conditional,is.workflow.actions.conditional,is.workflow.actions.conditional,is.workflow.actions.conditional,is.workflow.actions.repeat.each}",
"votes": 318,
"tagID": "2f46b7b4-a9fc-45f6-ba23-717cef56ce74",
"color": 4274264319,
"downloads": 3507,
"fileHash": "5372352e274f3c49c691115fc5a0079b"
},
{
"id": "4b027170-e10c-4d78-9211-9feb8ea29866",
"createdAt": "2019-03-07 21:02:01.647146",
"updatedAt": "2019-03-07 21:02:01.647147",
"userID": "7b094dd4-47b7-48f7-95f4-43f0f26f2cec",
"title": "Find Lyrics",
"summary": "Get the title of the currently playing song and search for its lyrics on Google.",
"filePath": "bdeaa803-eac5-45e9-9f1d-586d873ab673.FC4D0A7C-DFE2-49BD-83D5-4020BBA944CF.",
"fileID": "4_z775fd4fd45c276586c490e1f_f1185832573382f38_d20190307_m210201_c001_v0001005_t0030",
"actionCount": 6,
"actionIdentifiers": "{is.workflow.actions.comment,is.workflow.actions.comment,is.workflow.actions.getcurrentsong,is.workflow.actions.gettext,is.workflow.actions.url,is.workflow.actions.openurl}",
"votes": 2,
"tagID": "2f46b7b4-a9fc-45f6-ba23-717cef56ce74",
"color": 463140863,
"downloads": 371,
"fileHash": "87672c1828c8917830eb7d2750a9147a"
},
{
"id": "4b4c6428-6ff1-4cdd-85ac-880972381a41",
"createdAt": "2019-03-07 21:11:23.412147",
"updatedAt": "2019-03-07 21:11:23.412147",
"userID": "7b094dd4-47b7-48f7-95f4-43f0f26f2cec",
"title": "Pay for Lunch",
"summary": "Send money to a friend who paid for lunch. The shortcut will add the local business' name in the payment's note field.",
"filePath": "795c2750-67d3-46cc-a43b-aca5fb7aa904.5691B1D7-5753-4CF4-8B31-87DCDED05A67.",
"fileID": "4_z775fd4fd45c276586c490e1f_f1127ee850290f745_d20190307_m211123_c001_v0001117_t0017",
"actionCount": 5,
"actionIdentifiers": "{is.workflow.actions.comment,is.workflow.actions.ask,is.workflow.actions.searchlocalbusinesses,is.workflow.actions.choosefromlist,is.workflow.actions.venmo.pay}",
"votes": 23,
"tagID": "2f46b7b4-a9fc-45f6-ba23-717cef56ce74",
"color": 4271458815,
"downloads": 911,
"fileHash": "59b35c92ea86630bc24f5ad412f062da"
},
{
"id": "4c690670-a7ab-43b3-9b01-ffe84b99a9b3",
"createdAt": "2019-03-07 21:00:59.988371",
"updatedAt": "2019-03-07 21:00:59.988371",
"userID": "7b094dd4-47b7-48f7-95f4-43f0f26f2cec",
"title": "Check youtube-dl Formats",
"summary": "Use youtube-dl to check the available download formats for a YouTube link copied to the clipboard on iOS. The shortcut assumes youtube-dl has been installed on a local Mac under the /usr/local/bin folder.",
"filePath": "4fd35457-96ac-4474-ad48-86a135e0486b.AC785D37-D7DE-4BFF-8F9F-F6181ECE4517.",
"fileID": "4_z775fd4fd45c276586c490e1f_f1106e63231204008_d20190307_m210059_c001_v0001117_t0023",
"actionCount": 13,
"actionIdentifiers": "{is.workflow.actions.comment,is.workflow.actions.comment,is.workflow.actions.gettext,is.workflow.actions.gettext,is.workflow.actions.handoff,is.workflow.actions.getclipboard,is.workflow.actions.detect.link,is.workflow.actions.url.expand,is.workflow.actions.gettext,is.workflow.actions.runsshscript,is.workflow.actions.text.split,is.workflow.actions.text.combine,is.workflow.actions.alert}",
"votes": 8,
"tagID": "2f46b7b4-a9fc-45f6-ba23-717cef56ce74",
"color": 4292093695,
"downloads": 324,
"fileHash": "f60a9a27b01be29bd22087336bfca6af"
},
{
"id": "4d6d2450-9f58-46da-a40f-9ddc4770e281",
"createdAt": "2019-03-07 21:11:18.907867",
"updatedAt": "2019-03-07 21:11:18.907868",
"userID": "7b094dd4-47b7-48f7-95f4-43f0f26f2cec",
"title": "Start Workday",
"summary": "Start your workday by turning on a HomeKit switch, setting Hue lights to a focus mode, and waking up your Mac using the 'Remote for Mac' app.",
"filePath": "c7764e93-15d1-4ec0-8111-fd3673a9872a.9E49217E-C768-4FC9-8D9A-9B34A77EF919.",
"fileID": "4_z775fd4fd45c276586c490e1f_f114e6b557df27068_d20190307_m211116_c001_v0001113_t0053",
"actionCount": 4,
"actionIdentifiers": "{is.workflow.actions.comment,is.workflow.actions.sirikit.donation.handle,is.workflow.actions.sirikit.donation.handle,is.workflow.actions.sirikit.donation.handle}",
"votes": 18,
"tagID": "2f46b7b4-a9fc-45f6-ba23-717cef56ce74",
"color": 4271458815,
"downloads": 757,
"fileHash": "a493567579161029a3d4d83c58e7c7bc"
},
{
"id": "4d7830e7-84a3-475b-a1be-0730fd888a83",
"createdAt": "2019-03-07 21:08:50.674056",
"updatedAt": "2019-03-07 21:08:50.674056",
"userID": "7b094dd4-47b7-48f7-95f4-43f0f26f2cec",
"title": "Things Checklist Template",
"summary": "Create a task with a checklist in Things based on a fixed template that is stored in the Shortcuts app.",
"filePath": "03dcb4ba-b956-493f-9b84-aa1280545f0d.F1D46540-1BA0-4FE9-BEC1-04E684C86F6D.",
"fileID": "4_z775fd4fd45c276586c490e1f_f106ce25c464c4852_d20190307_m210849_c001_v0001038_t0050",
"actionCount": 11,
"actionIdentifiers": "{is.workflow.actions.comment,is.workflow.actions.comment,is.workflow.actions.list,is.workflow.actions.detect.text,is.workflow.actions.comment,is.workflow.actions.dictionary,is.workflow.actions.date,is.workflow.actions.format.date,is.workflow.actions.gettext,is.workflow.actions.url,is.workflow.actions.openurl}",
"votes": 0,
"tagID": "2f46b7b4-a9fc-45f6-ba23-717cef56ce74",