shortcuts-playground 1.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (68) hide show
  1. package/README.md +54 -0
  2. package/agents/shortcut-builder.md +172 -0
  3. package/agents/shortcut-remixer.md +239 -0
  4. package/commands/build-shortcut.md +32 -0
  5. package/commands/remix-shortcut.md +34 -0
  6. package/opencode.json +30 -0
  7. package/package.json +47 -0
  8. package/plugin/validator.ts +179 -0
  9. package/skills/shortcuts-playground/ACTIONS.md +713 -0
  10. package/skills/shortcuts-playground/APPINTENTS.md +2760 -0
  11. package/skills/shortcuts-playground/AUTOMATION_TRIGGERS.md +133 -0
  12. package/skills/shortcuts-playground/BEST_PRACTICES.md +357 -0
  13. package/skills/shortcuts-playground/CHANGELOG.md +585 -0
  14. package/skills/shortcuts-playground/CONTROL_FLOW.md +777 -0
  15. package/skills/shortcuts-playground/DATE_TIME.md +75 -0
  16. package/skills/shortcuts-playground/EXAMPLES.md +738 -0
  17. package/skills/shortcuts-playground/FILTERS.md +697 -0
  18. package/skills/shortcuts-playground/HEALTHKIT.md +317 -0
  19. package/skills/shortcuts-playground/ICONS_AND_COLORS.md +89 -0
  20. package/skills/shortcuts-playground/JAVASCRIPT_WEBPAGE.md +51 -0
  21. package/skills/shortcuts-playground/PARAMETER_TYPES.md +1117 -0
  22. package/skills/shortcuts-playground/PLIST_FORMAT.md +296 -0
  23. package/skills/shortcuts-playground/README.md +77 -0
  24. package/skills/shortcuts-playground/SKILL.md +459 -0
  25. package/skills/shortcuts-playground/THIRD_PARTY_ACTIONS.md +77 -0
  26. package/skills/shortcuts-playground/TOOLKIT_SNAPSHOT.md +62 -0
  27. package/skills/shortcuts-playground/URL_SCHEMES.md +59 -0
  28. package/skills/shortcuts-playground/VARIABLES.md +569 -0
  29. package/skills/shortcuts-playground/assets/shortcuts-small.svg +14 -0
  30. package/skills/shortcuts-playground/assets/shortcuts.png +0 -0
  31. package/skills/shortcuts-playground/data/healthkit-ios26.2-reference.json +2603 -0
  32. package/skills/shortcuts-playground/data/macos27-shortpy-grounding.json +4085 -0
  33. package/skills/shortcuts-playground/data/macos27-workflow-trigger-samples.json +1 -0
  34. package/skills/shortcuts-playground/data/shortcuts-glyph-synonyms.json +5102 -0
  35. package/skills/shortcuts-playground/data/shortcuts-icon-colors.json +107 -0
  36. package/skills/shortcuts-playground/data/shortcuts-official-glyph-mapping.json +509 -0
  37. package/skills/shortcuts-playground/data/toolkit-v63-tool-ids.json +1806 -0
  38. package/skills/shortcuts-playground/data/toolkit-v78-first-party-enum-cases.json +1 -0
  39. package/skills/shortcuts-playground/data/toolkit-v78-first-party-parameter-keys.json +1 -0
  40. package/skills/shortcuts-playground/data/toolkit-v78-ios27-tool-ids.json +1222 -0
  41. package/skills/shortcuts-playground/data/toolkit-v78-tool-ids.json +2745 -0
  42. package/skills/shortcuts-playground/data/toolkit-v78-trigger-parameter-keys.json +1051 -0
  43. package/skills/shortcuts-playground/golden-shortcuts/index.jsonl +19 -0
  44. package/skills/shortcuts-playground/golden-shortcuts/xml/1be4dde95b794253bf82438e201b33e7.xml +174 -0
  45. package/skills/shortcuts-playground/golden-shortcuts/xml/2e0fb675e45948aaacee7e534f910492.xml +1016 -0
  46. package/skills/shortcuts-playground/golden-shortcuts/xml/332c12a0060043b388b22b806be7ab58.xml +1924 -0
  47. package/skills/shortcuts-playground/golden-shortcuts/xml/3dd4ee24e43f464f92adaa70a0311eaa.xml +1177 -0
  48. package/skills/shortcuts-playground/golden-shortcuts/xml/4d102301c6e646faa7a8a221f4f4ec98.xml +321 -0
  49. package/skills/shortcuts-playground/golden-shortcuts/xml/51cc4e26d1044893a0c3f2f3630cf2d2.xml +1933 -0
  50. package/skills/shortcuts-playground/golden-shortcuts/xml/623e7f1ca5f948e2bd53811fec63e544.xml +136 -0
  51. package/skills/shortcuts-playground/golden-shortcuts/xml/6a18b76843ac45c384ac3400f3740997.xml +1791 -0
  52. package/skills/shortcuts-playground/golden-shortcuts/xml/71f0cacb0f604b399b76c5dcb7286e7c.xml +2228 -0
  53. package/skills/shortcuts-playground/golden-shortcuts/xml/807525ed9f974829bc8494defac923a8.xml +259 -0
  54. package/skills/shortcuts-playground/golden-shortcuts/xml/8ab0d39826ab4249be58672763caa3ba.xml +420 -0
  55. package/skills/shortcuts-playground/golden-shortcuts/xml/91c45fd3fd3b427897d9ba485efb1227.xml +800 -0
  56. package/skills/shortcuts-playground/golden-shortcuts/xml/97be626bb25c41709d175646a7f6d8f2.xml +424 -0
  57. package/skills/shortcuts-playground/golden-shortcuts/xml/ae59e10d409348f9bd33894f03f9beb4.xml +568 -0
  58. package/skills/shortcuts-playground/golden-shortcuts/xml/afa83b6be811483b9c32189c41eb9312.xml +391 -0
  59. package/skills/shortcuts-playground/golden-shortcuts/xml/cfdb083b857e4ac189629fa386d27cdc.xml +193 -0
  60. package/skills/shortcuts-playground/golden-shortcuts/xml/e01cebe192d64b2fbca80204d03d92ab.xml +111 -0
  61. package/skills/shortcuts-playground/golden-shortcuts/xml/ef669bcf8bad489d9ef4b88bfaf5772f.xml +780 -0
  62. package/skills/shortcuts-playground/golden-shortcuts/xml/f44f5caf5e3e48d4817e73af450c4404.xml +570 -0
  63. package/skills/shortcuts-playground/scripts/generate_healthkit_reference.py +394 -0
  64. package/skills/shortcuts-playground/scripts/lookup_action_grounding.py +1164 -0
  65. package/skills/shortcuts-playground/scripts/select_shortcut_icon_color.py +597 -0
  66. package/skills/shortcuts-playground/scripts/test_random_mixed_shortcuts.py +1067 -0
  67. package/skills/shortcuts-playground/scripts/test_wiring_regressions.py +2247 -0
  68. package/skills/shortcuts-playground/scripts/validate_shortcut.py +4526 -0
@@ -0,0 +1,2228 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
+ <plist version="1.0">
4
+ <dict>
5
+ <key>WFWorkflowActions</key>
6
+ <array>
7
+ <dict>
8
+ <key>WFWorkflowActionIdentifier</key>
9
+ <string>is.workflow.actions.comment</string>
10
+ <key>WFWorkflowActionParameters</key>
11
+ <dict>
12
+ <key>WFCommentActionText</key>
13
+ <string>A comprehensive menu to save webpages from Safari as notes in Evernote. The shortcut supports saving links as rich text, .webarchive files, PDFs, plain text, or attachments. The shortcut can either create new notes or append to an existing note. See comments below for instructions on how to store a list of your favorite Evernote notebooks, tags, and notes.</string>
14
+ </dict>
15
+ </dict>
16
+ <dict>
17
+ <key>WFWorkflowActionIdentifier</key>
18
+ <string>is.workflow.actions.getvariable</string>
19
+ <key>WFWorkflowActionParameters</key>
20
+ <dict>
21
+ <key>WFVariable</key>
22
+ <dict>
23
+ <key>Value</key>
24
+ <dict>
25
+ <key>Type</key>
26
+ <string>ExtensionInput</string>
27
+ </dict>
28
+ <key>WFSerializationType</key>
29
+ <string>WFTextTokenAttachment</string>
30
+ </dict>
31
+ </dict>
32
+ </dict>
33
+ <dict>
34
+ <key>WFWorkflowActionIdentifier</key>
35
+ <string>is.workflow.actions.comment</string>
36
+ <key>WFWorkflowActionParameters</key>
37
+ <dict>
38
+ <key>WFCommentActionText</key>
39
+ <string>Check the type of input, make sure the shortcut is being run inside Safari</string>
40
+ </dict>
41
+ </dict>
42
+ <dict>
43
+ <key>WFWorkflowActionIdentifier</key>
44
+ <string>is.workflow.actions.getitemtype</string>
45
+ <key>WFWorkflowActionParameters</key>
46
+ <dict>
47
+ <key>UUID</key>
48
+ <string>9DC03B9D-D560-4B8C-8096-3CE7ECEA0D99</string>
49
+ </dict>
50
+ </dict>
51
+ <dict>
52
+ <key>WFWorkflowActionIdentifier</key>
53
+ <string>is.workflow.actions.conditional</string>
54
+ <key>WFWorkflowActionParameters</key>
55
+ <dict>
56
+ <key>GroupingIdentifier</key>
57
+ <string>06581EC3-5BBC-41ED-88B4-70B7C791DB4F</string>
58
+ <key>WFConditionalActionString</key>
59
+ <string>Safari</string>
60
+ <key>WFControlFlowMode</key>
61
+ <integer>0</integer>
62
+ </dict>
63
+ </dict>
64
+ <dict>
65
+ <key>WFWorkflowActionIdentifier</key>
66
+ <string>is.workflow.actions.nothing</string>
67
+ <key>WFWorkflowActionParameters</key>
68
+ <dict/>
69
+ </dict>
70
+ <dict>
71
+ <key>WFWorkflowActionIdentifier</key>
72
+ <string>is.workflow.actions.conditional</string>
73
+ <key>WFWorkflowActionParameters</key>
74
+ <dict>
75
+ <key>GroupingIdentifier</key>
76
+ <string>06581EC3-5BBC-41ED-88B4-70B7C791DB4F</string>
77
+ <key>WFControlFlowMode</key>
78
+ <integer>1</integer>
79
+ </dict>
80
+ </dict>
81
+ <dict>
82
+ <key>WFWorkflowActionIdentifier</key>
83
+ <string>is.workflow.actions.alert</string>
84
+ <key>WFWorkflowActionParameters</key>
85
+ <dict>
86
+ <key>WFAlertActionMessage</key>
87
+ <string>This shortcut can only be run as an extension in Safari or Safari View Controller. The current input method is not supported.</string>
88
+ <key>WFAlertActionTitle</key>
89
+ <string>❌ Error ❌</string>
90
+ </dict>
91
+ </dict>
92
+ <dict>
93
+ <key>WFWorkflowActionIdentifier</key>
94
+ <string>is.workflow.actions.conditional</string>
95
+ <key>WFWorkflowActionParameters</key>
96
+ <dict>
97
+ <key>GroupingIdentifier</key>
98
+ <string>06581EC3-5BBC-41ED-88B4-70B7C791DB4F</string>
99
+ <key>UUID</key>
100
+ <string>5F4289C4-1E0D-46F4-B86C-87557B8DB9CA</string>
101
+ <key>WFControlFlowMode</key>
102
+ <integer>2</integer>
103
+ </dict>
104
+ </dict>
105
+ <dict>
106
+ <key>WFWorkflowActionIdentifier</key>
107
+ <string>is.workflow.actions.comment</string>
108
+ <key>WFWorkflowActionParameters</key>
109
+ <dict>
110
+ <key>WFCommentActionText</key>
111
+ <string>Assemble dictionary for different text files that are required for notebooks, tags, and favorite notes.
112
+
113
+ These files have to be stored under iCloud Drive/Shortcuts/Evernote.</string>
114
+ </dict>
115
+ </dict>
116
+ <dict>
117
+ <key>WFWorkflowActionIdentifier</key>
118
+ <string>is.workflow.actions.dictionary</string>
119
+ <key>WFWorkflowActionParameters</key>
120
+ <dict>
121
+ <key>UUID</key>
122
+ <string>69158D62-B467-4D35-938F-3D330E2983C0</string>
123
+ <key>WFItems</key>
124
+ <dict>
125
+ <key>Value</key>
126
+ <dict>
127
+ <key>WFDictionaryFieldValueItems</key>
128
+ <array>
129
+ <dict>
130
+ <key>WFItemType</key>
131
+ <integer>0</integer>
132
+ <key>WFKey</key>
133
+ <dict>
134
+ <key>Value</key>
135
+ <dict>
136
+ <key>attachmentsByRange</key>
137
+ <dict/>
138
+ <key>string</key>
139
+ <string>notebooks</string>
140
+ </dict>
141
+ <key>WFSerializationType</key>
142
+ <string>WFTextTokenString</string>
143
+ </dict>
144
+ <key>WFValue</key>
145
+ <dict>
146
+ <key>Value</key>
147
+ <dict>
148
+ <key>attachmentsByRange</key>
149
+ <dict/>
150
+ <key>string</key>
151
+ <string>EvernoteNotebooks.md</string>
152
+ </dict>
153
+ <key>WFSerializationType</key>
154
+ <string>WFTextTokenString</string>
155
+ </dict>
156
+ </dict>
157
+ <dict>
158
+ <key>WFItemType</key>
159
+ <integer>0</integer>
160
+ <key>WFKey</key>
161
+ <dict>
162
+ <key>Value</key>
163
+ <dict>
164
+ <key>attachmentsByRange</key>
165
+ <dict/>
166
+ <key>string</key>
167
+ <string>tags</string>
168
+ </dict>
169
+ <key>WFSerializationType</key>
170
+ <string>WFTextTokenString</string>
171
+ </dict>
172
+ <key>WFValue</key>
173
+ <dict>
174
+ <key>Value</key>
175
+ <dict>
176
+ <key>attachmentsByRange</key>
177
+ <dict/>
178
+ <key>string</key>
179
+ <string>EvernoteTags.md</string>
180
+ </dict>
181
+ <key>WFSerializationType</key>
182
+ <string>WFTextTokenString</string>
183
+ </dict>
184
+ </dict>
185
+ <dict>
186
+ <key>WFItemType</key>
187
+ <integer>0</integer>
188
+ <key>WFKey</key>
189
+ <dict>
190
+ <key>Value</key>
191
+ <dict>
192
+ <key>attachmentsByRange</key>
193
+ <dict/>
194
+ <key>string</key>
195
+ <string>favorite notes</string>
196
+ </dict>
197
+ <key>WFSerializationType</key>
198
+ <string>WFTextTokenString</string>
199
+ </dict>
200
+ <key>WFValue</key>
201
+ <dict>
202
+ <key>Value</key>
203
+ <dict>
204
+ <key>attachmentsByRange</key>
205
+ <dict/>
206
+ <key>string</key>
207
+ <string>EvernoteFavorites.md</string>
208
+ </dict>
209
+ <key>WFSerializationType</key>
210
+ <string>WFTextTokenString</string>
211
+ </dict>
212
+ </dict>
213
+ </array>
214
+ </dict>
215
+ <key>WFSerializationType</key>
216
+ <string>WFDictionaryFieldValue</string>
217
+ </dict>
218
+ </dict>
219
+ </dict>
220
+ <dict>
221
+ <key>WFWorkflowActionIdentifier</key>
222
+ <string>is.workflow.actions.getvalueforkey</string>
223
+ <key>WFWorkflowActionParameters</key>
224
+ <dict>
225
+ <key>UUID</key>
226
+ <string>E4DBDB8C-F253-4D2C-ADE7-10EE2ABBD989</string>
227
+ <key>WFGetDictionaryValueType</key>
228
+ <string>All Keys</string>
229
+ </dict>
230
+ </dict>
231
+ <dict>
232
+ <key>WFWorkflowActionIdentifier</key>
233
+ <string>is.workflow.actions.repeat.each</string>
234
+ <key>WFWorkflowActionParameters</key>
235
+ <dict>
236
+ <key>GroupingIdentifier</key>
237
+ <string>A56024A6-009A-44FA-99EA-AF0B317B78FC</string>
238
+ <key>WFControlFlowMode</key>
239
+ <integer>0</integer>
240
+ </dict>
241
+ </dict>
242
+ <dict>
243
+ <key>WFWorkflowActionIdentifier</key>
244
+ <string>is.workflow.actions.getvariable</string>
245
+ <key>WFWorkflowActionParameters</key>
246
+ <dict>
247
+ <key>WFVariable</key>
248
+ <dict>
249
+ <key>Value</key>
250
+ <dict>
251
+ <key>OutputName</key>
252
+ <string>Dictionary</string>
253
+ <key>OutputUUID</key>
254
+ <string>69158D62-B467-4D35-938F-3D330E2983C0</string>
255
+ <key>Type</key>
256
+ <string>ActionOutput</string>
257
+ </dict>
258
+ <key>WFSerializationType</key>
259
+ <string>WFTextTokenAttachment</string>
260
+ </dict>
261
+ </dict>
262
+ </dict>
263
+ <dict>
264
+ <key>WFWorkflowActionIdentifier</key>
265
+ <string>is.workflow.actions.getvalueforkey</string>
266
+ <key>WFWorkflowActionParameters</key>
267
+ <dict>
268
+ <key>CustomOutputName</key>
269
+ <string>File</string>
270
+ <key>UUID</key>
271
+ <string>53A9756A-FEF4-48C8-9DD5-4570C2CD4E1E</string>
272
+ <key>WFDictionaryKey</key>
273
+ <dict>
274
+ <key>Value</key>
275
+ <dict>
276
+ <key>attachmentsByRange</key>
277
+ <dict>
278
+ <key>{0, 1}</key>
279
+ <dict>
280
+ <key>Type</key>
281
+ <string>Variable</string>
282
+ <key>VariableName</key>
283
+ <string>Repeat Item</string>
284
+ </dict>
285
+ </dict>
286
+ <key>string</key>
287
+ <string></string>
288
+ </dict>
289
+ <key>WFSerializationType</key>
290
+ <string>WFTextTokenString</string>
291
+ </dict>
292
+ </dict>
293
+ </dict>
294
+ <dict>
295
+ <key>WFWorkflowActionIdentifier</key>
296
+ <string>is.workflow.actions.documentpicker.open</string>
297
+ <key>WFWorkflowActionParameters</key>
298
+ <dict>
299
+ <key>UUID</key>
300
+ <string>8697553B-4417-432C-849B-47F39717D30D</string>
301
+ <key>WFFileErrorIfNotFound</key>
302
+ <false/>
303
+ <key>WFGetFilePath</key>
304
+ <dict>
305
+ <key>Value</key>
306
+ <dict>
307
+ <key>attachmentsByRange</key>
308
+ <dict>
309
+ <key>{9, 1}</key>
310
+ <dict>
311
+ <key>OutputName</key>
312
+ <string>File</string>
313
+ <key>OutputUUID</key>
314
+ <string>53A9756A-FEF4-48C8-9DD5-4570C2CD4E1E</string>
315
+ <key>Type</key>
316
+ <string>ActionOutput</string>
317
+ </dict>
318
+ </dict>
319
+ <key>string</key>
320
+ <string>Evernote/</string>
321
+ </dict>
322
+ <key>WFSerializationType</key>
323
+ <string>WFTextTokenString</string>
324
+ </dict>
325
+ <key>WFShowFilePicker</key>
326
+ <false/>
327
+ </dict>
328
+ </dict>
329
+ <dict>
330
+ <key>WFWorkflowActionIdentifier</key>
331
+ <string>is.workflow.actions.count</string>
332
+ <key>WFWorkflowActionParameters</key>
333
+ <dict>
334
+ <key>UUID</key>
335
+ <string>4A3AE453-3711-4D78-BBAC-C3FFFC3E1CFE</string>
336
+ <key>WFCountType</key>
337
+ <string>Items</string>
338
+ </dict>
339
+ </dict>
340
+ <dict>
341
+ <key>WFWorkflowActionIdentifier</key>
342
+ <string>is.workflow.actions.conditional</string>
343
+ <key>WFWorkflowActionParameters</key>
344
+ <dict>
345
+ <key>GroupingIdentifier</key>
346
+ <string>A1C133E0-CA64-4C27-A663-A27C05C0C129</string>
347
+ <key>WFCondition</key>
348
+ <string>Equals</string>
349
+ <key>WFConditionalActionString</key>
350
+ <string>1</string>
351
+ <key>WFControlFlowMode</key>
352
+ <integer>0</integer>
353
+ </dict>
354
+ </dict>
355
+ <dict>
356
+ <key>WFWorkflowActionIdentifier</key>
357
+ <string>is.workflow.actions.getvariable</string>
358
+ <key>WFWorkflowActionParameters</key>
359
+ <dict>
360
+ <key>WFVariable</key>
361
+ <dict>
362
+ <key>Value</key>
363
+ <dict>
364
+ <key>OutputName</key>
365
+ <string>File</string>
366
+ <key>OutputUUID</key>
367
+ <string>8697553B-4417-432C-849B-47F39717D30D</string>
368
+ <key>Type</key>
369
+ <string>ActionOutput</string>
370
+ </dict>
371
+ <key>WFSerializationType</key>
372
+ <string>WFTextTokenAttachment</string>
373
+ </dict>
374
+ </dict>
375
+ </dict>
376
+ <dict>
377
+ <key>WFWorkflowActionIdentifier</key>
378
+ <string>is.workflow.actions.detect.text</string>
379
+ <key>WFWorkflowActionParameters</key>
380
+ <dict>
381
+ <key>UUID</key>
382
+ <string>A7EA1E30-5FB8-4953-B4ED-D766B70DC7DE</string>
383
+ </dict>
384
+ </dict>
385
+ <dict>
386
+ <key>WFWorkflowActionIdentifier</key>
387
+ <string>is.workflow.actions.text.split</string>
388
+ <key>WFWorkflowActionParameters</key>
389
+ <dict/>
390
+ </dict>
391
+ <dict>
392
+ <key>WFWorkflowActionIdentifier</key>
393
+ <string>is.workflow.actions.text.combine</string>
394
+ <key>WFWorkflowActionParameters</key>
395
+ <dict>
396
+ <key>UUID</key>
397
+ <string>AB7E8E00-D3B4-49CE-9F2B-E452340BDBCE</string>
398
+ <key>WFTextCustomSeparator</key>
399
+ <string>%%SEPARATOR%%</string>
400
+ <key>WFTextSeparator</key>
401
+ <string>Custom</string>
402
+ </dict>
403
+ </dict>
404
+ <dict>
405
+ <key>WFWorkflowActionIdentifier</key>
406
+ <string>is.workflow.actions.appendvariable</string>
407
+ <key>WFWorkflowActionParameters</key>
408
+ <dict>
409
+ <key>WFVariableName</key>
410
+ <string>Evernote List</string>
411
+ </dict>
412
+ </dict>
413
+ <dict>
414
+ <key>WFWorkflowActionIdentifier</key>
415
+ <string>is.workflow.actions.conditional</string>
416
+ <key>WFWorkflowActionParameters</key>
417
+ <dict>
418
+ <key>GroupingIdentifier</key>
419
+ <string>A1C133E0-CA64-4C27-A663-A27C05C0C129</string>
420
+ <key>WFControlFlowMode</key>
421
+ <integer>1</integer>
422
+ </dict>
423
+ </dict>
424
+ <dict>
425
+ <key>WFWorkflowActionIdentifier</key>
426
+ <string>is.workflow.actions.alert</string>
427
+ <key>WFWorkflowActionParameters</key>
428
+ <dict>
429
+ <key>WFAlertActionMessage</key>
430
+ <dict>
431
+ <key>Value</key>
432
+ <dict>
433
+ <key>attachmentsByRange</key>
434
+ <dict>
435
+ <key>{75, 1}</key>
436
+ <dict>
437
+ <key>Type</key>
438
+ <string>Variable</string>
439
+ <key>VariableName</key>
440
+ <string>Repeat Item</string>
441
+ </dict>
442
+ </dict>
443
+ <key>string</key>
444
+ <string>The shortcut needs a text file containing a list of your favorite Evernote . The file is missing.
445
+
446
+ Continue to create the file now.</string>
447
+ </dict>
448
+ <key>WFSerializationType</key>
449
+ <string>WFTextTokenString</string>
450
+ </dict>
451
+ <key>WFAlertActionTitle</key>
452
+ <string>❌ File Missing ❌</string>
453
+ </dict>
454
+ </dict>
455
+ <dict>
456
+ <key>WFWorkflowActionIdentifier</key>
457
+ <string>is.workflow.actions.alert</string>
458
+ <key>WFWorkflowActionParameters</key>
459
+ <dict>
460
+ <key>WFAlertActionMessage</key>
461
+ <dict>
462
+ <key>Value</key>
463
+ <dict>
464
+ <key>attachmentsByRange</key>
465
+ <dict>
466
+ <key>{35, 1}</key>
467
+ <dict>
468
+ <key>Type</key>
469
+ <string>Variable</string>
470
+ <key>VariableName</key>
471
+ <string>Repeat Item</string>
472
+ </dict>
473
+ </dict>
474
+ <key>string</key>
475
+ <string>In the following action enter your  on multiple lines, as such:
476
+
477
+ Item 1
478
+ Item 2
479
+ Item 3</string>
480
+ </dict>
481
+ <key>WFSerializationType</key>
482
+ <string>WFTextTokenString</string>
483
+ </dict>
484
+ <key>WFAlertActionTitle</key>
485
+ <string>Creating Evernote File...</string>
486
+ </dict>
487
+ </dict>
488
+ <dict>
489
+ <key>WFWorkflowActionIdentifier</key>
490
+ <string>is.workflow.actions.gettext</string>
491
+ <key>WFWorkflowActionParameters</key>
492
+ <dict>
493
+ <key>UUID</key>
494
+ <string>24618A19-E03E-46BB-BE0E-BF6FCF4C1569</string>
495
+ <key>WFTextActionText</key>
496
+ <dict>
497
+ <key>Value</key>
498
+ <dict>
499
+ <key>attachmentsByRange</key>
500
+ <dict>
501
+ <key>{0, 1}</key>
502
+ <dict>
503
+ <key>Type</key>
504
+ <string>Ask</string>
505
+ </dict>
506
+ </dict>
507
+ <key>string</key>
508
+ <string></string>
509
+ </dict>
510
+ <key>WFSerializationType</key>
511
+ <string>WFTextTokenString</string>
512
+ </dict>
513
+ </dict>
514
+ </dict>
515
+ <dict>
516
+ <key>WFWorkflowActionIdentifier</key>
517
+ <string>is.workflow.actions.setitemname</string>
518
+ <key>WFWorkflowActionParameters</key>
519
+ <dict>
520
+ <key>UUID</key>
521
+ <string>0AFC189D-721A-4F70-924B-EFE7E04D6BC5</string>
522
+ <key>WFName</key>
523
+ <dict>
524
+ <key>Value</key>
525
+ <dict>
526
+ <key>attachmentsByRange</key>
527
+ <dict>
528
+ <key>{0, 1}</key>
529
+ <dict>
530
+ <key>OutputName</key>
531
+ <string>File</string>
532
+ <key>OutputUUID</key>
533
+ <string>53A9756A-FEF4-48C8-9DD5-4570C2CD4E1E</string>
534
+ <key>Type</key>
535
+ <string>ActionOutput</string>
536
+ </dict>
537
+ </dict>
538
+ <key>string</key>
539
+ <string></string>
540
+ </dict>
541
+ <key>WFSerializationType</key>
542
+ <string>WFTextTokenString</string>
543
+ </dict>
544
+ </dict>
545
+ </dict>
546
+ <dict>
547
+ <key>WFWorkflowActionIdentifier</key>
548
+ <string>is.workflow.actions.documentpicker.save</string>
549
+ <key>WFWorkflowActionParameters</key>
550
+ <dict>
551
+ <key>UUID</key>
552
+ <string>B9E2798E-BC02-4139-9C00-AA20098D0653</string>
553
+ <key>WFAskWhereToSave</key>
554
+ <false/>
555
+ <key>WFFileDestinationPath</key>
556
+ <string>Evernote/</string>
557
+ </dict>
558
+ </dict>
559
+ <dict>
560
+ <key>WFWorkflowActionIdentifier</key>
561
+ <string>is.workflow.actions.documentpicker.open</string>
562
+ <key>WFWorkflowActionParameters</key>
563
+ <dict>
564
+ <key>UUID</key>
565
+ <string>D6C977FF-EE41-4A25-9478-E51B86CC8C33</string>
566
+ <key>WFGetFilePath</key>
567
+ <dict>
568
+ <key>Value</key>
569
+ <dict>
570
+ <key>attachmentsByRange</key>
571
+ <dict>
572
+ <key>{9, 1}</key>
573
+ <dict>
574
+ <key>OutputName</key>
575
+ <string>File</string>
576
+ <key>OutputUUID</key>
577
+ <string>53A9756A-FEF4-48C8-9DD5-4570C2CD4E1E</string>
578
+ <key>Type</key>
579
+ <string>ActionOutput</string>
580
+ </dict>
581
+ </dict>
582
+ <key>string</key>
583
+ <string>Evernote/</string>
584
+ </dict>
585
+ <key>WFSerializationType</key>
586
+ <string>WFTextTokenString</string>
587
+ </dict>
588
+ <key>WFShowFilePicker</key>
589
+ <false/>
590
+ </dict>
591
+ </dict>
592
+ <dict>
593
+ <key>WFWorkflowActionIdentifier</key>
594
+ <string>is.workflow.actions.detect.text</string>
595
+ <key>WFWorkflowActionParameters</key>
596
+ <dict>
597
+ <key>UUID</key>
598
+ <string>55704F8F-5AE0-4BD1-9AF4-A0946AEB0A1E</string>
599
+ </dict>
600
+ </dict>
601
+ <dict>
602
+ <key>WFWorkflowActionIdentifier</key>
603
+ <string>is.workflow.actions.text.split</string>
604
+ <key>WFWorkflowActionParameters</key>
605
+ <dict>
606
+ <key>UUID</key>
607
+ <string>F544DDCE-4391-4295-9D8B-570638EDE50D</string>
608
+ </dict>
609
+ </dict>
610
+ <dict>
611
+ <key>WFWorkflowActionIdentifier</key>
612
+ <string>is.workflow.actions.text.combine</string>
613
+ <key>WFWorkflowActionParameters</key>
614
+ <dict>
615
+ <key>UUID</key>
616
+ <string>1164CCC9-1FEA-410F-B021-2D72B09AF073</string>
617
+ <key>WFTextCustomSeparator</key>
618
+ <string>%%SEPARATOR%%</string>
619
+ <key>WFTextSeparator</key>
620
+ <string>Custom</string>
621
+ </dict>
622
+ </dict>
623
+ <dict>
624
+ <key>WFWorkflowActionIdentifier</key>
625
+ <string>is.workflow.actions.appendvariable</string>
626
+ <key>WFWorkflowActionParameters</key>
627
+ <dict>
628
+ <key>WFVariableName</key>
629
+ <string>Evernote List</string>
630
+ </dict>
631
+ </dict>
632
+ <dict>
633
+ <key>WFWorkflowActionIdentifier</key>
634
+ <string>is.workflow.actions.conditional</string>
635
+ <key>WFWorkflowActionParameters</key>
636
+ <dict>
637
+ <key>GroupingIdentifier</key>
638
+ <string>A1C133E0-CA64-4C27-A663-A27C05C0C129</string>
639
+ <key>UUID</key>
640
+ <string>51433E4E-800B-4535-A6A2-81D02F4DE617</string>
641
+ <key>WFControlFlowMode</key>
642
+ <integer>2</integer>
643
+ </dict>
644
+ </dict>
645
+ <dict>
646
+ <key>WFWorkflowActionIdentifier</key>
647
+ <string>is.workflow.actions.repeat.each</string>
648
+ <key>WFWorkflowActionParameters</key>
649
+ <dict>
650
+ <key>GroupingIdentifier</key>
651
+ <string>A56024A6-009A-44FA-99EA-AF0B317B78FC</string>
652
+ <key>UUID</key>
653
+ <string>FEB50921-4E55-4B13-A512-E7CE93E02A2D</string>
654
+ <key>WFControlFlowMode</key>
655
+ <integer>2</integer>
656
+ </dict>
657
+ </dict>
658
+ <dict>
659
+ <key>WFWorkflowActionIdentifier</key>
660
+ <string>is.workflow.actions.comment</string>
661
+ <key>WFWorkflowActionParameters</key>
662
+ <dict>
663
+ <key>WFCommentActionText</key>
664
+ <string>Set initial title variable, to be overridden for file downloads later</string>
665
+ </dict>
666
+ </dict>
667
+ <dict>
668
+ <key>WFWorkflowActionIdentifier</key>
669
+ <string>is.workflow.actions.getvariable</string>
670
+ <key>WFWorkflowActionParameters</key>
671
+ <dict>
672
+ <key>WFVariable</key>
673
+ <dict>
674
+ <key>Value</key>
675
+ <dict>
676
+ <key>Aggrandizements</key>
677
+ <array>
678
+ <dict>
679
+ <key>PropertyName</key>
680
+ <string>Name</string>
681
+ <key>PropertyUserInfo</key>
682
+ <string>WFItemName</string>
683
+ <key>Type</key>
684
+ <string>WFPropertyVariableAggrandizement</string>
685
+ </dict>
686
+ </array>
687
+ <key>Type</key>
688
+ <string>ExtensionInput</string>
689
+ </dict>
690
+ <key>WFSerializationType</key>
691
+ <string>WFTextTokenAttachment</string>
692
+ </dict>
693
+ </dict>
694
+ </dict>
695
+ <dict>
696
+ <key>WFWorkflowActionIdentifier</key>
697
+ <string>is.workflow.actions.setvariable</string>
698
+ <key>WFWorkflowActionParameters</key>
699
+ <dict>
700
+ <key>WFVariableName</key>
701
+ <string>Note Title</string>
702
+ </dict>
703
+ </dict>
704
+ <dict>
705
+ <key>WFWorkflowActionIdentifier</key>
706
+ <string>is.workflow.actions.comment</string>
707
+ <key>WFWorkflowActionParameters</key>
708
+ <dict>
709
+ <key>WFCommentActionText</key>
710
+ <string>Choose type of note to create in Evernote </string>
711
+ </dict>
712
+ </dict>
713
+ <dict>
714
+ <key>WFWorkflowActionIdentifier</key>
715
+ <string>is.workflow.actions.choosefrommenu</string>
716
+ <key>WFWorkflowActionParameters</key>
717
+ <dict>
718
+ <key>GroupingIdentifier</key>
719
+ <string>10B98613-14ED-4B54-8212-CF932E852C00</string>
720
+ <key>WFControlFlowMode</key>
721
+ <integer>0</integer>
722
+ <key>WFMenuItems</key>
723
+ <array>
724
+ <string>🗂 Webarchive</string>
725
+ <string>🔗 Rich Text</string>
726
+ <string>📄 Plain Text (Strip Formatting)</string>
727
+ <string>📚 PDF</string>
728
+ <string>🌍 Download (Attachment)</string>
729
+ </array>
730
+ <key>WFMenuPrompt</key>
731
+ <string>Save Safari Webpage As...</string>
732
+ </dict>
733
+ </dict>
734
+ <dict>
735
+ <key>WFWorkflowActionIdentifier</key>
736
+ <string>is.workflow.actions.choosefrommenu</string>
737
+ <key>WFWorkflowActionParameters</key>
738
+ <dict>
739
+ <key>GroupingIdentifier</key>
740
+ <string>10B98613-14ED-4B54-8212-CF932E852C00</string>
741
+ <key>WFControlFlowMode</key>
742
+ <integer>1</integer>
743
+ <key>WFMenuItemTitle</key>
744
+ <string>🗂 Webarchive</string>
745
+ </dict>
746
+ </dict>
747
+ <dict>
748
+ <key>WFWorkflowActionIdentifier</key>
749
+ <string>is.workflow.actions.getvariable</string>
750
+ <key>WFWorkflowActionParameters</key>
751
+ <dict>
752
+ <key>WFVariable</key>
753
+ <dict>
754
+ <key>Value</key>
755
+ <dict>
756
+ <key>Type</key>
757
+ <string>ExtensionInput</string>
758
+ </dict>
759
+ <key>WFSerializationType</key>
760
+ <string>WFTextTokenAttachment</string>
761
+ </dict>
762
+ </dict>
763
+ </dict>
764
+ <dict>
765
+ <key>WFWorkflowActionIdentifier</key>
766
+ <string>is.workflow.actions.getwebpagecontents</string>
767
+ <key>WFWorkflowActionParameters</key>
768
+ <dict>
769
+ <key>UUID</key>
770
+ <string>1CD96724-CDD7-4DAC-BDCF-28E44DE3D4EA</string>
771
+ </dict>
772
+ </dict>
773
+ <dict>
774
+ <key>WFWorkflowActionIdentifier</key>
775
+ <string>is.workflow.actions.gettypeaction</string>
776
+ <key>WFWorkflowActionParameters</key>
777
+ <dict>
778
+ <key>UUID</key>
779
+ <string>B9D914D3-AF11-4A12-AA75-FE249BF80D49</string>
780
+ <key>WFFileType</key>
781
+ <string>com.apple.webarchive</string>
782
+ </dict>
783
+ </dict>
784
+ <dict>
785
+ <key>WFWorkflowActionIdentifier</key>
786
+ <string>is.workflow.actions.setvariable</string>
787
+ <key>WFWorkflowActionParameters</key>
788
+ <dict>
789
+ <key>WFVariableName</key>
790
+ <string>Webpage</string>
791
+ </dict>
792
+ </dict>
793
+ <dict>
794
+ <key>WFWorkflowActionIdentifier</key>
795
+ <string>is.workflow.actions.comment</string>
796
+ <key>WFWorkflowActionParameters</key>
797
+ <dict>
798
+ <key>WFCommentActionText</key>
799
+ <string>To save a webarchive file, the app must be manually launched to create a new note. Because we have to do this, we'll force the shortcut to exit as well</string>
800
+ </dict>
801
+ </dict>
802
+ <dict>
803
+ <key>WFWorkflowActionIdentifier</key>
804
+ <string>is.workflow.actions.openin</string>
805
+ <key>WFWorkflowActionParameters</key>
806
+ <dict>
807
+ <key>WFOpenInAppIdentifier</key>
808
+ <string>com.evernote.iPhone.Evernote</string>
809
+ <key>WFOpenInAskWhenRun</key>
810
+ <false/>
811
+ </dict>
812
+ </dict>
813
+ <dict>
814
+ <key>WFWorkflowActionIdentifier</key>
815
+ <string>is.workflow.actions.exit</string>
816
+ <key>WFWorkflowActionParameters</key>
817
+ <dict/>
818
+ </dict>
819
+ <dict>
820
+ <key>WFWorkflowActionIdentifier</key>
821
+ <string>is.workflow.actions.choosefrommenu</string>
822
+ <key>WFWorkflowActionParameters</key>
823
+ <dict>
824
+ <key>GroupingIdentifier</key>
825
+ <string>10B98613-14ED-4B54-8212-CF932E852C00</string>
826
+ <key>WFControlFlowMode</key>
827
+ <integer>1</integer>
828
+ <key>WFMenuItemTitle</key>
829
+ <string>🔗 Rich Text</string>
830
+ </dict>
831
+ </dict>
832
+ <dict>
833
+ <key>WFWorkflowActionIdentifier</key>
834
+ <string>is.workflow.actions.getvariable</string>
835
+ <key>WFWorkflowActionParameters</key>
836
+ <dict>
837
+ <key>WFVariable</key>
838
+ <dict>
839
+ <key>Value</key>
840
+ <dict>
841
+ <key>Aggrandizements</key>
842
+ <array>
843
+ <dict>
844
+ <key>PropertyName</key>
845
+ <string>Page Selection</string>
846
+ <key>Type</key>
847
+ <string>WFPropertyVariableAggrandizement</string>
848
+ </dict>
849
+ </array>
850
+ <key>Type</key>
851
+ <string>ExtensionInput</string>
852
+ </dict>
853
+ <key>WFSerializationType</key>
854
+ <string>WFTextTokenAttachment</string>
855
+ </dict>
856
+ </dict>
857
+ </dict>
858
+ <dict>
859
+ <key>WFWorkflowActionIdentifier</key>
860
+ <string>is.workflow.actions.count</string>
861
+ <key>WFWorkflowActionParameters</key>
862
+ <dict>
863
+ <key>UUID</key>
864
+ <string>F397640C-BB1B-42A9-9ABF-A68B2262838C</string>
865
+ <key>WFCountType</key>
866
+ <string>Items</string>
867
+ </dict>
868
+ </dict>
869
+ <dict>
870
+ <key>WFWorkflowActionIdentifier</key>
871
+ <string>is.workflow.actions.conditional</string>
872
+ <key>WFWorkflowActionParameters</key>
873
+ <dict>
874
+ <key>GroupingIdentifier</key>
875
+ <string>6B98B096-93D1-42F1-8906-7717F10479F8</string>
876
+ <key>WFCondition</key>
877
+ <string>Equals</string>
878
+ <key>WFConditionalActionString</key>
879
+ <string>0</string>
880
+ <key>WFControlFlowMode</key>
881
+ <integer>0</integer>
882
+ </dict>
883
+ </dict>
884
+ <dict>
885
+ <key>WFWorkflowActionIdentifier</key>
886
+ <string>is.workflow.actions.comment</string>
887
+ <key>WFWorkflowActionParameters</key>
888
+ <dict>
889
+ <key>WFCommentActionText</key>
890
+ <string>Create rich text note without text selection</string>
891
+ </dict>
892
+ </dict>
893
+ <dict>
894
+ <key>WFWorkflowActionIdentifier</key>
895
+ <string>is.workflow.actions.gettext</string>
896
+ <key>WFWorkflowActionParameters</key>
897
+ <dict>
898
+ <key>UUID</key>
899
+ <string>2D9DB719-04B3-4D65-ADA7-36651ADE9220</string>
900
+ <key>WFTextActionText</key>
901
+ <dict>
902
+ <key>Value</key>
903
+ <dict>
904
+ <key>attachmentsByRange</key>
905
+ <dict>
906
+ <key>{1, 1}</key>
907
+ <dict>
908
+ <key>Aggrandizements</key>
909
+ <array>
910
+ <dict>
911
+ <key>PropertyName</key>
912
+ <string>Name</string>
913
+ <key>PropertyUserInfo</key>
914
+ <string>WFItemName</string>
915
+ <key>Type</key>
916
+ <string>WFPropertyVariableAggrandizement</string>
917
+ </dict>
918
+ </array>
919
+ <key>Type</key>
920
+ <string>ExtensionInput</string>
921
+ </dict>
922
+ <key>{4, 1}</key>
923
+ <dict>
924
+ <key>Aggrandizements</key>
925
+ <array>
926
+ <dict>
927
+ <key>PropertyName</key>
928
+ <string>Page URL</string>
929
+ <key>Type</key>
930
+ <string>WFPropertyVariableAggrandizement</string>
931
+ </dict>
932
+ </array>
933
+ <key>Type</key>
934
+ <string>ExtensionInput</string>
935
+ </dict>
936
+ </dict>
937
+ <key>string</key>
938
+ <string>[]()</string>
939
+ </dict>
940
+ <key>WFSerializationType</key>
941
+ <string>WFTextTokenString</string>
942
+ </dict>
943
+ </dict>
944
+ </dict>
945
+ <dict>
946
+ <key>WFWorkflowActionIdentifier</key>
947
+ <string>is.workflow.actions.conditional</string>
948
+ <key>WFWorkflowActionParameters</key>
949
+ <dict>
950
+ <key>GroupingIdentifier</key>
951
+ <string>6B98B096-93D1-42F1-8906-7717F10479F8</string>
952
+ <key>WFControlFlowMode</key>
953
+ <integer>1</integer>
954
+ </dict>
955
+ </dict>
956
+ <dict>
957
+ <key>WFWorkflowActionIdentifier</key>
958
+ <string>is.workflow.actions.comment</string>
959
+ <key>WFWorkflowActionParameters</key>
960
+ <dict>
961
+ <key>WFCommentActionText</key>
962
+ <string>Create rich text note with text selection</string>
963
+ </dict>
964
+ </dict>
965
+ <dict>
966
+ <key>WFWorkflowActionIdentifier</key>
967
+ <string>is.workflow.actions.getvariable</string>
968
+ <key>WFWorkflowActionParameters</key>
969
+ <dict>
970
+ <key>WFVariable</key>
971
+ <dict>
972
+ <key>Value</key>
973
+ <dict>
974
+ <key>Aggrandizements</key>
975
+ <array>
976
+ <dict>
977
+ <key>PropertyName</key>
978
+ <string>Page Selection</string>
979
+ <key>Type</key>
980
+ <string>WFPropertyVariableAggrandizement</string>
981
+ </dict>
982
+ </array>
983
+ <key>Type</key>
984
+ <string>ExtensionInput</string>
985
+ </dict>
986
+ <key>WFSerializationType</key>
987
+ <string>WFTextTokenAttachment</string>
988
+ </dict>
989
+ </dict>
990
+ </dict>
991
+ <dict>
992
+ <key>WFWorkflowActionIdentifier</key>
993
+ <string>is.workflow.actions.getmarkdownfromrichtext</string>
994
+ <key>WFWorkflowActionParameters</key>
995
+ <dict>
996
+ <key>UUID</key>
997
+ <string>99C6B826-1ACC-4007-B827-7641BE7171F2</string>
998
+ </dict>
999
+ </dict>
1000
+ <dict>
1001
+ <key>WFWorkflowActionIdentifier</key>
1002
+ <string>is.workflow.actions.text.split</string>
1003
+ <key>WFWorkflowActionParameters</key>
1004
+ <dict>
1005
+ <key>UUID</key>
1006
+ <string>A1CE4EF9-6A4F-43D7-AE65-F8D8CAD1EABB</string>
1007
+ </dict>
1008
+ </dict>
1009
+ <dict>
1010
+ <key>WFWorkflowActionIdentifier</key>
1011
+ <string>is.workflow.actions.repeat.each</string>
1012
+ <key>WFWorkflowActionParameters</key>
1013
+ <dict>
1014
+ <key>GroupingIdentifier</key>
1015
+ <string>DACBF8F7-746C-4E2F-8AA3-BAC34B6ABD7B</string>
1016
+ <key>WFControlFlowMode</key>
1017
+ <integer>0</integer>
1018
+ </dict>
1019
+ </dict>
1020
+ <dict>
1021
+ <key>WFWorkflowActionIdentifier</key>
1022
+ <string>is.workflow.actions.gettext</string>
1023
+ <key>WFWorkflowActionParameters</key>
1024
+ <dict>
1025
+ <key>UUID</key>
1026
+ <string>D59075FD-2A50-4489-9286-768C1F253DED</string>
1027
+ <key>WFTextActionText</key>
1028
+ <dict>
1029
+ <key>Value</key>
1030
+ <dict>
1031
+ <key>attachmentsByRange</key>
1032
+ <dict>
1033
+ <key>{6, 1}</key>
1034
+ <dict>
1035
+ <key>Type</key>
1036
+ <string>Variable</string>
1037
+ <key>VariableName</key>
1038
+ <string>Repeat Item</string>
1039
+ </dict>
1040
+ </dict>
1041
+ <key>string</key>
1042
+ <string>&gt; &lt;em&gt;&lt;/em&gt;
1043
+ </string>
1044
+ </dict>
1045
+ <key>WFSerializationType</key>
1046
+ <string>WFTextTokenString</string>
1047
+ </dict>
1048
+ </dict>
1049
+ </dict>
1050
+ <dict>
1051
+ <key>WFWorkflowActionIdentifier</key>
1052
+ <string>is.workflow.actions.appendvariable</string>
1053
+ <key>WFWorkflowActionParameters</key>
1054
+ <dict>
1055
+ <key>WFVariableName</key>
1056
+ <string>QuotedSel</string>
1057
+ </dict>
1058
+ </dict>
1059
+ <dict>
1060
+ <key>WFWorkflowActionIdentifier</key>
1061
+ <string>is.workflow.actions.repeat.each</string>
1062
+ <key>WFWorkflowActionParameters</key>
1063
+ <dict>
1064
+ <key>GroupingIdentifier</key>
1065
+ <string>DACBF8F7-746C-4E2F-8AA3-BAC34B6ABD7B</string>
1066
+ <key>UUID</key>
1067
+ <string>36FDFC02-14CE-40AD-9EFB-7D2ECE573F15</string>
1068
+ <key>WFControlFlowMode</key>
1069
+ <integer>2</integer>
1070
+ </dict>
1071
+ </dict>
1072
+ <dict>
1073
+ <key>WFWorkflowActionIdentifier</key>
1074
+ <string>is.workflow.actions.getvariable</string>
1075
+ <key>WFWorkflowActionParameters</key>
1076
+ <dict>
1077
+ <key>WFVariable</key>
1078
+ <dict>
1079
+ <key>Value</key>
1080
+ <dict>
1081
+ <key>Type</key>
1082
+ <string>Variable</string>
1083
+ <key>VariableName</key>
1084
+ <string>QuotedSel</string>
1085
+ </dict>
1086
+ <key>WFSerializationType</key>
1087
+ <string>WFTextTokenAttachment</string>
1088
+ </dict>
1089
+ </dict>
1090
+ </dict>
1091
+ <dict>
1092
+ <key>WFWorkflowActionIdentifier</key>
1093
+ <string>is.workflow.actions.text.combine</string>
1094
+ <key>WFWorkflowActionParameters</key>
1095
+ <dict>
1096
+ <key>CustomOutputName</key>
1097
+ <string>Quoted Selection</string>
1098
+ <key>UUID</key>
1099
+ <string>A2DA7C54-CC5D-4154-9E79-9EA171C3211C</string>
1100
+ <key>WFTextSeparator</key>
1101
+ <string>New Lines</string>
1102
+ </dict>
1103
+ </dict>
1104
+ <dict>
1105
+ <key>WFWorkflowActionIdentifier</key>
1106
+ <string>is.workflow.actions.gettext</string>
1107
+ <key>WFWorkflowActionParameters</key>
1108
+ <dict>
1109
+ <key>UUID</key>
1110
+ <string>593F53B3-5E0E-43CA-A3F1-A83BAA7C2301</string>
1111
+ <key>WFTextActionText</key>
1112
+ <dict>
1113
+ <key>Value</key>
1114
+ <dict>
1115
+ <key>attachmentsByRange</key>
1116
+ <dict>
1117
+ <key>{1, 1}</key>
1118
+ <dict>
1119
+ <key>Aggrandizements</key>
1120
+ <array>
1121
+ <dict>
1122
+ <key>PropertyName</key>
1123
+ <string>Name</string>
1124
+ <key>PropertyUserInfo</key>
1125
+ <string>WFItemName</string>
1126
+ <key>Type</key>
1127
+ <string>WFPropertyVariableAggrandizement</string>
1128
+ </dict>
1129
+ </array>
1130
+ <key>Type</key>
1131
+ <string>ExtensionInput</string>
1132
+ </dict>
1133
+ <key>{4, 1}</key>
1134
+ <dict>
1135
+ <key>Aggrandizements</key>
1136
+ <array>
1137
+ <dict>
1138
+ <key>PropertyName</key>
1139
+ <string>Page URL</string>
1140
+ <key>Type</key>
1141
+ <string>WFPropertyVariableAggrandizement</string>
1142
+ </dict>
1143
+ </array>
1144
+ <key>Type</key>
1145
+ <string>ExtensionInput</string>
1146
+ </dict>
1147
+ <key>{8, 1}</key>
1148
+ <dict>
1149
+ <key>OutputName</key>
1150
+ <string>Quoted Selection</string>
1151
+ <key>OutputUUID</key>
1152
+ <string>A2DA7C54-CC5D-4154-9E79-9EA171C3211C</string>
1153
+ <key>Type</key>
1154
+ <string>ActionOutput</string>
1155
+ </dict>
1156
+ </dict>
1157
+ <key>string</key>
1158
+ <string>[]()
1159
+
1160
+ </string>
1161
+ </dict>
1162
+ <key>WFSerializationType</key>
1163
+ <string>WFTextTokenString</string>
1164
+ </dict>
1165
+ </dict>
1166
+ </dict>
1167
+ <dict>
1168
+ <key>WFWorkflowActionIdentifier</key>
1169
+ <string>is.workflow.actions.conditional</string>
1170
+ <key>WFWorkflowActionParameters</key>
1171
+ <dict>
1172
+ <key>GroupingIdentifier</key>
1173
+ <string>6B98B096-93D1-42F1-8906-7717F10479F8</string>
1174
+ <key>UUID</key>
1175
+ <string>33307B60-BCA4-404C-A20E-299EB4A21057</string>
1176
+ <key>WFControlFlowMode</key>
1177
+ <integer>2</integer>
1178
+ </dict>
1179
+ </dict>
1180
+ <dict>
1181
+ <key>WFWorkflowActionIdentifier</key>
1182
+ <string>is.workflow.actions.getrichtextfrommarkdown</string>
1183
+ <key>WFWorkflowActionParameters</key>
1184
+ <dict>
1185
+ <key>UUID</key>
1186
+ <string>CA2BE0B2-B5B1-46C2-8C34-589C920AB97D</string>
1187
+ </dict>
1188
+ </dict>
1189
+ <dict>
1190
+ <key>WFWorkflowActionIdentifier</key>
1191
+ <string>is.workflow.actions.setvariable</string>
1192
+ <key>WFWorkflowActionParameters</key>
1193
+ <dict>
1194
+ <key>WFVariableName</key>
1195
+ <string>Webpage</string>
1196
+ </dict>
1197
+ </dict>
1198
+ <dict>
1199
+ <key>WFWorkflowActionIdentifier</key>
1200
+ <string>is.workflow.actions.choosefrommenu</string>
1201
+ <key>WFWorkflowActionParameters</key>
1202
+ <dict>
1203
+ <key>GroupingIdentifier</key>
1204
+ <string>10B98613-14ED-4B54-8212-CF932E852C00</string>
1205
+ <key>WFControlFlowMode</key>
1206
+ <integer>1</integer>
1207
+ <key>WFMenuItemTitle</key>
1208
+ <string>📄 Plain Text (Strip Formatting)</string>
1209
+ </dict>
1210
+ </dict>
1211
+ <dict>
1212
+ <key>WFWorkflowActionIdentifier</key>
1213
+ <string>is.workflow.actions.getvariable</string>
1214
+ <key>WFWorkflowActionParameters</key>
1215
+ <dict>
1216
+ <key>WFVariable</key>
1217
+ <dict>
1218
+ <key>Value</key>
1219
+ <dict>
1220
+ <key>Aggrandizements</key>
1221
+ <array>
1222
+ <dict>
1223
+ <key>PropertyName</key>
1224
+ <string>Page Selection</string>
1225
+ <key>Type</key>
1226
+ <string>WFPropertyVariableAggrandizement</string>
1227
+ </dict>
1228
+ </array>
1229
+ <key>Type</key>
1230
+ <string>ExtensionInput</string>
1231
+ </dict>
1232
+ <key>WFSerializationType</key>
1233
+ <string>WFTextTokenAttachment</string>
1234
+ </dict>
1235
+ </dict>
1236
+ </dict>
1237
+ <dict>
1238
+ <key>WFWorkflowActionIdentifier</key>
1239
+ <string>is.workflow.actions.count</string>
1240
+ <key>WFWorkflowActionParameters</key>
1241
+ <dict>
1242
+ <key>UUID</key>
1243
+ <string>6D0CE40C-60C7-467C-853A-41A83CCB301C</string>
1244
+ <key>WFCountType</key>
1245
+ <string>Items</string>
1246
+ </dict>
1247
+ </dict>
1248
+ <dict>
1249
+ <key>WFWorkflowActionIdentifier</key>
1250
+ <string>is.workflow.actions.comment</string>
1251
+ <key>WFWorkflowActionParameters</key>
1252
+ <dict>
1253
+ <key>WFCommentActionText</key>
1254
+ <string>Save with or without selection</string>
1255
+ </dict>
1256
+ </dict>
1257
+ <dict>
1258
+ <key>WFWorkflowActionIdentifier</key>
1259
+ <string>is.workflow.actions.conditional</string>
1260
+ <key>WFWorkflowActionParameters</key>
1261
+ <dict>
1262
+ <key>GroupingIdentifier</key>
1263
+ <string>288405EA-47C1-48FB-9A94-1B17076CD315</string>
1264
+ <key>WFCondition</key>
1265
+ <string>Equals</string>
1266
+ <key>WFConditionalActionString</key>
1267
+ <string>0</string>
1268
+ <key>WFControlFlowMode</key>
1269
+ <integer>0</integer>
1270
+ </dict>
1271
+ </dict>
1272
+ <dict>
1273
+ <key>WFWorkflowActionIdentifier</key>
1274
+ <string>is.workflow.actions.gettext</string>
1275
+ <key>WFWorkflowActionParameters</key>
1276
+ <dict>
1277
+ <key>UUID</key>
1278
+ <string>ABA2DE41-4F3C-4451-8FFD-23F7703BB98D</string>
1279
+ <key>WFTextActionText</key>
1280
+ <dict>
1281
+ <key>Value</key>
1282
+ <dict>
1283
+ <key>attachmentsByRange</key>
1284
+ <dict>
1285
+ <key>{0, 1}</key>
1286
+ <dict>
1287
+ <key>Aggrandizements</key>
1288
+ <array>
1289
+ <dict>
1290
+ <key>PropertyName</key>
1291
+ <string>Name</string>
1292
+ <key>PropertyUserInfo</key>
1293
+ <string>WFItemName</string>
1294
+ <key>Type</key>
1295
+ <string>WFPropertyVariableAggrandizement</string>
1296
+ </dict>
1297
+ </array>
1298
+ <key>Type</key>
1299
+ <string>ExtensionInput</string>
1300
+ </dict>
1301
+ <key>{2, 1}</key>
1302
+ <dict>
1303
+ <key>Aggrandizements</key>
1304
+ <array>
1305
+ <dict>
1306
+ <key>PropertyName</key>
1307
+ <string>Page URL</string>
1308
+ <key>Type</key>
1309
+ <string>WFPropertyVariableAggrandizement</string>
1310
+ </dict>
1311
+ </array>
1312
+ <key>Type</key>
1313
+ <string>ExtensionInput</string>
1314
+ </dict>
1315
+ </dict>
1316
+ <key>string</key>
1317
+ <string> </string>
1318
+ </dict>
1319
+ <key>WFSerializationType</key>
1320
+ <string>WFTextTokenString</string>
1321
+ </dict>
1322
+ </dict>
1323
+ </dict>
1324
+ <dict>
1325
+ <key>WFWorkflowActionIdentifier</key>
1326
+ <string>is.workflow.actions.conditional</string>
1327
+ <key>WFWorkflowActionParameters</key>
1328
+ <dict>
1329
+ <key>GroupingIdentifier</key>
1330
+ <string>288405EA-47C1-48FB-9A94-1B17076CD315</string>
1331
+ <key>WFControlFlowMode</key>
1332
+ <integer>1</integer>
1333
+ </dict>
1334
+ </dict>
1335
+ <dict>
1336
+ <key>WFWorkflowActionIdentifier</key>
1337
+ <string>is.workflow.actions.gettext</string>
1338
+ <key>WFWorkflowActionParameters</key>
1339
+ <dict>
1340
+ <key>WFTextActionText</key>
1341
+ <dict>
1342
+ <key>Value</key>
1343
+ <dict>
1344
+ <key>attachmentsByRange</key>
1345
+ <dict>
1346
+ <key>{0, 1}</key>
1347
+ <dict>
1348
+ <key>Aggrandizements</key>
1349
+ <array>
1350
+ <dict>
1351
+ <key>PropertyName</key>
1352
+ <string>Name</string>
1353
+ <key>PropertyUserInfo</key>
1354
+ <string>WFItemName</string>
1355
+ <key>Type</key>
1356
+ <string>WFPropertyVariableAggrandizement</string>
1357
+ </dict>
1358
+ </array>
1359
+ <key>Type</key>
1360
+ <string>ExtensionInput</string>
1361
+ </dict>
1362
+ <key>{2, 1}</key>
1363
+ <dict>
1364
+ <key>Aggrandizements</key>
1365
+ <array>
1366
+ <dict>
1367
+ <key>PropertyName</key>
1368
+ <string>Page URL</string>
1369
+ <key>Type</key>
1370
+ <string>WFPropertyVariableAggrandizement</string>
1371
+ </dict>
1372
+ </array>
1373
+ <key>Type</key>
1374
+ <string>ExtensionInput</string>
1375
+ </dict>
1376
+ <key>{5, 1}</key>
1377
+ <dict>
1378
+ <key>Aggrandizements</key>
1379
+ <array>
1380
+ <dict>
1381
+ <key>PropertyName</key>
1382
+ <string>Page Selection</string>
1383
+ <key>Type</key>
1384
+ <string>WFPropertyVariableAggrandizement</string>
1385
+ </dict>
1386
+ </array>
1387
+ <key>Type</key>
1388
+ <string>ExtensionInput</string>
1389
+ </dict>
1390
+ </dict>
1391
+ <key>string</key>
1392
+ <string> 
1393
+
1394
+ </string>
1395
+ </dict>
1396
+ <key>WFSerializationType</key>
1397
+ <string>WFTextTokenString</string>
1398
+ </dict>
1399
+ </dict>
1400
+ </dict>
1401
+ <dict>
1402
+ <key>WFWorkflowActionIdentifier</key>
1403
+ <string>is.workflow.actions.conditional</string>
1404
+ <key>WFWorkflowActionParameters</key>
1405
+ <dict>
1406
+ <key>GroupingIdentifier</key>
1407
+ <string>288405EA-47C1-48FB-9A94-1B17076CD315</string>
1408
+ <key>WFControlFlowMode</key>
1409
+ <integer>2</integer>
1410
+ </dict>
1411
+ </dict>
1412
+ <dict>
1413
+ <key>WFWorkflowActionIdentifier</key>
1414
+ <string>is.workflow.actions.setvariable</string>
1415
+ <key>WFWorkflowActionParameters</key>
1416
+ <dict>
1417
+ <key>WFVariableName</key>
1418
+ <string>Webpage</string>
1419
+ </dict>
1420
+ </dict>
1421
+ <dict>
1422
+ <key>WFWorkflowActionIdentifier</key>
1423
+ <string>is.workflow.actions.choosefrommenu</string>
1424
+ <key>WFWorkflowActionParameters</key>
1425
+ <dict>
1426
+ <key>GroupingIdentifier</key>
1427
+ <string>10B98613-14ED-4B54-8212-CF932E852C00</string>
1428
+ <key>WFControlFlowMode</key>
1429
+ <integer>1</integer>
1430
+ <key>WFMenuItemTitle</key>
1431
+ <string>📚 PDF</string>
1432
+ </dict>
1433
+ </dict>
1434
+ <dict>
1435
+ <key>WFWorkflowActionIdentifier</key>
1436
+ <string>is.workflow.actions.comment</string>
1437
+ <key>WFWorkflowActionParameters</key>
1438
+ <dict>
1439
+ <key>WFCommentActionText</key>
1440
+ <string>Create PDF version</string>
1441
+ </dict>
1442
+ </dict>
1443
+ <dict>
1444
+ <key>WFWorkflowActionIdentifier</key>
1445
+ <string>is.workflow.actions.getvariable</string>
1446
+ <key>WFWorkflowActionParameters</key>
1447
+ <dict>
1448
+ <key>WFVariable</key>
1449
+ <dict>
1450
+ <key>Value</key>
1451
+ <dict>
1452
+ <key>Type</key>
1453
+ <string>ExtensionInput</string>
1454
+ </dict>
1455
+ <key>WFSerializationType</key>
1456
+ <string>WFTextTokenAttachment</string>
1457
+ </dict>
1458
+ </dict>
1459
+ </dict>
1460
+ <dict>
1461
+ <key>WFWorkflowActionIdentifier</key>
1462
+ <string>is.workflow.actions.makepdf</string>
1463
+ <key>WFWorkflowActionParameters</key>
1464
+ <dict>
1465
+ <key>UUID</key>
1466
+ <string>B6B97AAF-8FF5-4F3F-8885-6FE0488DD461</string>
1467
+ </dict>
1468
+ </dict>
1469
+ <dict>
1470
+ <key>WFWorkflowActionIdentifier</key>
1471
+ <string>is.workflow.actions.setvariable</string>
1472
+ <key>WFWorkflowActionParameters</key>
1473
+ <dict>
1474
+ <key>WFVariableName</key>
1475
+ <string>Webpage</string>
1476
+ </dict>
1477
+ </dict>
1478
+ <dict>
1479
+ <key>WFWorkflowActionIdentifier</key>
1480
+ <string>is.workflow.actions.choosefrommenu</string>
1481
+ <key>WFWorkflowActionParameters</key>
1482
+ <dict>
1483
+ <key>GroupingIdentifier</key>
1484
+ <string>10B98613-14ED-4B54-8212-CF932E852C00</string>
1485
+ <key>WFControlFlowMode</key>
1486
+ <integer>1</integer>
1487
+ <key>WFMenuItemTitle</key>
1488
+ <string>🌍 Download (Attachment)</string>
1489
+ </dict>
1490
+ </dict>
1491
+ <dict>
1492
+ <key>WFWorkflowActionIdentifier</key>
1493
+ <string>is.workflow.actions.getvariable</string>
1494
+ <key>WFWorkflowActionParameters</key>
1495
+ <dict>
1496
+ <key>WFVariable</key>
1497
+ <dict>
1498
+ <key>Value</key>
1499
+ <dict>
1500
+ <key>Aggrandizements</key>
1501
+ <array>
1502
+ <dict>
1503
+ <key>PropertyName</key>
1504
+ <string>Page URL</string>
1505
+ <key>Type</key>
1506
+ <string>WFPropertyVariableAggrandizement</string>
1507
+ </dict>
1508
+ </array>
1509
+ <key>Type</key>
1510
+ <string>ExtensionInput</string>
1511
+ </dict>
1512
+ <key>WFSerializationType</key>
1513
+ <string>WFTextTokenAttachment</string>
1514
+ </dict>
1515
+ </dict>
1516
+ </dict>
1517
+ <dict>
1518
+ <key>WFWorkflowActionIdentifier</key>
1519
+ <string>is.workflow.actions.comment</string>
1520
+ <key>WFWorkflowActionParameters</key>
1521
+ <dict>
1522
+ <key>WFCommentActionText</key>
1523
+ <string>List of file extension to match. Feel free to add a new extension to the regex if necessary</string>
1524
+ </dict>
1525
+ </dict>
1526
+ <dict>
1527
+ <key>WFWorkflowActionIdentifier</key>
1528
+ <string>is.workflow.actions.text.match</string>
1529
+ <key>WFWorkflowActionParameters</key>
1530
+ <dict>
1531
+ <key>UUID</key>
1532
+ <string>4503A7F2-9800-4B69-8401-0DB254D0A1FC</string>
1533
+ <key>WFMatchTextPattern</key>
1534
+ <string>.+\.(mp4|mp3|m4a|ogg|flac|avi|mov|webm|mkv|jpeg|jpg|png|tiff)(.+)?</string>
1535
+ </dict>
1536
+ </dict>
1537
+ <dict>
1538
+ <key>WFWorkflowActionIdentifier</key>
1539
+ <string>is.workflow.actions.count</string>
1540
+ <key>WFWorkflowActionParameters</key>
1541
+ <dict>
1542
+ <key>UUID</key>
1543
+ <string>2776F1CF-766C-47D1-9F07-B5D463E14DD2</string>
1544
+ <key>WFCountType</key>
1545
+ <string>Items</string>
1546
+ </dict>
1547
+ </dict>
1548
+ <dict>
1549
+ <key>WFWorkflowActionIdentifier</key>
1550
+ <string>is.workflow.actions.conditional</string>
1551
+ <key>WFWorkflowActionParameters</key>
1552
+ <dict>
1553
+ <key>GroupingIdentifier</key>
1554
+ <string>3215D4BA-5323-4A1C-B21E-82C154828913</string>
1555
+ <key>WFCondition</key>
1556
+ <string>Equals</string>
1557
+ <key>WFConditionalActionString</key>
1558
+ <string>1</string>
1559
+ <key>WFControlFlowMode</key>
1560
+ <integer>0</integer>
1561
+ </dict>
1562
+ </dict>
1563
+ <dict>
1564
+ <key>WFWorkflowActionIdentifier</key>
1565
+ <string>is.workflow.actions.getvariable</string>
1566
+ <key>WFWorkflowActionParameters</key>
1567
+ <dict>
1568
+ <key>WFVariable</key>
1569
+ <dict>
1570
+ <key>Value</key>
1571
+ <dict>
1572
+ <key>Aggrandizements</key>
1573
+ <array>
1574
+ <dict>
1575
+ <key>PropertyName</key>
1576
+ <string>Page URL</string>
1577
+ <key>Type</key>
1578
+ <string>WFPropertyVariableAggrandizement</string>
1579
+ </dict>
1580
+ </array>
1581
+ <key>Type</key>
1582
+ <string>ExtensionInput</string>
1583
+ </dict>
1584
+ <key>WFSerializationType</key>
1585
+ <string>WFTextTokenAttachment</string>
1586
+ </dict>
1587
+ </dict>
1588
+ </dict>
1589
+ <dict>
1590
+ <key>WFWorkflowActionIdentifier</key>
1591
+ <string>is.workflow.actions.downloadurl</string>
1592
+ <key>WFWorkflowActionParameters</key>
1593
+ <dict>
1594
+ <key>UUID</key>
1595
+ <string>282CB4F9-2E33-4130-9E3E-4EC5B4659CC2</string>
1596
+ </dict>
1597
+ </dict>
1598
+ <dict>
1599
+ <key>WFWorkflowActionIdentifier</key>
1600
+ <string>is.workflow.actions.setvariable</string>
1601
+ <key>WFWorkflowActionParameters</key>
1602
+ <dict>
1603
+ <key>WFVariableName</key>
1604
+ <string>Webpage</string>
1605
+ </dict>
1606
+ </dict>
1607
+ <dict>
1608
+ <key>WFWorkflowActionIdentifier</key>
1609
+ <string>is.workflow.actions.ask</string>
1610
+ <key>WFWorkflowActionParameters</key>
1611
+ <dict>
1612
+ <key>UUID</key>
1613
+ <string>A0EC1EF2-ACBD-481A-9093-E82DEB4F3CF8</string>
1614
+ <key>WFAskActionPrompt</key>
1615
+ <string>Enter File Name</string>
1616
+ </dict>
1617
+ </dict>
1618
+ <dict>
1619
+ <key>WFWorkflowActionIdentifier</key>
1620
+ <string>is.workflow.actions.setvariable</string>
1621
+ <key>WFWorkflowActionParameters</key>
1622
+ <dict>
1623
+ <key>WFVariableName</key>
1624
+ <string>Note Title</string>
1625
+ </dict>
1626
+ </dict>
1627
+ <dict>
1628
+ <key>WFWorkflowActionIdentifier</key>
1629
+ <string>is.workflow.actions.conditional</string>
1630
+ <key>WFWorkflowActionParameters</key>
1631
+ <dict>
1632
+ <key>GroupingIdentifier</key>
1633
+ <string>3215D4BA-5323-4A1C-B21E-82C154828913</string>
1634
+ <key>WFControlFlowMode</key>
1635
+ <integer>1</integer>
1636
+ </dict>
1637
+ </dict>
1638
+ <dict>
1639
+ <key>WFWorkflowActionIdentifier</key>
1640
+ <string>is.workflow.actions.alert</string>
1641
+ <key>WFWorkflowActionParameters</key>
1642
+ <dict>
1643
+ <key>WFAlertActionMessage</key>
1644
+ <string>The current URL does not point to a compatible resource.</string>
1645
+ <key>WFAlertActionTitle</key>
1646
+ <string>❌ File Format Not Compatible ❌</string>
1647
+ </dict>
1648
+ </dict>
1649
+ <dict>
1650
+ <key>WFWorkflowActionIdentifier</key>
1651
+ <string>is.workflow.actions.conditional</string>
1652
+ <key>WFWorkflowActionParameters</key>
1653
+ <dict>
1654
+ <key>GroupingIdentifier</key>
1655
+ <string>3215D4BA-5323-4A1C-B21E-82C154828913</string>
1656
+ <key>UUID</key>
1657
+ <string>2F5D63FE-F818-4C27-8AE2-D6F1F2C4D8D2</string>
1658
+ <key>WFControlFlowMode</key>
1659
+ <integer>2</integer>
1660
+ </dict>
1661
+ </dict>
1662
+ <dict>
1663
+ <key>WFWorkflowActionIdentifier</key>
1664
+ <string>is.workflow.actions.choosefrommenu</string>
1665
+ <key>WFWorkflowActionParameters</key>
1666
+ <dict>
1667
+ <key>GroupingIdentifier</key>
1668
+ <string>10B98613-14ED-4B54-8212-CF932E852C00</string>
1669
+ <key>UUID</key>
1670
+ <string>A491A6D5-E164-4FBE-8858-45BD094246A7</string>
1671
+ <key>WFControlFlowMode</key>
1672
+ <integer>2</integer>
1673
+ </dict>
1674
+ </dict>
1675
+ <dict>
1676
+ <key>WFWorkflowActionIdentifier</key>
1677
+ <string>is.workflow.actions.getvariable</string>
1678
+ <key>WFWorkflowActionParameters</key>
1679
+ <dict>
1680
+ <key>WFVariable</key>
1681
+ <dict>
1682
+ <key>Value</key>
1683
+ <dict>
1684
+ <key>Type</key>
1685
+ <string>Variable</string>
1686
+ <key>VariableName</key>
1687
+ <string>Evernote List</string>
1688
+ </dict>
1689
+ <key>WFSerializationType</key>
1690
+ <string>WFTextTokenAttachment</string>
1691
+ </dict>
1692
+ </dict>
1693
+ </dict>
1694
+ <dict>
1695
+ <key>WFWorkflowActionIdentifier</key>
1696
+ <string>is.workflow.actions.getitemfromlist</string>
1697
+ <key>WFWorkflowActionParameters</key>
1698
+ <dict>
1699
+ <key>UUID</key>
1700
+ <string>29A9A420-E955-4F46-B4C2-3821700F0D7E</string>
1701
+ </dict>
1702
+ </dict>
1703
+ <dict>
1704
+ <key>WFWorkflowActionIdentifier</key>
1705
+ <string>is.workflow.actions.text.split</string>
1706
+ <key>WFWorkflowActionParameters</key>
1707
+ <dict>
1708
+ <key>UUID</key>
1709
+ <string>925A7EBA-13E7-4B36-8333-22544C31669E</string>
1710
+ <key>WFTextCustomSeparator</key>
1711
+ <string>%%SEPARATOR%%</string>
1712
+ <key>WFTextSeparator</key>
1713
+ <string>Custom</string>
1714
+ </dict>
1715
+ </dict>
1716
+ <dict>
1717
+ <key>WFWorkflowActionIdentifier</key>
1718
+ <string>is.workflow.actions.choosefromlist</string>
1719
+ <key>WFWorkflowActionParameters</key>
1720
+ <dict>
1721
+ <key>UUID</key>
1722
+ <string>FB12D31D-2F26-4C8F-80E2-AFCF6A849167</string>
1723
+ <key>WFChooseFromListActionPrompt</key>
1724
+ <string>Pick Notebook</string>
1725
+ </dict>
1726
+ </dict>
1727
+ <dict>
1728
+ <key>WFWorkflowActionIdentifier</key>
1729
+ <string>is.workflow.actions.setvariable</string>
1730
+ <key>WFWorkflowActionParameters</key>
1731
+ <dict>
1732
+ <key>WFVariableName</key>
1733
+ <string>Chosen Notebook</string>
1734
+ </dict>
1735
+ </dict>
1736
+ <dict>
1737
+ <key>WFWorkflowActionIdentifier</key>
1738
+ <string>is.workflow.actions.choosefrommenu</string>
1739
+ <key>WFWorkflowActionParameters</key>
1740
+ <dict>
1741
+ <key>GroupingIdentifier</key>
1742
+ <string>C14EE622-274B-4AFE-87AC-3B9D8AA36A6C</string>
1743
+ <key>WFControlFlowMode</key>
1744
+ <integer>0</integer>
1745
+ <key>WFMenuItems</key>
1746
+ <array>
1747
+ <string>Append</string>
1748
+ <string>Create New Note</string>
1749
+ </array>
1750
+ <key>WFMenuPrompt</key>
1751
+ <string>Evernote</string>
1752
+ </dict>
1753
+ </dict>
1754
+ <dict>
1755
+ <key>WFWorkflowActionIdentifier</key>
1756
+ <string>is.workflow.actions.choosefrommenu</string>
1757
+ <key>WFWorkflowActionParameters</key>
1758
+ <dict>
1759
+ <key>GroupingIdentifier</key>
1760
+ <string>C14EE622-274B-4AFE-87AC-3B9D8AA36A6C</string>
1761
+ <key>WFControlFlowMode</key>
1762
+ <integer>1</integer>
1763
+ <key>WFMenuItemTitle</key>
1764
+ <string>Append</string>
1765
+ </dict>
1766
+ </dict>
1767
+ <dict>
1768
+ <key>WFWorkflowActionIdentifier</key>
1769
+ <string>is.workflow.actions.getvariable</string>
1770
+ <key>WFWorkflowActionParameters</key>
1771
+ <dict>
1772
+ <key>WFVariable</key>
1773
+ <dict>
1774
+ <key>Value</key>
1775
+ <dict>
1776
+ <key>Type</key>
1777
+ <string>Variable</string>
1778
+ <key>VariableName</key>
1779
+ <string>Evernote List</string>
1780
+ </dict>
1781
+ <key>WFSerializationType</key>
1782
+ <string>WFTextTokenAttachment</string>
1783
+ </dict>
1784
+ </dict>
1785
+ </dict>
1786
+ <dict>
1787
+ <key>WFWorkflowActionIdentifier</key>
1788
+ <string>is.workflow.actions.getitemfromlist</string>
1789
+ <key>WFWorkflowActionParameters</key>
1790
+ <dict>
1791
+ <key>UUID</key>
1792
+ <string>B3B26E41-9B0F-46C9-90B4-A9AD0EAA78D3</string>
1793
+ <key>WFItemIndex</key>
1794
+ <real>3</real>
1795
+ <key>WFItemSpecifier</key>
1796
+ <string>Item At Index</string>
1797
+ </dict>
1798
+ </dict>
1799
+ <dict>
1800
+ <key>WFWorkflowActionIdentifier</key>
1801
+ <string>is.workflow.actions.text.split</string>
1802
+ <key>WFWorkflowActionParameters</key>
1803
+ <dict>
1804
+ <key>UUID</key>
1805
+ <string>3BD4746F-5F99-430F-ADF9-BB5A6357998B</string>
1806
+ <key>WFTextCustomSeparator</key>
1807
+ <string>%%SEPARATOR%%</string>
1808
+ <key>WFTextSeparator</key>
1809
+ <string>Custom</string>
1810
+ </dict>
1811
+ </dict>
1812
+ <dict>
1813
+ <key>WFWorkflowActionIdentifier</key>
1814
+ <string>is.workflow.actions.choosefromlist</string>
1815
+ <key>WFWorkflowActionParameters</key>
1816
+ <dict>
1817
+ <key>CustomOutputName</key>
1818
+ <string>Note</string>
1819
+ <key>UUID</key>
1820
+ <string>D96C9340-4D16-4517-864F-0F4F9C1EFD6D</string>
1821
+ <key>WFChooseFromListActionPrompt</key>
1822
+ <string>Favorite Notes</string>
1823
+ </dict>
1824
+ </dict>
1825
+ <dict>
1826
+ <key>WFWorkflowActionIdentifier</key>
1827
+ <string>is.workflow.actions.getvariable</string>
1828
+ <key>WFWorkflowActionParameters</key>
1829
+ <dict>
1830
+ <key>WFVariable</key>
1831
+ <dict>
1832
+ <key>Value</key>
1833
+ <dict>
1834
+ <key>Type</key>
1835
+ <string>Variable</string>
1836
+ <key>VariableName</key>
1837
+ <string>Webpage</string>
1838
+ </dict>
1839
+ <key>WFSerializationType</key>
1840
+ <string>WFTextTokenAttachment</string>
1841
+ </dict>
1842
+ </dict>
1843
+ </dict>
1844
+ <dict>
1845
+ <key>WFWorkflowActionIdentifier</key>
1846
+ <string>is.workflow.actions.evernote.append</string>
1847
+ <key>WFWorkflowActionParameters</key>
1848
+ <dict>
1849
+ <key>UUID</key>
1850
+ <string>13C603DB-9C88-47D5-86DB-C9AE21E70874</string>
1851
+ <key>WFEvernoteNotesNotebookName</key>
1852
+ <dict>
1853
+ <key>Value</key>
1854
+ <dict>
1855
+ <key>Type</key>
1856
+ <string>Variable</string>
1857
+ <key>VariableName</key>
1858
+ <string>Chosen Notebook</string>
1859
+ </dict>
1860
+ <key>WFSerializationType</key>
1861
+ <string>WFTextTokenAttachment</string>
1862
+ </dict>
1863
+ <key>WFEvernoteNotesTitleSearch</key>
1864
+ <dict>
1865
+ <key>Value</key>
1866
+ <dict>
1867
+ <key>attachmentsByRange</key>
1868
+ <dict>
1869
+ <key>{0, 1}</key>
1870
+ <dict>
1871
+ <key>OutputName</key>
1872
+ <string>Note</string>
1873
+ <key>OutputUUID</key>
1874
+ <string>D96C9340-4D16-4517-864F-0F4F9C1EFD6D</string>
1875
+ <key>Type</key>
1876
+ <string>ActionOutput</string>
1877
+ </dict>
1878
+ </dict>
1879
+ <key>string</key>
1880
+ <string></string>
1881
+ </dict>
1882
+ <key>WFSerializationType</key>
1883
+ <string>WFTextTokenString</string>
1884
+ </dict>
1885
+ </dict>
1886
+ </dict>
1887
+ <dict>
1888
+ <key>WFWorkflowActionIdentifier</key>
1889
+ <string>is.workflow.actions.setvariable</string>
1890
+ <key>WFWorkflowActionParameters</key>
1891
+ <dict>
1892
+ <key>WFVariableName</key>
1893
+ <string>Note</string>
1894
+ </dict>
1895
+ </dict>
1896
+ <dict>
1897
+ <key>WFWorkflowActionIdentifier</key>
1898
+ <string>is.workflow.actions.choosefrommenu</string>
1899
+ <key>WFWorkflowActionParameters</key>
1900
+ <dict>
1901
+ <key>GroupingIdentifier</key>
1902
+ <string>C14EE622-274B-4AFE-87AC-3B9D8AA36A6C</string>
1903
+ <key>WFControlFlowMode</key>
1904
+ <integer>1</integer>
1905
+ <key>WFMenuItemTitle</key>
1906
+ <string>Create New Note</string>
1907
+ </dict>
1908
+ </dict>
1909
+ <dict>
1910
+ <key>WFWorkflowActionIdentifier</key>
1911
+ <string>is.workflow.actions.comment</string>
1912
+ <key>WFWorkflowActionParameters</key>
1913
+ <dict>
1914
+ <key>WFCommentActionText</key>
1915
+ <string>Pick and split tags to combine them with commas (if multiple tags are present)</string>
1916
+ </dict>
1917
+ </dict>
1918
+ <dict>
1919
+ <key>WFWorkflowActionIdentifier</key>
1920
+ <string>is.workflow.actions.getvariable</string>
1921
+ <key>WFWorkflowActionParameters</key>
1922
+ <dict>
1923
+ <key>WFVariable</key>
1924
+ <dict>
1925
+ <key>Value</key>
1926
+ <dict>
1927
+ <key>Type</key>
1928
+ <string>Variable</string>
1929
+ <key>VariableName</key>
1930
+ <string>Evernote List</string>
1931
+ </dict>
1932
+ <key>WFSerializationType</key>
1933
+ <string>WFTextTokenAttachment</string>
1934
+ </dict>
1935
+ </dict>
1936
+ </dict>
1937
+ <dict>
1938
+ <key>WFWorkflowActionIdentifier</key>
1939
+ <string>is.workflow.actions.getitemfromlist</string>
1940
+ <key>WFWorkflowActionParameters</key>
1941
+ <dict>
1942
+ <key>UUID</key>
1943
+ <string>ABD4C9F6-05CB-4DBF-AFBC-CB153602C3E6</string>
1944
+ <key>WFItemIndex</key>
1945
+ <real>2</real>
1946
+ <key>WFItemSpecifier</key>
1947
+ <string>Item At Index</string>
1948
+ </dict>
1949
+ </dict>
1950
+ <dict>
1951
+ <key>WFWorkflowActionIdentifier</key>
1952
+ <string>is.workflow.actions.text.split</string>
1953
+ <key>WFWorkflowActionParameters</key>
1954
+ <dict>
1955
+ <key>UUID</key>
1956
+ <string>C56C9A26-52CB-4D61-B092-0B20D6379815</string>
1957
+ <key>WFTextCustomSeparator</key>
1958
+ <string>%%SEPARATOR%%</string>
1959
+ <key>WFTextSeparator</key>
1960
+ <string>Custom</string>
1961
+ </dict>
1962
+ </dict>
1963
+ <dict>
1964
+ <key>WFWorkflowActionIdentifier</key>
1965
+ <string>is.workflow.actions.choosefromlist</string>
1966
+ <key>WFWorkflowActionParameters</key>
1967
+ <dict>
1968
+ <key>CustomOutputName</key>
1969
+ <string>Tags</string>
1970
+ <key>UUID</key>
1971
+ <string>6D2C1A4F-C0AC-4FBF-A5C1-7AF0FDBBE3AA</string>
1972
+ <key>WFChooseFromListActionPrompt</key>
1973
+ <string>Tags</string>
1974
+ <key>WFChooseFromListActionSelectMultiple</key>
1975
+ <true/>
1976
+ </dict>
1977
+ </dict>
1978
+ <dict>
1979
+ <key>WFWorkflowActionIdentifier</key>
1980
+ <string>is.workflow.actions.text.combine</string>
1981
+ <key>WFWorkflowActionParameters</key>
1982
+ <dict>
1983
+ <key>UUID</key>
1984
+ <string>59B6F0C6-BA7C-409B-99AB-8B429320DC1E</string>
1985
+ <key>WFTextCustomSeparator</key>
1986
+ <string>,</string>
1987
+ <key>WFTextSeparator</key>
1988
+ <string>Custom</string>
1989
+ </dict>
1990
+ </dict>
1991
+ <dict>
1992
+ <key>WFWorkflowActionIdentifier</key>
1993
+ <string>is.workflow.actions.getvariable</string>
1994
+ <key>WFWorkflowActionParameters</key>
1995
+ <dict>
1996
+ <key>WFVariable</key>
1997
+ <dict>
1998
+ <key>Value</key>
1999
+ <dict>
2000
+ <key>Type</key>
2001
+ <string>Variable</string>
2002
+ <key>VariableName</key>
2003
+ <string>Webpage</string>
2004
+ </dict>
2005
+ <key>WFSerializationType</key>
2006
+ <string>WFTextTokenAttachment</string>
2007
+ </dict>
2008
+ </dict>
2009
+ </dict>
2010
+ <dict>
2011
+ <key>WFWorkflowActionIdentifier</key>
2012
+ <string>is.workflow.actions.evernote.new</string>
2013
+ <key>WFWorkflowActionParameters</key>
2014
+ <dict>
2015
+ <key>UUID</key>
2016
+ <string>8E4B7B06-EC1B-417E-9179-CA3B6A37B4D9</string>
2017
+ <key>WFEvernoteNoteTitle</key>
2018
+ <dict>
2019
+ <key>Value</key>
2020
+ <dict>
2021
+ <key>attachmentsByRange</key>
2022
+ <dict>
2023
+ <key>{0, 1}</key>
2024
+ <dict>
2025
+ <key>Type</key>
2026
+ <string>Variable</string>
2027
+ <key>VariableName</key>
2028
+ <string>Note Title</string>
2029
+ </dict>
2030
+ </dict>
2031
+ <key>string</key>
2032
+ <string></string>
2033
+ </dict>
2034
+ <key>WFSerializationType</key>
2035
+ <string>WFTextTokenString</string>
2036
+ </dict>
2037
+ <key>WFEvernoteNotebook</key>
2038
+ <dict>
2039
+ <key>Value</key>
2040
+ <dict>
2041
+ <key>Type</key>
2042
+ <string>Variable</string>
2043
+ <key>VariableName</key>
2044
+ <string>Chosen Notebook</string>
2045
+ </dict>
2046
+ <key>WFSerializationType</key>
2047
+ <string>WFTextTokenAttachment</string>
2048
+ </dict>
2049
+ <key>WFEvernoteTags</key>
2050
+ <dict>
2051
+ <key>Value</key>
2052
+ <dict>
2053
+ <key>OutputName</key>
2054
+ <string>Combined Text</string>
2055
+ <key>OutputUUID</key>
2056
+ <string>59B6F0C6-BA7C-409B-99AB-8B429320DC1E</string>
2057
+ <key>Type</key>
2058
+ <string>ActionOutput</string>
2059
+ </dict>
2060
+ <key>WFSerializationType</key>
2061
+ <string>WFTextTokenAttachment</string>
2062
+ </dict>
2063
+ </dict>
2064
+ </dict>
2065
+ <dict>
2066
+ <key>WFWorkflowActionIdentifier</key>
2067
+ <string>is.workflow.actions.setvariable</string>
2068
+ <key>WFWorkflowActionParameters</key>
2069
+ <dict>
2070
+ <key>WFVariableName</key>
2071
+ <string>Note</string>
2072
+ </dict>
2073
+ </dict>
2074
+ <dict>
2075
+ <key>WFWorkflowActionIdentifier</key>
2076
+ <string>is.workflow.actions.choosefrommenu</string>
2077
+ <key>WFWorkflowActionParameters</key>
2078
+ <dict>
2079
+ <key>GroupingIdentifier</key>
2080
+ <string>C14EE622-274B-4AFE-87AC-3B9D8AA36A6C</string>
2081
+ <key>UUID</key>
2082
+ <string>66264D4E-FE80-47A5-9D95-A35EBE5F0F5D</string>
2083
+ <key>WFControlFlowMode</key>
2084
+ <integer>2</integer>
2085
+ </dict>
2086
+ </dict>
2087
+ <dict>
2088
+ <key>WFWorkflowActionIdentifier</key>
2089
+ <string>is.workflow.actions.comment</string>
2090
+ <key>WFWorkflowActionParameters</key>
2091
+ <dict>
2092
+ <key>WFCommentActionText</key>
2093
+ <string>Ask user if they want to copy the public or private URL to open the note in Evernote</string>
2094
+ </dict>
2095
+ </dict>
2096
+ <dict>
2097
+ <key>WFWorkflowActionIdentifier</key>
2098
+ <string>is.workflow.actions.choosefrommenu</string>
2099
+ <key>WFWorkflowActionParameters</key>
2100
+ <dict>
2101
+ <key>GroupingIdentifier</key>
2102
+ <string>6CEC932F-3608-43D1-B9A9-A4A39406596B</string>
2103
+ <key>WFControlFlowMode</key>
2104
+ <integer>0</integer>
2105
+ <key>WFMenuItems</key>
2106
+ <array>
2107
+ <string>Yes, Copy</string>
2108
+ <string>No</string>
2109
+ </array>
2110
+ <key>WFMenuPrompt</key>
2111
+ <string>Copy Note Link?</string>
2112
+ </dict>
2113
+ </dict>
2114
+ <dict>
2115
+ <key>WFWorkflowActionIdentifier</key>
2116
+ <string>is.workflow.actions.choosefrommenu</string>
2117
+ <key>WFWorkflowActionParameters</key>
2118
+ <dict>
2119
+ <key>GroupingIdentifier</key>
2120
+ <string>6CEC932F-3608-43D1-B9A9-A4A39406596B</string>
2121
+ <key>WFControlFlowMode</key>
2122
+ <integer>1</integer>
2123
+ <key>WFMenuItemTitle</key>
2124
+ <string>Yes, Copy</string>
2125
+ </dict>
2126
+ </dict>
2127
+ <dict>
2128
+ <key>WFWorkflowActionIdentifier</key>
2129
+ <string>is.workflow.actions.getvariable</string>
2130
+ <key>WFWorkflowActionParameters</key>
2131
+ <dict>
2132
+ <key>WFVariable</key>
2133
+ <dict>
2134
+ <key>Value</key>
2135
+ <dict>
2136
+ <key>Type</key>
2137
+ <string>Variable</string>
2138
+ <key>VariableName</key>
2139
+ <string>Note</string>
2140
+ </dict>
2141
+ <key>WFSerializationType</key>
2142
+ <string>WFTextTokenAttachment</string>
2143
+ </dict>
2144
+ </dict>
2145
+ </dict>
2146
+ <dict>
2147
+ <key>WFWorkflowActionIdentifier</key>
2148
+ <string>is.workflow.actions.evernote.getlink</string>
2149
+ <key>WFWorkflowActionParameters</key>
2150
+ <dict>
2151
+ <key>WFEvernoteShareInAppLink</key>
2152
+ <dict>
2153
+ <key>Value</key>
2154
+ <dict>
2155
+ <key>Type</key>
2156
+ <string>Ask</string>
2157
+ </dict>
2158
+ <key>WFSerializationType</key>
2159
+ <string>WFTextTokenAttachment</string>
2160
+ </dict>
2161
+ </dict>
2162
+ </dict>
2163
+ <dict>
2164
+ <key>WFWorkflowActionIdentifier</key>
2165
+ <string>is.workflow.actions.setclipboard</string>
2166
+ <key>WFWorkflowActionParameters</key>
2167
+ <dict/>
2168
+ </dict>
2169
+ <dict>
2170
+ <key>WFWorkflowActionIdentifier</key>
2171
+ <string>is.workflow.actions.choosefrommenu</string>
2172
+ <key>WFWorkflowActionParameters</key>
2173
+ <dict>
2174
+ <key>GroupingIdentifier</key>
2175
+ <string>6CEC932F-3608-43D1-B9A9-A4A39406596B</string>
2176
+ <key>WFControlFlowMode</key>
2177
+ <integer>1</integer>
2178
+ <key>WFMenuItemTitle</key>
2179
+ <string>No</string>
2180
+ </dict>
2181
+ </dict>
2182
+ <dict>
2183
+ <key>WFWorkflowActionIdentifier</key>
2184
+ <string>is.workflow.actions.exit</string>
2185
+ <key>WFWorkflowActionParameters</key>
2186
+ <dict/>
2187
+ </dict>
2188
+ <dict>
2189
+ <key>WFWorkflowActionIdentifier</key>
2190
+ <string>is.workflow.actions.choosefrommenu</string>
2191
+ <key>WFWorkflowActionParameters</key>
2192
+ <dict>
2193
+ <key>GroupingIdentifier</key>
2194
+ <string>6CEC932F-3608-43D1-B9A9-A4A39406596B</string>
2195
+ <key>WFControlFlowMode</key>
2196
+ <integer>2</integer>
2197
+ </dict>
2198
+ </dict>
2199
+ </array>
2200
+ <key>WFWorkflowClientRelease</key>
2201
+ <string>2.2</string>
2202
+ <key>WFWorkflowClientVersion</key>
2203
+ <string>770</string>
2204
+ <key>WFWorkflowIcon</key>
2205
+ <dict>
2206
+ <key>WFWorkflowIconGlyphNumber</key>
2207
+ <integer>59717</integer>
2208
+ <key>WFWorkflowIconImageData</key>
2209
+ <data>
2210
+ </data>
2211
+ <key>WFWorkflowIconStartColor</key>
2212
+ <integer>4292093695</integer>
2213
+ </dict>
2214
+ <key>WFWorkflowImportQuestions</key>
2215
+ <array/>
2216
+ <key>WFWorkflowInputContentItemClasses</key>
2217
+ <array>
2218
+ <string>WFSafariWebPageContentItem</string>
2219
+ </array>
2220
+ <key>WFWorkflowMinimumClientVersion</key>
2221
+ <integer>411</integer>
2222
+ <key>WFWorkflowTypes</key>
2223
+ <array>
2224
+ <string>WatchKit</string>
2225
+ <string>ActionExtension</string>
2226
+ </array>
2227
+ </dict>
2228
+ </plist>