-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_TextWith - Superhuman Texting on the App Store.html
1344 lines (1191 loc) · 98.2 KB
/
_TextWith - Superhuman Texting on the App Store.html
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
<!DOCTYPE html>
<!-- saved from url=(0070)https://apps.apple.com/us/app/textwith-superhuman-texting/id1430365839 -->
<html lang="en-us" prefix="og: http://ogp.me/ns#" xml:lang="en-us"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover">
<meta name="web-experience-app/config/environment" content="%7B%22appVersion%22%3A1%2C%22modulePrefix%22%3A%22web-experience-app%22%2C%22environment%22%3A%22production%22%2C%22rootURL%22%3A%22/%22%2C%22locationType%22%3A%22history-hash-router-scroll%22%2C%22historySupportMiddleware%22%3Atrue%2C%22contentSecurityPolicyMeta%22%3Atrue%2C%22contentSecurityPolicy%22%3A%7B%22default-src%22%3A%5B%22%27none%27%22%5D%2C%22img-src%22%3A%5B%22%27self%27%22%2C%22http%3A//*.mzstatic.com%22%2C%22*.mzstatic.com%22%2C%22*.apple.com%22%2C%22*.googleusercontent.com%22%2C%22data%3A%22%5D%2C%22style-src%22%3A%5B%22%27self%27%22%2C%22%27unsafe-inline%27%22%2C%22*.apple.com%22%5D%2C%22font-src%22%3A%5B%22%27self%27%22%2C%22http%3A//*.apple.com%22%2C%22https%3A//*.apple.com%22%5D%2C%22media-src%22%3A%5B%22%27self%27%22%2C%22blob%3A%22%2C%22http%3A//*%22%2C%22https%3A//*%22%5D%2C%22connect-src%22%3A%5B%22%27self%27%22%2C%22*.apple.com%22%2C%22https%3A//*.mzstatic.com%22%2C%22*.mzstatic.com%22%5D%2C%22script-src%22%3A%5B%22%27self%27%22%2C%22%27unsafe-inline%27%22%2C%22%27unsafe-eval%27%22%2C%22*.apple.com%22%5D%2C%22frame-src%22%3A%5B%22%27self%27%22%2C%22*.apple.com%22%2C%22itmss%3A%22%2C%22itms-appss%3A%22%2C%22itms-bookss%3A%22%2C%22itms-itunesus%3A%22%2C%22itms-messagess%3A%22%2C%22itms-podcasts%3A%22%2C%22itms-watchs%3A%22%2C%22macappstores%3A%22%2C%22musics%3A%22%2C%22apple-musics%3A%22%2C%22podcasts%3A%22%2C%22videos%3A%22%5D%7D%2C%22EmberENV%22%3A%7B%22FEATURES%22%3A%7B%7D%2C%22EXTEND_PROTOTYPES%22%3A%7B%22Date%22%3Afalse%7D%7D%2C%22APP%22%3A%7B%22PROGRESS_BAR_DELAY%22%3A3000%2C%22name%22%3A%22web-experience-app%22%2C%22version%22%3A%221950.3.0+33633137%22%7D%2C%22MEDIA_API%22%3A%7B%22teamId%22%3A%22AMPWebPlay%22%2C%22keyId%22%3A%22WebPlayKid%22%2C%22privateKeyPath%22%3A%22ssl/webplayer.p8%22%2C%22token%22%3A%22eyJhbGciOiJFUzI1NiIsInR5cCI6IkpXVCIsImtpZCI6IldlYlBsYXlLaWQifQ.eyJpc3MiOiJBTVBXZWJQbGF5IiwiaWF0IjoxNTc2MTg2OTY5LCJleHAiOjE1OTE3Mzg5Njl9.1m6jw6vvmsjmk4HZd6uA7-OQ4kUjLlIePDIknuOeai4hQkD_W_jlellXQOgaoSNQvSJlthDEt3f54EYTq0H3Lw%22%7D%2C%22routerScroll%22%3A%7B%22targetElement%22%3A%22%23ember-app%22%7D%2C%22i18n%22%3A%7B%22defaultLocale%22%3A%22en-gb%22%2C%22useDevLoc%22%3Afalse%2C%22pathToLocales%22%3A%22dist/locales%22%7D%2C%22moment%22%3A%7B%22includeLocales%22%3Atrue%2C%22includeTimezone%22%3A%22subset%22%7D%2C%22browserify%22%3A%7B%22transform%22%3A%5B%5B%22babelify%22%2C%7B%22presets%22%3A%5B%22env%22%5D%2C%22global%22%3Atrue%2C%22only%22%3A%7B%7D%7D%5D%5D%7D%2C%22API%22%3A%7B%22AppHost%22%3A%22https%3A//amp-api.apps.apple.com%22%2C%22MZStore%22%3A%22https%3A//itunes.apple.com%22%2C%22UTSHost%22%3A%22https%3A//tv.apple.com/api/uts/preview%22%2C%22PodcastHost%22%3A%22https%3A//amp-api.podcasts.apple.com%22%2C%22StorePlatform%22%3A%22https%3A//uclient-api.itunes.apple.com/WebObjects/MZStorePlatform.woa/wa%22%2C%22BookHost%22%3A%22https%3A//amp-api.books.apple.com%22%2C%22globalElementsPath%22%3A%22/global-elements%22%2C%22videoLocalizationPath%22%3A%22/global/ac_media_player/scripts/ac_media_languages/%22%2C%22appleAppsDomain%22%3A%22apps.apple.com%22%2C%22applePodcastsDomain%22%3A%22podcasts.apple.com%22%2C%22appleBooksDomain%22%3A%22books.apple.com%22%2C%22appleMusicDomain%22%3A%22music.apple.com%22%2C%22appleTvDomain%22%3A%22tv.apple.com%22%2C%22obcMetadataBaseUrl%22%3A%22/api/books-metadata%22%7D%2C%22fastboot%22%3A%7B%22hostWhitelist%22%3A%5B%7B%7D%5D%7D%2C%22ember-a11y-testing%22%3A%7B%22componentOptions%22%3A%7B%22turnAuditOff%22%3Atrue%2C%22axeOptions%22%3A%7B%22rules%22%3A%7B%22color-contrast%22%3A%7B%22enabled%22%3Afalse%7D%7D%7D%7D%7D%2C%22ember-short-number%22%3A%7B%22locales%22%3A%5B%22ar-sa%22%2C%22ca-es%22%2C%22cs-cz%22%2C%22da-dk%22%2C%22de-ch%22%2C%22de-de%22%2C%22el-gr%22%2C%22en-au%22%2C%22en-ca%22%2C%22en-gb%22%2C%22en-us%22%2C%22es-419%22%2C%22es-es%22%2C%22es-mx%22%2C%22es-xl%22%2C%22et-ee%22%2C%22fi-fi%22%2C%22fr-ca%22%2C%22fr-fr%22%2C%22hi-in%22%2C%22hr-hr%22%2C%22hu-hu%22%2C%22id-id%22%2C%22is-is%22%2C%22it-it%22%2C%22iw-il%22%2C%22ja-jp%22%2C%22ko-kr%22%2C%22lt-lt%22%2C%22lv-lv%22%2C%22ms-my%22%2C%22nl-nl%22%2C%22no-no%22%2C%22no-nb%22%2C%22nb-no%22%2C%22pl-pl%22%2C%22pt-br%22%2C%22pt-pt%22%2C%22ro-ro%22%2C%22ru-ru%22%2C%22sk-sk%22%2C%22sv-se%22%2C%22th-th%22%2C%22tr-tr%22%2C%22uk-ua%22%2C%22vi-vi%22%2C%22vi-vn%22%2C%22zh-cn%22%2C%22zh-hk%22%2C%22zh-tw%22%2C%22ca%22%2C%22cs%22%2C%22da%22%2C%22de%22%2C%22el%22%2C%22en%22%2C%22es%22%2C%22fi%22%2C%22fr%22%2C%22hi%22%2C%22hr%22%2C%22hu%22%2C%22id%22%2C%22is%22%2C%22it%22%2C%22ja%22%2C%22ko%22%2C%22lt%22%2C%22lv%22%2C%22ms%22%2C%22nb%22%2C%22nl%22%2C%22no%22%2C%22pl%22%2C%22pt%22%2C%22ro%22%2C%22ru%22%2C%22sk%22%2C%22sv%22%2C%22th%22%2C%22tr%22%2C%22uk%22%2C%22vi%22%2C%22zh%22%5D%7D%2C%22METRICS%22%3A%7B%22isEnabled%22%3Atrue%2C%22autoTrackingEnabled%22%3Atrue%2C%22topic%22%3A%22xp_amp_web_exp%22%2C%22appName%22%3A%22web-experience-app%22%2C%22metricsUrl%22%3A%22https%3A//xp.apple.com/report%22%2C%22compoundSeparator%22%3A%22_%22%7D%2C%22contentSecurityPolicyHeader%22%3A%22Content-Security-Policy-Report-Only%22%2C%22exportApplicationGlobal%22%3Afalse%7D">
<meta http-equiv="Content-Security-Policy" content="default-src 'none'; img-src 'self' http://*.mzstatic.com *.mzstatic.com *.apple.com *.googleusercontent.com data:; style-src 'self' 'unsafe-inline' *.apple.com; font-src 'self' http://*.apple.com https://*.apple.com; media-src 'self' blob: http://* https://*; connect-src 'self' *.apple.com https://*.mzstatic.com *.mzstatic.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' *.apple.com; frame-src 'self' *.apple.com itmss: itms-appss: itms-bookss: itms-itunesus: itms-messagess: itms-podcasts: itms-watchs: macappstores: musics: apple-musics: podcasts: videos:; ">
<!-- EMBER_CLI_FASTBOOT_TITLE --><link rel="stylesheet" name="fonts" href="./_TextWith - Superhuman Texting on the App Store_files/fonts" as="style" onload="undefined">
<link rel="stylesheet" type="text/css" href="./_TextWith - Superhuman Texting on the App Store_files/ac-global-nav.8770416769877a44e0c3f4514ac670e0.css" data-global-elements-nav-styles="">
<link rel="stylesheet" type="text/css" href="./_TextWith - Superhuman Texting on the App Store_files/ac-global-footer.dba56f91fcf68922ffce3b03d3909d3b.css" data-global-elements-footer-styles="">
<meta name="version" content="1950.3.0">
<link integrity="" rel="stylesheet" href="./_TextWith - Superhuman Texting on the App Store_files/web-experience-app-1a56e26295b1abb1ef73fbe7722e5547.css" data-rtl="/assets/web-experience-rtl-app-23a8e783ce1f2af7b431e35129ca7385.css">
<meta name="ember-cli-head-start" content=""><title>TextWith - Superhuman Texting on the App Store</title>
<link rel="canonical" href="https://apps.apple.com/us/app/textwith-superhuman-texting/id1430365839">
<meta name="description" content="Read reviews, compare customer ratings, see screenshots, and learn more about TextWith - Superhuman Texting. Download TextWith - Superhuman Texting and enjoy it on your iPhone, iPad, and iPod touch." id="ember95" class="ember-view">
</meta>
<meta name="keywords" content="TextWith - Superhuman Texting, Socialscope, Productivity, ios apps, app, appstore, app store, iphone, ipad, ipod touch, itouch, itunes" id="ember97" class="ember-view">
</meta>
<meta property="og:title" content="TextWith - Superhuman Texting" id="ember99" class="ember-view">
</meta>
<meta property="og:description" content="Business texting!
We rebuilt texting from the ground up to help you get stuff done. Use your TextWith phone number to keep your work and personal messages separate. Great for sales, customer support, operations, recruiting, marketing and planning events.
Send and receive text messages with cust…" id="ember101" class="ember-view">
</meta>
<meta property="og:site_name" content="App Store" id="ember103" class="ember-view">
</meta>
<meta property="og:url" content="https://apps.apple.com/us/app/textwith-superhuman-texting/id1430365839" id="ember105" class="ember-view">
</meta>
<meta property="og:image" content="https://is3-ssl.mzstatic.com/image/thumb/Purple113/v4/68/4e/7c/684e7c22-9bb9-58eb-161d-c965ff437240/AppIcon.prod-0-0-1x_U007emarketing-0-0-0-5-0-0-85-220.png/1200x630wa.png" id="ember107" class="ember-view">
</meta>
<meta property="og:image:alt" content="TextWith - Superhuman Texting on the App Store" id="ember109" class="ember-view">
</meta>
<meta property="og:image:secure_url" content="https://is3-ssl.mzstatic.com/image/thumb/Purple113/v4/68/4e/7c/684e7c22-9bb9-58eb-161d-c965ff437240/AppIcon.prod-0-0-1x_U007emarketing-0-0-0-5-0-0-85-220.png/1200x630wa.png" id="ember111" class="ember-view">
</meta>
<meta property="og:image:type" content="image/png" id="ember113" class="ember-view">
</meta>
<meta property="og:image:width" content="1200" id="ember115" class="ember-view">
</meta>
<meta property="og:image:height" content="630" id="ember117" class="ember-view">
</meta>
<meta property="og:type" content="website" id="ember119" class="ember-view">
</meta>
<meta property="og:locale" content="en_US" id="ember121" class="ember-view">
</meta>
<meta property="fb:app_id" content="116556461780510" id="ember123" class="ember-view">
</meta>
<meta name="twitter:title" content="TextWith - Superhuman Texting" id="ember125" class="ember-view">
</meta>
<meta name="twitter:description" content="Business texting!
We rebuilt texting from the ground up to help you get stuff done. Use your TextWith phone number to keep your work and personal messages separate. Great for sales, customer support, operations, recruiting, marketing and planning events.
Send and receive text messages with cust…" id="ember127" class="ember-view">
</meta>
<meta name="twitter:site" content="@AppStore" id="ember129" class="ember-view">
</meta>
<meta name="twitter:domain" content="AppStore" id="ember131" class="ember-view">
</meta>
<meta name="twitter:image" content="https://is3-ssl.mzstatic.com/image/thumb/Purple113/v4/68/4e/7c/684e7c22-9bb9-58eb-161d-c965ff437240/AppIcon.prod-0-0-1x_U007emarketing-0-0-0-5-0-0-85-220.png/600x600wa.png" id="ember133" class="ember-view">
</meta>
<meta name="twitter:image:alt" content="TextWith - Superhuman Texting on the App Store" id="ember135" class="ember-view">
</meta>
<meta name="twitter:card" content="summary_large_image" id="ember137" class="ember-view">
</meta>
<meta name="apple-itunes-app" content="app-id=375380948, app-argument=https://apps.apple.com/us/app/textwith-superhuman-texting/id1430365839" id="ember139" class="ember-view">
</meta>
<script name="schema:software-application" id="ember141" class="ember-view" type="application/ld+json">{"@context":"http://schema.org","@type":"SoftwareApplication","name":"TextWith - Superhuman Texting","description":"Business texting!\n\nWe rebuilt texting from the ground up to help you get stuff done. Use your TextWith phone number to keep your work and personal messages separate. Great for sales, customer support, operations, recruiting, marketing and planning events. \n\nSend and receive text messages with customers, contractors, and partners. Best of all, they won't need to install anything!\n\nTextWith comes with advanced features that make you feel superhuman. Follow-up Reminders, Scheduled Messages, and Click Statuses. To name but a few.\n\nFeatures:\n* SEND LATER - Schedule your messages to send when you know your recipients will read them.\n* TEMPLATES - Write the best text every time without manual copying and pasting. With TextWith templates, the right message for every occasion is one click away.
\n* TEXT MARKETING CAMPAIGNS - Automate the delivery of personalized messages. \n* TEXTING ASSISTANT - Keeps you on track reminding you to follow-up so you never forget to reply. \n* TEAM ENABLED - Team collaboration means you’ll never miss a beat!\n* MANAGE NOTIFICATIONS - Mark yourself available when you want to be notified a new message comes in with Push Notifications and unavailable when you are away so you are not disturbed when you’re not working.\n* LISTS + PIPELINES - Organize contacts into lists to track them through your sales pipeline, on-boarding or customer support process. \n* ARCHIVE MESSAGES - Archive completed chats to keep your inbox clear. \n* CLICK TRACKING - Know when someone clicks on the links you sent them. \nCRM - Keep information about your customers, prospects, and partners up to date and always send messages with the most up to date context.\n\nHere is how businesses are using TextWith:\n\nSALES\n* Set reminders to follow up with each lead\n* Organize contacts into lists to track them through your sales pipeline.\n* A shared inbox where your team can share messages and replies\n\nCUSTOMER SUPPORT\n* Triage chats by assigning them to yourself other people. Get notifications for the chats most relevant to you\n* Templates for commonly used messages, including text, photos, links, and even the first name of the contact\n* Set scheduled message and never forget to follow up with a customer\n* See when team members reply to a chat\n* Add and share private notes about each contact\n\nMARKETING\n* Create campaigns to send private, personalized text messages.\n* Personalize messages with merge tokens like \"first name\"\n* Schedule messages to be sent at a specific date and time","screenshot":["https://is3-ssl.mzstatic.com/image/thumb/Purple113/v4/46/c5/35/46c53548-754b-397a-6c46-b4b59f994962/pr_source.png/300x0w.jpg","https://is4-ssl.mzstatic.com/image/thumb/Purple123/v4/46/4f/66/464f6663-b3db-61d9-ed34-575e3cde00a1/pr_source.png/300x0w.jpg","https://is4-ssl.mzstatic.com/image/thumb/Purple123/v4/36/ff/3f/36ff3fa4-8a13-1bc6-e9eb-4a2e1d69df8d/pr_source.png/300x0w.jpg","https://is2-ssl.mzstatic.com/image/thumb/Purple113/v4/4c/1f/15/4c1f1581-0eea-04f4-a44b-1d5e82301a08/pr_source.png/300x0w.jpg","https://is2-ssl.mzstatic.com/image/thumb/Purple113/v4/90/59/9b/90599bc1-f895-2488-861f-d6e5ade71270/pr_source.png/300x0w.jpg","https://is4-ssl.mzstatic.com/image/thumb/Purple123/v4/4b/0a/d9/4b0ad99d-11b5-5b02-5018-377ad7283e34/pr_source.png/300x0w.jpg","https://is3-ssl.mzstatic.com/image/thumb/Purple123/v4/14/5d/4e/145d4e31-c9af-51f1-479b-839609585b11/pr_source.png/300x0w.jpg","https://is5-ssl.mzstatic.com/image/thumb/Purple113/v4/60/7a/73/607a73ac-1caa-f722-8097-cab45b8c39d5/pr_source.png/300x0w.jpg"],"image":"https://is3-ssl.mzstatic.com/image/thumb/Purple113/v4/68/4e/7c/684e7c22-9bb9-58eb-161d-c965ff437240/AppIcon.prod-0-0-1x_U007emarketing-0-0-0-5-0-0-85-220.png/1200x630wa.png","applicationCategory":"Productivity","datePublished":"Aug 18, 2019","operatingSystem":"Requires iOS 9.0 or later. Compatible with iPhone, iPad, and iPod touch.","author":{"@type":"Person","name":"Socialscope","url":"https://apps.apple.com/us/developer/socialscope/id995234956"},"aggregateRating":{"@type":"AggregateRating","ratingValue":5,"reviewCount":4},"offers":{"@type":"Offer","category":"free","price":0,"priceCurrency":null}}
</script>
<meta name="apple:content_id" content="1430365839" id="ember143" class="ember-view">
</meta>
<meta name="ember-cli-head-end" content="">
</head>
<body class="has-js ember-application has-touch"><aside id="ac-gn-segmentbar" class="ac-gn-segmentbar" lang="en-US" dir="ltr" data-strings="{ 'exit': 'Exit', 'view': '{%STOREFRONT%} Store Home', 'segments': { 'smb': 'Business Store Home', 'eduInd': 'Education Store Home', 'other': 'Store Home' } }">
</aside><input type="checkbox" id="ac-gn-menustate" class="ac-gn-menustate"><nav id="ac-globalnav" class="no-js" role="navigation" aria-label="Global" data-hires="false" data-analytics-region="global nav" lang="en-US" dir="ltr" data-store-locale="us" data-store-api="//www.apple.com/[storefront]/shop/bag/status" data-search-locale="en_US" data-search-api="//www.apple.com/search-services/suggestions/">
<div class="ac-gn-content">
<ul class="ac-gn-header">
<li class="ac-gn-item ac-gn-menuicon">
<label class="ac-gn-menuicon-label" for="ac-gn-menustate" aria-hidden="true">
<span class="ac-gn-menuicon-bread ac-gn-menuicon-bread-top">
<span class="ac-gn-menuicon-bread-crust ac-gn-menuicon-bread-crust-top"></span>
</span>
<span class="ac-gn-menuicon-bread ac-gn-menuicon-bread-bottom">
<span class="ac-gn-menuicon-bread-crust ac-gn-menuicon-bread-crust-bottom"></span>
</span>
</label>
<a href="https://apps.apple.com/us/app/textwith-superhuman-texting/id1430365839#ac-gn-menustate" role="button" class="ac-gn-menuanchor ac-gn-menuanchor-open" id="ac-gn-menuanchor-open">
<span class="ac-gn-menuanchor-label">Global Nav Open Menu</span>
</a>
<a href="https://apps.apple.com/us/app/textwith-superhuman-texting/id1430365839#" role="button" class="ac-gn-menuanchor ac-gn-menuanchor-close" id="ac-gn-menuanchor-close">
<span class="ac-gn-menuanchor-label">Global Nav Close Menu</span>
</a>
</li>
<li class="ac-gn-item ac-gn-apple">
<a class="ac-gn-link ac-gn-link-apple" href="https://www.apple.com/" data-analytics-title="apple home" id="ac-gn-firstfocus-small">
<span class="ac-gn-link-text">Apple</span>
</a>
</li>
<li class="ac-gn-item ac-gn-bag ac-gn-bag-small" id="ac-gn-bag-small">
<a class="ac-gn-link ac-gn-link-bag" href="https://www.apple.com/us/shop/goto/bag" data-analytics-title="bag" data-analytics-click="bag" aria-label="Shopping Bag" data-string-badge="Shopping Bag with Items">
<span class="ac-gn-link-text">Shopping Bag</span>
<span class="ac-gn-bag-badge"></span>
</a>
<span class="ac-gn-bagview-caret ac-gn-bagview-caret-large"></span>
</li>
</ul>
<div class="ac-gn-search-placeholder-container" role="search">
<div class="ac-gn-search ac-gn-search-small">
<a id="ac-gn-link-search-small" class="ac-gn-link" href="https://www.apple.com/us/search" data-analytics-title="search" data-analytics-click="search" data-analytics-intrapage-link="" aria-label="Search apple.com">
<div class="ac-gn-search-placeholder-bar">
<div class="ac-gn-search-placeholder-input">
<div class="ac-gn-search-placeholder-input-text" aria-hidden="true">
<div class="ac-gn-link-search ac-gn-search-placeholder-input-icon"></div>
<span class="ac-gn-search-placeholder">Search apple.com</span>
</div>
</div>
<div class="ac-gn-searchview-close ac-gn-searchview-close-small ac-gn-search-placeholder-searchview-close">
<span class="ac-gn-searchview-close-cancel" aria-hidden="true">Cancel</span>
</div>
</div>
</a>
</div>
</div>
<ul class="ac-gn-list">
<li class="ac-gn-item ac-gn-apple">
<a class="ac-gn-link ac-gn-link-apple" href="https://www.apple.com/" data-analytics-title="apple home" id="ac-gn-firstfocus">
<span class="ac-gn-link-text">Apple</span>
</a>
</li>
<li class="ac-gn-item ac-gn-item-menu ac-gn-mac">
<a class="ac-gn-link ac-gn-link-mac" href="https://www.apple.com/mac/" data-analytics-title="mac">
<span class="ac-gn-link-text">Mac</span>
</a>
</li>
<li class="ac-gn-item ac-gn-item-menu ac-gn-ipad">
<a class="ac-gn-link ac-gn-link-ipad" href="https://www.apple.com/ipad/" data-analytics-title="ipad">
<span class="ac-gn-link-text">iPad</span>
</a>
</li>
<li class="ac-gn-item ac-gn-item-menu ac-gn-iphone">
<a class="ac-gn-link ac-gn-link-iphone" href="https://www.apple.com/iphone/" data-analytics-title="iphone">
<span class="ac-gn-link-text">iPhone</span>
</a>
</li>
<li class="ac-gn-item ac-gn-item-menu ac-gn-watch">
<a class="ac-gn-link ac-gn-link-watch" href="https://www.apple.com/watch/" data-analytics-title="watch">
<span class="ac-gn-link-text">Watch</span>
</a>
</li>
<li class="ac-gn-item ac-gn-item-menu ac-gn-tv">
<a class="ac-gn-link ac-gn-link-tv" href="https://www.apple.com/tv/" data-analytics-title="tv">
<span class="ac-gn-link-text">TV</span>
</a>
</li>
<li class="ac-gn-item ac-gn-item-menu ac-gn-music">
<a class="ac-gn-link ac-gn-link-music" href="https://www.apple.com/music/" data-analytics-title="music">
<span class="ac-gn-link-text">Music</span>
</a>
</li>
<li class="ac-gn-item ac-gn-item-menu ac-gn-support">
<a class="ac-gn-link ac-gn-link-support" href="https://support.apple.com/" data-analytics-title="support">
<span class="ac-gn-link-text">Support</span>
</a>
</li>
<li class="ac-gn-item ac-gn-item-menu ac-gn-search" role="search">
<a id="ac-gn-link-search" class="ac-gn-link ac-gn-link-search" href="https://www.apple.com/us/search" data-analytics-title="search" data-analytics-click="search" data-analytics-intrapage-link="" aria-label="Search apple.com"></a>
</li>
<li class="ac-gn-item ac-gn-bag" id="ac-gn-bag">
<a class="ac-gn-link ac-gn-link-bag" href="https://www.apple.com/us/shop/goto/bag" data-analytics-title="bag" data-analytics-click="bag" aria-label="Shopping Bag" data-string-badge="Shopping Bag with Items">
<span class="ac-gn-link-text">Shopping Bag</span>
<span class="ac-gn-bag-badge" aria-hidden="true"></span>
</a>
<span class="ac-gn-bagview-caret ac-gn-bagview-caret-large"></span>
</li>
</ul>
<aside id="ac-gn-searchview" class="ac-gn-searchview" role="search" data-analytics-region="search">
<div class="ac-gn-searchview-content">
<div class="ac-gn-searchview-bar">
<div class="ac-gn-searchview-bar-wrapper">
<form id="ac-gn-searchform" class="ac-gn-searchform" action="https://www.apple.com/us/search" method="get">
<div class="ac-gn-searchform-wrapper">
<input id="ac-gn-searchform-input" class="ac-gn-searchform-input" type="text" aria-label="Search apple.com" placeholder="Search apple.com" autocorrect="off" autocapitalize="off" autocomplete="off" spellcheck="false" role="combobox" aria-autocomplete="list" aria-expanded="true" aria-owns="quicklinks suggestions">
<input id="ac-gn-searchform-src" type="hidden" name="src" value="itunes_serp">
<button id="ac-gn-searchform-submit" class="ac-gn-searchform-submit" type="submit" disabled="" aria-label="Submit Search"></button>
<button id="ac-gn-searchform-reset" class="ac-gn-searchform-reset" type="reset" disabled="" aria-label="Clear Search">
<span class="ac-gn-searchform-reset-background"></span>
</button>
</div>
</form>
<button id="ac-gn-searchview-close-small" class="ac-gn-searchview-close ac-gn-searchview-close-small" aria-label="Cancel Search">
<span class="ac-gn-searchview-close-cancel" aria-hidden="true">
Cancel
</span>
</button>
</div>
</div>
<aside id="ac-gn-searchresults" class="ac-gn-searchresults" data-string-quicklinks="Quick Links" data-string-suggestions="Suggested Searches" data-string-noresults=""></aside>
</div>
<button id="ac-gn-searchview-close" class="ac-gn-searchview-close" aria-label="Cancel Search">
<span class="ac-gn-searchview-close-wrapper">
<span class="ac-gn-searchview-close-left"></span>
<span class="ac-gn-searchview-close-right"></span>
</span>
</button>
</aside>
<aside class="ac-gn-bagview" data-analytics-region="bag">
<div class="ac-gn-bagview-scrim">
<span class="ac-gn-bagview-caret ac-gn-bagview-caret-small"></span>
</div>
<div class="ac-gn-bagview-content" id="ac-gn-bagview-content">
</div>
</aside>
</div>
</nav><div class="ac-gn-blur"></div><div id="ac-gn-curtain" class="ac-gn-curtain"></div><div id="ac-gn-placeholder" class="ac-nav-placeholder"></div>
<div id="ember-app">
<div class="ember-view" id="ember91"><!---->
<!---->
<!---->
<main class="selfclear is-app-theme">
<style id="ember144" class="ember-view"><!----></style>
<!---->
<div id="ember145" class="focusing-outlet ember-view"><div id="ember147" class="focusing-outlet ember-view">
<input id="localnav-menustate" class="localnav-menustate" type="checkbox">
<nav id="localnav" class="we-localnav localnav we-localnav--app-store localnav-sticking" role="navigation" data-sticky="">
<div class="localnav-wrapper">
<div class="localnav-background we-localnav__background"></div>
<div class="localnav-content we-localnav__content">
<div class="localnav-title we-localnav__title">
<a href="https://www.apple.com/ios/app-store/" data-we-link-to-exclude=""><span class="we-localnav__title__product" data-test-we-localnav-store-title="">App Store</span></a> <span class="we-localnav__title__qualifier" data-test-we-localnav-preview-title="">Preview</span>
</div>
<div class="localnav-menu we-localnav__menu we-localnav__menu--app">
<div class="localnav-actions we-localnav__actions">
<!---->
</div>
</div>
</div>
</div>
</nav>
<span class="we-localnav__shim" aria-hidden="true"></span>
<label id="localnav-curtain" for="localnav-menustate"></label>
<div id="ember150" class="animation-wrapper is-visible ember-view">
<!---->
<div id="ember151" class="ember-view"><div class="l-content-width we-banner" role="alert">
<p class="we-banner__copy">This app is available only on the App Store for iPhone and iPad.</p>
</div>
</div>
<div id="ember152" class="ember-view"><section id="ember153" class="l-content-width section section--hero product-hero ember-view"><div class="l-row">
<div class="product-hero__media l-column small-5 medium-4 large-3 small-valign-top">
<picture id="ember154" class="we-artwork ember-view product-hero__artwork we-artwork--fullwidth we-artwork--ios-app-icon">
<source class="we-artwork__source" srcset="https://is3-ssl.mzstatic.com/image/thumb/Purple113/v4/68/4e/7c/684e7c22-9bb9-58eb-161d-c965ff437240/AppIcon.prod-0-0-1x_U007emarketing-0-0-0-5-0-0-85-220.png/230x0w.png 1x,https://is3-ssl.mzstatic.com/image/thumb/Purple113/v4/68/4e/7c/684e7c22-9bb9-58eb-161d-c965ff437240/AppIcon.prod-0-0-1x_U007emarketing-0-0-0-5-0-0-85-220.png/460x0w.png 2x,https://is3-ssl.mzstatic.com/image/thumb/Purple113/v4/68/4e/7c/684e7c22-9bb9-58eb-161d-c965ff437240/AppIcon.prod-0-0-1x_U007emarketing-0-0-0-5-0-0-85-220.png/690x0w.png 3x" media="(min-width: 1069px)">
<!---->
<source class="we-artwork__source" srcset="https://is3-ssl.mzstatic.com/image/thumb/Purple113/v4/68/4e/7c/684e7c22-9bb9-58eb-161d-c965ff437240/AppIcon.prod-0-0-1x_U007emarketing-0-0-0-5-0-0-85-220.png/217x0w.png 1x,https://is3-ssl.mzstatic.com/image/thumb/Purple113/v4/68/4e/7c/684e7c22-9bb9-58eb-161d-c965ff437240/AppIcon.prod-0-0-1x_U007emarketing-0-0-0-5-0-0-85-220.png/434x0w.png 2x,https://is3-ssl.mzstatic.com/image/thumb/Purple113/v4/68/4e/7c/684e7c22-9bb9-58eb-161d-c965ff437240/AppIcon.prod-0-0-1x_U007emarketing-0-0-0-5-0-0-85-220.png/651x0w.png 3x" media="(min-width: 736px)">
<!---->
<source class="we-artwork__source" srcset="https://is3-ssl.mzstatic.com/image/thumb/Purple113/v4/68/4e/7c/684e7c22-9bb9-58eb-161d-c965ff437240/AppIcon.prod-0-0-1x_U007emarketing-0-0-0-5-0-0-85-220.png/246x0w.png 1x,https://is3-ssl.mzstatic.com/image/thumb/Purple113/v4/68/4e/7c/684e7c22-9bb9-58eb-161d-c965ff437240/AppIcon.prod-0-0-1x_U007emarketing-0-0-0-5-0-0-85-220.png/492x0w.png 2x,https://is3-ssl.mzstatic.com/image/thumb/Purple113/v4/68/4e/7c/684e7c22-9bb9-58eb-161d-c965ff437240/AppIcon.prod-0-0-1x_U007emarketing-0-0-0-5-0-0-85-220.png/738x0w.png 3x">
<img class="we-artwork__image ember154" src="./_TextWith - Superhuman Texting on the App Store_files/246x0w.png" style="" alt="" height="246" width="246">
<style>
.ember154, #ember154::before {
width: 246px;
height: 246px;
}
.ember154::before {
padding-top: 100%;
}
@media (min-width: 736px) {
.ember154, #ember154::before {
width: 217px;
height: 217px;
}
.ember154::before {
padding-top: 100%;
}
}
@media (min-width: 1069px) {
.ember154, #ember154::before {
width: 230px;
height: 230px;
}
.ember154::before {
padding-top: 100%;
}
}
</style>
</picture>
</div>
<div class="l-column small-7 medium-8 large-9 small-valign-top">
<header class="product-header app-header product-header--padded-start" role="banner">
<!---->
<h1 class="product-header__title app-header__title">
TextWith - Superhuman Texting
<span class="badge badge--product-title">4+</span>
</h1>
<h2 class="product-header__subtitle app-header__subtitle">Business Text Messaging</h2>
<h2 class="product-header__identity app-header__identity">
<a href="https://apps.apple.com/us/developer/socialscope/id995234956" class="link" data-metrics-click="{"actionDetails":{"type":"developer"},"actionType":"navigate","actionUrl":"https://apps.apple.com/us/developer/socialscope/id995234956","targetType":"link","targetId":"995234956"}" dir="auto">
Socialscope
</a>
</h2>
<ul class="product-header__list app-header__list">
<!---->
<li class="product-header__list__item app-header__list__item--user-rating">
<ul class="inline-list inline-list--mobile-compact">
<li class="inline-list__item">
<figure aria-label="5 out of 5" id="ember158" class="we-star-rating ember-view"><span class="we-star-rating-stars-outlines">
<span class="we-star-rating-stars we-star-rating-stars-5"></span>
</span>
<figcaption class="we-rating-count star-rating__count">5.0, 4 Ratings</figcaption>
</figure>
</li>
</ul>
</li>
</ul>
<ul class="product-header__list app-header__list">
<!---->
<li class="product-header__list__item">
<ul class="inline-list inline-list--mobile-compact">
<li class="inline-list__item inline-list__item--bulleted app-header__list__item--price">Free</li>
<!----> </ul>
</li>
<!---->
<!----> </ul>
<!---->
<!---->
<!---->
<!----> </header>
</div>
</div>
</section>
<!---->
<section class="l-content-width section section--bordered">
<h2 class="section__headline">iPhone Screenshots</h2>
<div id="ember160" class="we-screenshot-viewer ember-view"><div class="we-screenshot-viewer__screenshots">
<ul class="l-row l-row--peek">
<li class="l-column small-2 medium-3 large-3">
<picture id="ember162" class="we-artwork ember-view we-artwork--fullwidth we-artwork--screenshot-platform-iphone we-artwork--screenshot-version-iphone-6-5 we-artwork--screenshot-orientation-portrait">
<source class="we-artwork__source" srcset="https://is3-ssl.mzstatic.com/image/thumb/Purple113/v4/46/c5/35/46c53548-754b-397a-6c46-b4b59f994962/pr_source.png/230x0w.png 1x,https://is3-ssl.mzstatic.com/image/thumb/Purple113/v4/46/c5/35/46c53548-754b-397a-6c46-b4b59f994962/pr_source.png/460x0w.png 2x,https://is3-ssl.mzstatic.com/image/thumb/Purple113/v4/46/c5/35/46c53548-754b-397a-6c46-b4b59f994962/pr_source.png/690x0w.png 3x" media="(min-width: 1069px)">
<!---->
<source class="we-artwork__source" srcset="https://is3-ssl.mzstatic.com/image/thumb/Purple113/v4/46/c5/35/46c53548-754b-397a-6c46-b4b59f994962/pr_source.png/157x0w.png 1x,https://is3-ssl.mzstatic.com/image/thumb/Purple113/v4/46/c5/35/46c53548-754b-397a-6c46-b4b59f994962/pr_source.png/314x0w.png 2x,https://is3-ssl.mzstatic.com/image/thumb/Purple113/v4/46/c5/35/46c53548-754b-397a-6c46-b4b59f994962/pr_source.png/471x0w.png 3x" media="(min-width: 736px)">
<!---->
<source class="we-artwork__source" srcset="https://is3-ssl.mzstatic.com/image/thumb/Purple113/v4/46/c5/35/46c53548-754b-397a-6c46-b4b59f994962/pr_source.png/300x0w.png 1x,https://is3-ssl.mzstatic.com/image/thumb/Purple113/v4/46/c5/35/46c53548-754b-397a-6c46-b4b59f994962/pr_source.png/600x0w.png 2x,https://is3-ssl.mzstatic.com/image/thumb/Purple113/v4/46/c5/35/46c53548-754b-397a-6c46-b4b59f994962/pr_source.png/900x0w.png 3x">
<img class="we-artwork__image ember162" src="./_TextWith - Superhuman Texting on the App Store_files/300x0w.png" style="" alt="" height="649" width="300">
<style>
.ember162, #ember162::before {
width: 300px;
height: 649px;
}
.ember162::before {
padding-top: 216.33333333333334%;
}
@media (min-width: 736px) {
.ember162, #ember162::before {
width: 157px;
height: 339px;
}
.ember162::before {
padding-top: 215.92356687898092%;
}
}
@media (min-width: 1069px) {
.ember162, #ember162::before {
width: 230px;
height: 497px;
}
.ember162::before {
padding-top: 216.08695652173915%;
}
}
</style>
</picture>
</li>
<li class="l-column small-2 medium-3 large-3">
<picture id="ember167" class="we-artwork ember-view we-artwork--fullwidth we-artwork--screenshot-platform-iphone we-artwork--screenshot-version-iphone-6-5 we-artwork--screenshot-orientation-portrait">
<source class="we-artwork__source" srcset="https://is4-ssl.mzstatic.com/image/thumb/Purple123/v4/46/4f/66/464f6663-b3db-61d9-ed34-575e3cde00a1/pr_source.png/230x0w.png 1x,https://is4-ssl.mzstatic.com/image/thumb/Purple123/v4/46/4f/66/464f6663-b3db-61d9-ed34-575e3cde00a1/pr_source.png/460x0w.png 2x,https://is4-ssl.mzstatic.com/image/thumb/Purple123/v4/46/4f/66/464f6663-b3db-61d9-ed34-575e3cde00a1/pr_source.png/690x0w.png 3x" media="(min-width: 1069px)">
<!---->
<source class="we-artwork__source" srcset="https://is4-ssl.mzstatic.com/image/thumb/Purple123/v4/46/4f/66/464f6663-b3db-61d9-ed34-575e3cde00a1/pr_source.png/157x0w.png 1x,https://is4-ssl.mzstatic.com/image/thumb/Purple123/v4/46/4f/66/464f6663-b3db-61d9-ed34-575e3cde00a1/pr_source.png/314x0w.png 2x,https://is4-ssl.mzstatic.com/image/thumb/Purple123/v4/46/4f/66/464f6663-b3db-61d9-ed34-575e3cde00a1/pr_source.png/471x0w.png 3x" media="(min-width: 736px)">
<!---->
<source class="we-artwork__source" srcset="https://is4-ssl.mzstatic.com/image/thumb/Purple123/v4/46/4f/66/464f6663-b3db-61d9-ed34-575e3cde00a1/pr_source.png/300x0w.png 1x,https://is4-ssl.mzstatic.com/image/thumb/Purple123/v4/46/4f/66/464f6663-b3db-61d9-ed34-575e3cde00a1/pr_source.png/600x0w.png 2x,https://is4-ssl.mzstatic.com/image/thumb/Purple123/v4/46/4f/66/464f6663-b3db-61d9-ed34-575e3cde00a1/pr_source.png/900x0w.png 3x">
<img class="we-artwork__image ember167" src="./_TextWith - Superhuman Texting on the App Store_files/300x0w(1).png" style="" alt="" height="649" width="300">
<style>
.ember167, #ember167::before {
width: 300px;
height: 649px;
}
.ember167::before {
padding-top: 216.33333333333334%;
}
@media (min-width: 736px) {
.ember167, #ember167::before {
width: 157px;
height: 339px;
}
.ember167::before {
padding-top: 215.92356687898092%;
}
}
@media (min-width: 1069px) {
.ember167, #ember167::before {
width: 230px;
height: 497px;
}
.ember167::before {
padding-top: 216.08695652173915%;
}
}
</style>
</picture>
</li>
<li class="l-column small-2 medium-3 large-3">
<picture id="ember172" class="we-artwork ember-view we-artwork--fullwidth we-artwork--screenshot-platform-iphone we-artwork--screenshot-version-iphone-6-5 we-artwork--screenshot-orientation-portrait">
<source class="we-artwork__source" srcset="https://is4-ssl.mzstatic.com/image/thumb/Purple123/v4/36/ff/3f/36ff3fa4-8a13-1bc6-e9eb-4a2e1d69df8d/pr_source.png/230x0w.png 1x,https://is4-ssl.mzstatic.com/image/thumb/Purple123/v4/36/ff/3f/36ff3fa4-8a13-1bc6-e9eb-4a2e1d69df8d/pr_source.png/460x0w.png 2x,https://is4-ssl.mzstatic.com/image/thumb/Purple123/v4/36/ff/3f/36ff3fa4-8a13-1bc6-e9eb-4a2e1d69df8d/pr_source.png/690x0w.png 3x" media="(min-width: 1069px)">
<!---->
<source class="we-artwork__source" srcset="https://is4-ssl.mzstatic.com/image/thumb/Purple123/v4/36/ff/3f/36ff3fa4-8a13-1bc6-e9eb-4a2e1d69df8d/pr_source.png/157x0w.png 1x,https://is4-ssl.mzstatic.com/image/thumb/Purple123/v4/36/ff/3f/36ff3fa4-8a13-1bc6-e9eb-4a2e1d69df8d/pr_source.png/314x0w.png 2x,https://is4-ssl.mzstatic.com/image/thumb/Purple123/v4/36/ff/3f/36ff3fa4-8a13-1bc6-e9eb-4a2e1d69df8d/pr_source.png/471x0w.png 3x" media="(min-width: 736px)">
<!---->
<source class="we-artwork__source" srcset="https://is4-ssl.mzstatic.com/image/thumb/Purple123/v4/36/ff/3f/36ff3fa4-8a13-1bc6-e9eb-4a2e1d69df8d/pr_source.png/300x0w.png 1x,https://is4-ssl.mzstatic.com/image/thumb/Purple123/v4/36/ff/3f/36ff3fa4-8a13-1bc6-e9eb-4a2e1d69df8d/pr_source.png/600x0w.png 2x,https://is4-ssl.mzstatic.com/image/thumb/Purple123/v4/36/ff/3f/36ff3fa4-8a13-1bc6-e9eb-4a2e1d69df8d/pr_source.png/900x0w.png 3x">
<img class="we-artwork__image ember172" src="./_TextWith - Superhuman Texting on the App Store_files/300x0w(2).png" style="" alt="" height="649" width="300">
<style>
.ember172, #ember172::before {
width: 300px;
height: 649px;
}
.ember172::before {
padding-top: 216.33333333333334%;
}
@media (min-width: 736px) {
.ember172, #ember172::before {
width: 157px;
height: 339px;
}
.ember172::before {
padding-top: 215.92356687898092%;
}
}
@media (min-width: 1069px) {
.ember172, #ember172::before {
width: 230px;
height: 497px;
}
.ember172::before {
padding-top: 216.08695652173915%;
}
}
</style>
</picture>
</li>
<li class="l-column small-2 medium-3 large-3">
<picture id="ember177" class="we-artwork ember-view we-artwork--fullwidth we-artwork--screenshot-platform-iphone we-artwork--screenshot-version-iphone-6-5 we-artwork--screenshot-orientation-portrait">
<source class="we-artwork__source" srcset="https://is2-ssl.mzstatic.com/image/thumb/Purple113/v4/4c/1f/15/4c1f1581-0eea-04f4-a44b-1d5e82301a08/pr_source.png/230x0w.png 1x,https://is2-ssl.mzstatic.com/image/thumb/Purple113/v4/4c/1f/15/4c1f1581-0eea-04f4-a44b-1d5e82301a08/pr_source.png/460x0w.png 2x,https://is2-ssl.mzstatic.com/image/thumb/Purple113/v4/4c/1f/15/4c1f1581-0eea-04f4-a44b-1d5e82301a08/pr_source.png/690x0w.png 3x" media="(min-width: 1069px)">
<!---->
<source class="we-artwork__source" srcset="https://is2-ssl.mzstatic.com/image/thumb/Purple113/v4/4c/1f/15/4c1f1581-0eea-04f4-a44b-1d5e82301a08/pr_source.png/157x0w.png 1x,https://is2-ssl.mzstatic.com/image/thumb/Purple113/v4/4c/1f/15/4c1f1581-0eea-04f4-a44b-1d5e82301a08/pr_source.png/314x0w.png 2x,https://is2-ssl.mzstatic.com/image/thumb/Purple113/v4/4c/1f/15/4c1f1581-0eea-04f4-a44b-1d5e82301a08/pr_source.png/471x0w.png 3x" media="(min-width: 736px)">
<!---->
<source class="we-artwork__source" srcset="https://is2-ssl.mzstatic.com/image/thumb/Purple113/v4/4c/1f/15/4c1f1581-0eea-04f4-a44b-1d5e82301a08/pr_source.png/300x0w.png 1x,https://is2-ssl.mzstatic.com/image/thumb/Purple113/v4/4c/1f/15/4c1f1581-0eea-04f4-a44b-1d5e82301a08/pr_source.png/600x0w.png 2x,https://is2-ssl.mzstatic.com/image/thumb/Purple113/v4/4c/1f/15/4c1f1581-0eea-04f4-a44b-1d5e82301a08/pr_source.png/900x0w.png 3x">
<img class="we-artwork__image ember177" src="./_TextWith - Superhuman Texting on the App Store_files/300x0w(3).png" style="" alt="" height="649" width="300">
<style>
.ember177, #ember177::before {
width: 300px;
height: 649px;
}
.ember177::before {
padding-top: 216.33333333333334%;
}
@media (min-width: 736px) {
.ember177, #ember177::before {
width: 157px;
height: 339px;
}
.ember177::before {
padding-top: 215.92356687898092%;
}
}
@media (min-width: 1069px) {
.ember177, #ember177::before {
width: 230px;
height: 497px;
}
.ember177::before {
padding-top: 216.08695652173915%;
}
}
</style>
</picture>
</li>
<li class="l-column small-2 medium-3 large-3">
<picture id="ember182" class="we-artwork ember-view we-artwork--fullwidth we-artwork--screenshot-platform-iphone we-artwork--screenshot-version-iphone-6-5 we-artwork--screenshot-orientation-portrait">
<source class="we-artwork__source" srcset="https://is2-ssl.mzstatic.com/image/thumb/Purple113/v4/90/59/9b/90599bc1-f895-2488-861f-d6e5ade71270/pr_source.png/230x0w.png 1x,https://is2-ssl.mzstatic.com/image/thumb/Purple113/v4/90/59/9b/90599bc1-f895-2488-861f-d6e5ade71270/pr_source.png/460x0w.png 2x,https://is2-ssl.mzstatic.com/image/thumb/Purple113/v4/90/59/9b/90599bc1-f895-2488-861f-d6e5ade71270/pr_source.png/690x0w.png 3x" media="(min-width: 1069px)">
<!---->
<source class="we-artwork__source" srcset="https://is2-ssl.mzstatic.com/image/thumb/Purple113/v4/90/59/9b/90599bc1-f895-2488-861f-d6e5ade71270/pr_source.png/157x0w.png 1x,https://is2-ssl.mzstatic.com/image/thumb/Purple113/v4/90/59/9b/90599bc1-f895-2488-861f-d6e5ade71270/pr_source.png/314x0w.png 2x,https://is2-ssl.mzstatic.com/image/thumb/Purple113/v4/90/59/9b/90599bc1-f895-2488-861f-d6e5ade71270/pr_source.png/471x0w.png 3x" media="(min-width: 736px)">
<!---->
<source class="we-artwork__source" srcset="https://is2-ssl.mzstatic.com/image/thumb/Purple113/v4/90/59/9b/90599bc1-f895-2488-861f-d6e5ade71270/pr_source.png/300x0w.png 1x,https://is2-ssl.mzstatic.com/image/thumb/Purple113/v4/90/59/9b/90599bc1-f895-2488-861f-d6e5ade71270/pr_source.png/600x0w.png 2x,https://is2-ssl.mzstatic.com/image/thumb/Purple113/v4/90/59/9b/90599bc1-f895-2488-861f-d6e5ade71270/pr_source.png/900x0w.png 3x">
<img class="we-artwork__image ember182" src="./_TextWith - Superhuman Texting on the App Store_files/300x0w(4).png" style="" alt="" height="649" width="300">
<style>
.ember182, #ember182::before {
width: 300px;
height: 649px;
}
.ember182::before {
padding-top: 216.33333333333334%;
}
@media (min-width: 736px) {
.ember182, #ember182::before {
width: 157px;
height: 339px;
}
.ember182::before {
padding-top: 215.92356687898092%;
}
}
@media (min-width: 1069px) {
.ember182, #ember182::before {
width: 230px;
height: 497px;
}
.ember182::before {
padding-top: 216.08695652173915%;
}
}
</style>
</picture>
</li>
<li class="l-column small-2 medium-3 large-3">
<picture id="ember187" class="we-artwork ember-view we-artwork--fullwidth we-artwork--screenshot-platform-iphone we-artwork--screenshot-version-iphone-6-5 we-artwork--screenshot-orientation-portrait">
<source class="we-artwork__source" srcset="https://is4-ssl.mzstatic.com/image/thumb/Purple123/v4/4b/0a/d9/4b0ad99d-11b5-5b02-5018-377ad7283e34/pr_source.png/230x0w.png 1x,https://is4-ssl.mzstatic.com/image/thumb/Purple123/v4/4b/0a/d9/4b0ad99d-11b5-5b02-5018-377ad7283e34/pr_source.png/460x0w.png 2x,https://is4-ssl.mzstatic.com/image/thumb/Purple123/v4/4b/0a/d9/4b0ad99d-11b5-5b02-5018-377ad7283e34/pr_source.png/690x0w.png 3x" media="(min-width: 1069px)">
<!---->
<source class="we-artwork__source" srcset="https://is4-ssl.mzstatic.com/image/thumb/Purple123/v4/4b/0a/d9/4b0ad99d-11b5-5b02-5018-377ad7283e34/pr_source.png/157x0w.png 1x,https://is4-ssl.mzstatic.com/image/thumb/Purple123/v4/4b/0a/d9/4b0ad99d-11b5-5b02-5018-377ad7283e34/pr_source.png/314x0w.png 2x,https://is4-ssl.mzstatic.com/image/thumb/Purple123/v4/4b/0a/d9/4b0ad99d-11b5-5b02-5018-377ad7283e34/pr_source.png/471x0w.png 3x" media="(min-width: 736px)">
<!---->
<source class="we-artwork__source" srcset="https://is4-ssl.mzstatic.com/image/thumb/Purple123/v4/4b/0a/d9/4b0ad99d-11b5-5b02-5018-377ad7283e34/pr_source.png/300x0w.png 1x,https://is4-ssl.mzstatic.com/image/thumb/Purple123/v4/4b/0a/d9/4b0ad99d-11b5-5b02-5018-377ad7283e34/pr_source.png/600x0w.png 2x,https://is4-ssl.mzstatic.com/image/thumb/Purple123/v4/4b/0a/d9/4b0ad99d-11b5-5b02-5018-377ad7283e34/pr_source.png/900x0w.png 3x">
<img class="we-artwork__image ember187" src="./_TextWith - Superhuman Texting on the App Store_files/300x0w(5).png" style="" alt="" height="649" width="300">
<style>
.ember187, #ember187::before {
width: 300px;
height: 649px;
}
.ember187::before {
padding-top: 216.33333333333334%;
}
@media (min-width: 736px) {
.ember187, #ember187::before {
width: 157px;
height: 339px;
}
.ember187::before {
padding-top: 215.92356687898092%;
}
}
@media (min-width: 1069px) {
.ember187, #ember187::before {
width: 230px;
height: 497px;
}
.ember187::before {
padding-top: 216.08695652173915%;
}
}
</style>
</picture>
</li>
<li class="l-column small-2 medium-3 large-3">
<picture id="ember192" class="we-artwork ember-view we-artwork--fullwidth we-artwork--screenshot-platform-iphone we-artwork--screenshot-version-iphone-6-5 we-artwork--screenshot-orientation-portrait">
<source class="we-artwork__source" srcset="https://is3-ssl.mzstatic.com/image/thumb/Purple123/v4/14/5d/4e/145d4e31-c9af-51f1-479b-839609585b11/pr_source.png/230x0w.png 1x,https://is3-ssl.mzstatic.com/image/thumb/Purple123/v4/14/5d/4e/145d4e31-c9af-51f1-479b-839609585b11/pr_source.png/460x0w.png 2x,https://is3-ssl.mzstatic.com/image/thumb/Purple123/v4/14/5d/4e/145d4e31-c9af-51f1-479b-839609585b11/pr_source.png/690x0w.png 3x" media="(min-width: 1069px)">
<!---->
<source class="we-artwork__source" srcset="https://is3-ssl.mzstatic.com/image/thumb/Purple123/v4/14/5d/4e/145d4e31-c9af-51f1-479b-839609585b11/pr_source.png/157x0w.png 1x,https://is3-ssl.mzstatic.com/image/thumb/Purple123/v4/14/5d/4e/145d4e31-c9af-51f1-479b-839609585b11/pr_source.png/314x0w.png 2x,https://is3-ssl.mzstatic.com/image/thumb/Purple123/v4/14/5d/4e/145d4e31-c9af-51f1-479b-839609585b11/pr_source.png/471x0w.png 3x" media="(min-width: 736px)">
<!---->
<source class="we-artwork__source" srcset="https://is3-ssl.mzstatic.com/image/thumb/Purple123/v4/14/5d/4e/145d4e31-c9af-51f1-479b-839609585b11/pr_source.png/300x0w.png 1x,https://is3-ssl.mzstatic.com/image/thumb/Purple123/v4/14/5d/4e/145d4e31-c9af-51f1-479b-839609585b11/pr_source.png/600x0w.png 2x,https://is3-ssl.mzstatic.com/image/thumb/Purple123/v4/14/5d/4e/145d4e31-c9af-51f1-479b-839609585b11/pr_source.png/900x0w.png 3x">
<img class="we-artwork__image ember192" src="./_TextWith - Superhuman Texting on the App Store_files/300x0w(6).png" style="" alt="" height="649" width="300">
<style>
.ember192, #ember192::before {
width: 300px;
height: 649px;
}
.ember192::before {
padding-top: 216.33333333333334%;
}
@media (min-width: 736px) {
.ember192, #ember192::before {
width: 157px;
height: 339px;
}
.ember192::before {
padding-top: 215.92356687898092%;
}
}
@media (min-width: 1069px) {
.ember192, #ember192::before {
width: 230px;
height: 497px;
}
.ember192::before {
padding-top: 216.08695652173915%;
}
}
</style>
</picture>
</li>
<li class="l-column small-2 medium-3 large-3">
<picture id="ember197" class="we-artwork ember-view we-artwork--fullwidth we-artwork--screenshot-platform-iphone we-artwork--screenshot-version-iphone-6-5 we-artwork--screenshot-orientation-portrait">
<source class="we-artwork__source" srcset="https://is5-ssl.mzstatic.com/image/thumb/Purple113/v4/60/7a/73/607a73ac-1caa-f722-8097-cab45b8c39d5/pr_source.png/230x0w.png 1x,https://is5-ssl.mzstatic.com/image/thumb/Purple113/v4/60/7a/73/607a73ac-1caa-f722-8097-cab45b8c39d5/pr_source.png/460x0w.png 2x,https://is5-ssl.mzstatic.com/image/thumb/Purple113/v4/60/7a/73/607a73ac-1caa-f722-8097-cab45b8c39d5/pr_source.png/690x0w.png 3x" media="(min-width: 1069px)">
<!---->
<source class="we-artwork__source" srcset="https://is5-ssl.mzstatic.com/image/thumb/Purple113/v4/60/7a/73/607a73ac-1caa-f722-8097-cab45b8c39d5/pr_source.png/157x0w.png 1x,https://is5-ssl.mzstatic.com/image/thumb/Purple113/v4/60/7a/73/607a73ac-1caa-f722-8097-cab45b8c39d5/pr_source.png/314x0w.png 2x,https://is5-ssl.mzstatic.com/image/thumb/Purple113/v4/60/7a/73/607a73ac-1caa-f722-8097-cab45b8c39d5/pr_source.png/471x0w.png 3x" media="(min-width: 736px)">
<!---->
<source class="we-artwork__source" srcset="https://is5-ssl.mzstatic.com/image/thumb/Purple113/v4/60/7a/73/607a73ac-1caa-f722-8097-cab45b8c39d5/pr_source.png/300x0w.png 1x,https://is5-ssl.mzstatic.com/image/thumb/Purple113/v4/60/7a/73/607a73ac-1caa-f722-8097-cab45b8c39d5/pr_source.png/600x0w.png 2x,https://is5-ssl.mzstatic.com/image/thumb/Purple113/v4/60/7a/73/607a73ac-1caa-f722-8097-cab45b8c39d5/pr_source.png/900x0w.png 3x">
<img class="we-artwork__image ember197" src="./_TextWith - Superhuman Texting on the App Store_files/300x0w(7).png" style="" alt="" height="649" width="300">
<style>
.ember197, #ember197::before {
width: 300px;
height: 649px;
}
.ember197::before {
padding-top: 216.33333333333334%;
}
@media (min-width: 736px) {
.ember197, #ember197::before {
width: 157px;
height: 339px;
}
.ember197::before {
padding-top: 215.92356687898092%;
}
}
@media (min-width: 1069px) {
.ember197, #ember197::before {
width: 230px;
height: 497px;
}
.ember197::before {
padding-top: 216.08695652173915%;
}
}
</style>
</picture>
</li>
</ul>
<!----></div>
</div>
</section>
<section class="l-content-width section section--bordered">
<div class="section__description">
<h2 class="section__headline visuallyhidden">Description</h2>
<div class="l-row">
<div id="ember201" class="we-truncate we-truncate--multi-line we-truncate--interactive we-truncate--full ember-view l-column small-12 medium-9 large-8"> <p dir="ltr" data-test-bidi="">Business texting!</p>
<br>
<p dir="ltr" data-test-bidi="">We rebuilt texting from the ground up to help you get stuff done. Use your TextWith phone number to keep your work and personal messages separate. Great for sales, customer support, operations, recruiting, marketing and planning events. </p>
<br>
<p dir="ltr" data-test-bidi="">Send and receive text messages with customers, contractors, and partners. Best of all, they won't need to install anything!</p>
<br>
<p dir="ltr" data-test-bidi="">TextWith comes with advanced features that make you feel superhuman. Follow-up Reminders, Scheduled Messages, and Click Statuses. To name but a few.</p>
<br>
<p dir="ltr" data-test-bidi="">Features:</p>
<p dir="ltr" data-test-bidi="">* SEND LATER - Schedule your messages to send when you know your recipients will read them.</p>
<p dir="ltr" data-test-bidi="">* TEMPLATES - Write the best text every time without manual copying and pasting. With TextWith templates, the right message for every occasion is one click away.
</p>
<p dir="ltr" data-test-bidi="">* TEXT MARKETING CAMPAIGNS - Automate the delivery of personalized messages. </p>
<p dir="ltr" data-test-bidi="">* TEXTING ASSISTANT - Keeps you on track reminding you to follow-up so you never forget to reply. </p>
<p dir="ltr" data-test-bidi="">* TEAM ENABLED - Team collaboration means you’ll never miss a beat!</p>
<p dir="ltr" data-test-bidi="">* MANAGE NOTIFICATIONS - Mark yourself available when you want to be notified a new message comes in with Push Notifications and unavailable when you are away so you are not disturbed when you’re not working.</p>
<p dir="ltr" data-test-bidi="">* LISTS + PIPELINES - Organize contacts into lists to track them through your sales pipeline, on-boarding or customer support process. </p>
<p dir="ltr" data-test-bidi="">* ARCHIVE MESSAGES - Archive completed chats to keep your inbox clear. </p>
<p dir="ltr" data-test-bidi="">* CLICK TRACKING - Know when someone clicks on the links you sent them. </p>
<p dir="ltr" data-test-bidi="">CRM - Keep information about your customers, prospects, and partners up to date and always send messages with the most up to date context.</p>
<br>
<p dir="ltr" data-test-bidi="">Here is how businesses are using TextWith:</p>
<br>
<p dir="ltr" data-test-bidi="">SALES</p>
<p dir="ltr" data-test-bidi="">* Set reminders to follow up with each lead</p>
<p dir="ltr" data-test-bidi="">* Organize contacts into lists to track them through your sales pipeline.</p>
<p dir="ltr" data-test-bidi="">* A shared inbox where your team can share messages and replies</p>
<br>
<p dir="ltr" data-test-bidi="">CUSTOMER SUPPORT</p>
<p dir="ltr" data-test-bidi="">* Triage chats by assigning them to yourself other people. Get notifications for the chats most relevant to you</p>
<p dir="ltr" data-test-bidi="">* Templates for commonly used messages, including text, photos, links, and even the first name of the contact</p>
<p dir="ltr" data-test-bidi="">* Set scheduled message and never forget to follow up with a customer</p>
<p dir="ltr" data-test-bidi="">* See when team members reply to a chat</p>
<p dir="ltr" data-test-bidi="">* Add and share private notes about each contact</p>
<br>
<p dir="ltr" data-test-bidi="">MARKETING</p>
<p dir="ltr" data-test-bidi="">* Create campaigns to send private, personalized text messages.</p>
<p dir="ltr" data-test-bidi="">* Personalize messages with merge tokens like "first name"</p>
<p dir="ltr" data-test-bidi="">* Schedule messages to be sent at a specific date and time</p>
</div>
</div>
</div>
</section>
<!---->
<section class="l-content-width section section--bordered whats-new">
<div class="section__nav section__nav--small">
<h2 class="whats-new__headline">What’s New</h2>
<div data-test-we-modal="page-overlay" id="ember205" class="ember-view version-history"> <button class="we-modal__show link" id="modal-trigger-ember205" data-metrics-click="{"actionType":"open","targetType":"button","targetId":"ModalVersionHistory"}" data-ember-action="" data-ember-action-206="206">Version History</button>
<!----></div>
</div>
<div class="l-row whats-new__content">
<div class="l-column small-12 medium-3 large-4 small-valign-top whats-new__latest">
<div class="l-row">
<time data-test-we-datetime="" datetime="2019-11-23T08:00:00.000Z" aria-label="November 23, 2019" class="">Nov 23, 2019</time>
<p class="l-column small-6 medium-12 whats-new__latest__version">Version 1.0.10</p>
</div>
</div>
<div class="l-column small-12 medium-9 large-8 small-valign-top">
<div id="ember207" class="we-truncate we-truncate--multi-line we-truncate--interactive ember-view">
<div data-clamp="" id="ember209" class="we-clamp ember-view"><p dir="ltr" data-test-bidi="">Bug fixes and performance improvements.</p>
</div>
<!----></div>
</div>
</div>
</section>
<section class="l-content-width section section--bordered">
<div class="section__nav">
<h2 class="section__headline">Ratings and Reviews</h2>
</div>
<div id="ember211" class="we-customer-ratings lockup ember-view"><div class="l-row">
<div class="we-customer-ratings__stats l-column small-4 medium-6 large-4">
<div class="we-customer-ratings__averages"><span class="we-customer-ratings__averages__display">5.0</span> out of 5</div>
<div class="we-customer-ratings__count small-hide medium-show">4 Ratings</div>
</div>
<div class=" l-column small-8 medium-6 large-4">
<figure class="we-star-bar-graph">
<div class="we-star-bar-graph__row">
<span class="we-star-bar-graph__stars we-star-bar-graph__stars--5"></span>
<div class="we-star-bar-graph__bar">
<div class="we-star-bar-graph__bar__foreground-bar" style="width: 100%;"></div>
</div>
</div>
<div class="we-star-bar-graph__row">
<span class="we-star-bar-graph__stars we-star-bar-graph__stars--4"></span>
<div class="we-star-bar-graph__bar">
<div class="we-star-bar-graph__bar__foreground-bar" style="width: 0%;"></div>
</div>
</div>
<div class="we-star-bar-graph__row">
<span class="we-star-bar-graph__stars we-star-bar-graph__stars--3"></span>
<div class="we-star-bar-graph__bar">
<div class="we-star-bar-graph__bar__foreground-bar" style="width: 0%;"></div>
</div>
</div>
<div class="we-star-bar-graph__row">
<span class="we-star-bar-graph__stars we-star-bar-graph__stars--2"></span>
<div class="we-star-bar-graph__bar">
<div class="we-star-bar-graph__bar__foreground-bar" style="width: 0%;"></div>
</div>
</div>
<div class="we-star-bar-graph__row">
<span class="we-star-bar-graph__stars "></span>
<div class="we-star-bar-graph__bar">
<div class="we-star-bar-graph__bar__foreground-bar" style="width: 0%;"></div>
</div>
</div>
</figure>
<p class="we-customer-ratings__count medium-hide">4 Ratings</p>
</div>
</div>
</div>
<div class="l-row l-row--peek">
<!---->
</div>
<!----> </section>
<!---->
<!---->
<section class="l-content-width section section--bordered">
<div class="l-row">
<div class="l-column small-12">
<h2 class="section__headline">Information</h2>
<dl class="information-list information-list--app medium-columns">
<div class="information-list__item l-row">
<dt class="information-list__item__term medium-valign-top l-column medium-3 large-2">Seller</dt>
<dd class="information-list__item__definition l-column medium-9 large-6">
Socialscope, Inc.
</dd>
</div>
<div class="information-list__item l-row">
<dt class="information-list__item__term medium-valign-top l-column medium-3 large-2">Size</dt>
<dd class="information-list__item__definition l-column medium-9 large-6" aria-label="45.6 megabytes">45.6 MB</dd>
</div>
<div class="information-list__item l-row">
<dt class="information-list__item__term medium-valign-top l-column medium-3 large-2">Category</dt>
<dd class="information-list__item__definition l-column medium-9 large-6">
<a href="https://itunes.apple.com/us/genre/id6007" class="link" data-metrics-click="{"actionType":"navigate","actionUrl":"https://itunes.apple.com/us/genre/id6007","targetType":"link","targetId":"GenrePage"}">
Productivity
</a>
</dd>
</div>
<div class="information-list__item l-row">
<dt class="information-list__item__term medium-valign-top l-column medium-3 large-2">Compatibility</dt>
<dd id="ember218" class="we-truncate we-truncate--multi-line we-truncate--interactive ember-view information-list__item__definition l-column medium-9 large-6">
<div data-clamp="" id="ember220" class="we-clamp ember-view"><p dir="ltr" data-test-bidi="">Requires iOS 9.0 or later. Compatible with iPhone, iPad, and iPod touch.</p>
</div>
<!----></dd>
</div>
<!----> <div class="information-list__item l-row">
<dt class="information-list__item__term medium-valign-top l-column medium-3 large-2">Languages</dt>
<dd id="ember222" class="information-list__item__definition l-column medium-9 large-6 we-truncate we-truncate--multi-line we-truncate--interactive ember-view">
<div data-clamp="" id="ember224" class="we-clamp ember-view"><p dir="ltr" data-test-bidi="">English</p>
</div>
<!----></dd>
</div>
<div class="information-list__item l-row">
<dt class="information-list__item__term medium-valign-top l-column medium-3 large-2">Age Rating</dt>
<dd class="information-list__item__definition l-column medium-9 large-6">4+</dd>
</div>
<!----><!----> <div class="information-list__item l-row">
<dt class="information-list__item__term medium-valign-top l-column medium-3 large-2">Copyright</dt>
<dd class="information-list__item__definition l-column medium-9 large-6 information-list__item__definition--copyright">© 2019 TextWith Inc.</dd>
</div>
<div class="information-list__item l-row">
<dt class="information-list__item__term medium-valign-top l-column medium-3 large-2">Price</dt>
<dd class="information-list__item__definition l-column medium-9 large-6">Free</dd>
</div>
<!---->
</dl>
</div>
<div class="l-column small-hide medium-show medium-9 medium-offset-3 large-10 large-offset-2">
<ul class="inline-list inline-list--app-extensions">
<li class="inline-list__item inline-list__item--margin-inline-end-large">
<a class="link icon icon-after icon-external" data-metrics-click="{"actionDetails":{"type":"developer"},"actionType":"navigate","actionUrl":"@@url@@","targetType":"link","targetId":"@@id@@"}" href="https://www.textwith.us/">
Developer Website
</a>
</li>
<li class="inline-list__item inline-list__item--margin-inline-end-large">
<a class="link icon icon-after icon-external" data-metrics-click="{"actionType":"navigate","targetType":"link","targetId":"LinkToAppSupport"}" href="https://www.textwith.us/support">
App Support
</a>
</li>
<!----> <li class="inline-list__item inline-list__item--margin-inline-end-large">
<a class="link icon icon-after icon-external" data-metrics-click="{"actionType":"navigate","targetType":"link","targetId":"LinkToPrivacyPolicy"}" href="http://www.notify.io/privacy-policy">
Privacy Policy
</a>
</li>
</ul>
</div>
</div>
</section>
<section class="section section--link-list l-content-width medium-hide">
<ul class="link-list link-list--a">
<li class="link-list__item link-list__item--a">
<a class="link icon icon-after icon-external" data-metrics-click="{"actionDetails":{"type":"developer"},"actionType":"navigate","actionUrl":"@@url@@","targetType":"link","targetId":"@@id@@"}" href="https://www.textwith.us/">
Developer Website
</a>
</li>
<li class="link-list__item link-list__item--a">
<a class="link icon icon-after icon-external" data-metrics-click="{"actionType":"navigate","targetType":"link","targetId":"LinkToAppSupport"}" href="https://www.textwith.us/support">
App Support
</a>
</li>
<!----> <li class="link-list__item link-list__item--a">
<a class="link icon icon-after icon-external" data-metrics-click="{"actionType":"navigate","targetType":"link","targetId":"LinkToPrivacyPolicy"}" href="http://www.notify.io/privacy-policy">
Privacy Policy
</a>
</li>
</ul>
</section>
<section class="l-content-width section section--bordered">
<div class="section__nav">
<h2 class="section__headline">Supports</h2>
</div>
<ul class="supports-list l-row">
<li class="supports-list__item l-column l-column--grid small-12 medium-6 large-4">
<img src="./_TextWith - Superhuman Texting on the App Store_files/supports-FamilySharing@2x-f58f31bc78fe9fe7be3565abccbecb34.png" class="supports-list__item__artwork" alt="">
<div class="supports-list__item__copy">
<h3 dir="ltr" id="ember227" class="we-truncate we-truncate--single-line ember-view supports-list__item__copy__heading"> Family Sharing
</h3>
<h4 id="ember228" class="we-truncate we-truncate--multi-line we-truncate--interactive ember-view supports-list__item__copy__description">
<div data-clamp="" id="ember230" class="we-clamp ember-view"><p dir="ltr" data-test-bidi="">With Family Sharing set up, up to six family members can use this app.</p>
</div>
<!----></h4>
</div>
</li>
</ul>
</section>
<!---->
<section class="l-content-width section section--bordered">
<div class="section__nav">
<h2 class="section__headline">
You May Also Like
</h2>
<a data-metrics-click="{"actionType":"navigate","targetType":"button","targetId":"SeeAllCustomersAlsoBoughtApps"}" rel="nofollow" data-we-link-to-exclude="" href="https://apps.apple.com/us/app/textwith-superhuman-texting/id1430365839#see-all/customers-also-bought-apps" id="ember232" class="link section__nav__see-all-link ember-view">See All</a>
</div>
<div class="l-row l-row--peek">
<a aria-labelledby="we-lockup-labelled-by-0" data-metrics-location="{"locationType":"shelfCustomersAlsoBoughtApps"}" data-metrics-click="{"actionType":"navigate","actionUrl":"https://apps.apple.com/us/app/pimp-keyboard/id584606415","targetType":"card","targetId":"584606415"}" href="https://apps.apple.com/us/app/pimp-keyboard/id584606415" id="ember236" class="we-lockup targeted-link l-column small-2 medium-3 large-2 we-lockup--shelf-align-top ember-view"> <picture dir="ltr" id="ember237" class="we-lockup__artwork we-artwork--lockup we-artwork--fullwidth we-artwork--ios-app-icon we-artwork ember-view">
<!---->
<source class="we-artwork__source we-artwork__source--lazyload" srcset="https://is2-ssl.mzstatic.com/image/thumb/Purple/v4/f1/c0/07/f1c007ca-c253-91a8-d2f2-85e4b05e8724/mzl.ostzcqzf.png/146x0w.png 1x,https://is2-ssl.mzstatic.com/image/thumb/Purple/v4/f1/c0/07/f1c007ca-c253-91a8-d2f2-85e4b05e8724/mzl.ostzcqzf.png/292x0w.png 2x,https://is2-ssl.mzstatic.com/image/thumb/Purple/v4/f1/c0/07/f1c007ca-c253-91a8-d2f2-85e4b05e8724/mzl.ostzcqzf.png/438x0w.png 3x" data-srcset="https://is2-ssl.mzstatic.com/image/thumb/Purple/v4/f1/c0/07/f1c007ca-c253-91a8-d2f2-85e4b05e8724/mzl.ostzcqzf.png/146x0w.png 1x,https://is2-ssl.mzstatic.com/image/thumb/Purple/v4/f1/c0/07/f1c007ca-c253-91a8-d2f2-85e4b05e8724/mzl.ostzcqzf.png/292x0w.png 2x,https://is2-ssl.mzstatic.com/image/thumb/Purple/v4/f1/c0/07/f1c007ca-c253-91a8-d2f2-85e4b05e8724/mzl.ostzcqzf.png/438x0w.png 3x" media="(min-width: 1069px)">
<!---->
<!---->
<source class="we-artwork__source we-artwork__source--lazyload" srcset="https://is2-ssl.mzstatic.com/image/thumb/Purple/v4/f1/c0/07/f1c007ca-c253-91a8-d2f2-85e4b05e8724/mzl.ostzcqzf.png/157x0w.png 1x,https://is2-ssl.mzstatic.com/image/thumb/Purple/v4/f1/c0/07/f1c007ca-c253-91a8-d2f2-85e4b05e8724/mzl.ostzcqzf.png/314x0w.png 2x,https://is2-ssl.mzstatic.com/image/thumb/Purple/v4/f1/c0/07/f1c007ca-c253-91a8-d2f2-85e4b05e8724/mzl.ostzcqzf.png/471x0w.png 3x" data-srcset="https://is2-ssl.mzstatic.com/image/thumb/Purple/v4/f1/c0/07/f1c007ca-c253-91a8-d2f2-85e4b05e8724/mzl.ostzcqzf.png/157x0w.png 1x,https://is2-ssl.mzstatic.com/image/thumb/Purple/v4/f1/c0/07/f1c007ca-c253-91a8-d2f2-85e4b05e8724/mzl.ostzcqzf.png/314x0w.png 2x,https://is2-ssl.mzstatic.com/image/thumb/Purple/v4/f1/c0/07/f1c007ca-c253-91a8-d2f2-85e4b05e8724/mzl.ostzcqzf.png/471x0w.png 3x" media="(min-width: 736px)">
<!---->
<!---->
<source class="we-artwork__source we-artwork__source--lazyload" srcset="https://is2-ssl.mzstatic.com/image/thumb/Purple/v4/f1/c0/07/f1c007ca-c253-91a8-d2f2-85e4b05e8724/mzl.ostzcqzf.png/320x0w.png 1x,https://is2-ssl.mzstatic.com/image/thumb/Purple/v4/f1/c0/07/f1c007ca-c253-91a8-d2f2-85e4b05e8724/mzl.ostzcqzf.png/640x0w.png 2x,https://is2-ssl.mzstatic.com/image/thumb/Purple/v4/f1/c0/07/f1c007ca-c253-91a8-d2f2-85e4b05e8724/mzl.ostzcqzf.png/960x0w.png 3x" data-srcset="https://is2-ssl.mzstatic.com/image/thumb/Purple/v4/f1/c0/07/f1c007ca-c253-91a8-d2f2-85e4b05e8724/mzl.ostzcqzf.png/320x0w.png 1x,https://is2-ssl.mzstatic.com/image/thumb/Purple/v4/f1/c0/07/f1c007ca-c253-91a8-d2f2-85e4b05e8724/mzl.ostzcqzf.png/640x0w.png 2x,https://is2-ssl.mzstatic.com/image/thumb/Purple/v4/f1/c0/07/f1c007ca-c253-91a8-d2f2-85e4b05e8724/mzl.ostzcqzf.png/960x0w.png 3x">
<img class="we-artwork__image we-artwork__image--lazyload ember237" src="./_TextWith - Superhuman Texting on the App Store_files/320x0w.png" data-src="https://is2-ssl.mzstatic.com/image/thumb/Purple/v4/f1/c0/07/f1c007ca-c253-91a8-d2f2-85e4b05e8724/mzl.ostzcqzf.png/320x0w.png" style="" alt="" height="320" width="320">
<style>
.ember237, #ember237::before {
width: 320px;
height: 320px;
}
.ember237::before {
padding-top: 100%;
}
@media (min-width: 736px) {
.ember237, #ember237::before {
width: 157px;
height: 157px;
}
.ember237::before {
padding-top: 100%;
}
}
@media (min-width: 1069px) {
.ember237, #ember237::before {
width: 146px;
height: 146px;
}
.ember237::before {
padding-top: 100%;
}
}
</style>
</picture>