-
Notifications
You must be signed in to change notification settings - Fork 62
Expand file tree
/
Copy pathpre_mm_payload3.json
More file actions
3686 lines (3684 loc) · 184 KB
/
pre_mm_payload3.json
File metadata and controls
3686 lines (3684 loc) · 184 KB
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
{
"gpiiKey": "screenreader",
"preferences": {
"contexts": {
"gpii-default": {
"name": "Default preferences",
"preferences": {
"http://registry.gpii.net/common/speakTutorialMessages": false ,
"http://registry.gpii.net/common/keyEcho": false ,
"http://registry.gpii.net/common/wordEcho": true ,
"http://registry.gpii.net/common/announceCapitals": true ,
"http://registry.gpii.net/common/readingUnit": "word" ,
"http://registry.gpii.net/common/punctuationVerbosity": "all" ,
"http://registry.gpii.net/common/screenReaderTTS/enabled": true ,
"http://registry.gpii.net/common/trackingTTS": ["mouse", "caret"],
"http://registry.gpii.net/common/speechRate": 400 ,
"http://registry.gpii.net/common/auditoryOutLanguage": "en-BS",
"http://registry.gpii.net/common/pitch": 0.1 ,
"http://registry.gpii.net/common/volumeTTS": 0.75
}
}
}
},
"deviceContext": {
"solutions": [
{
"id": "com.freedomscientific.jaws"
}, {
"id": "org.nvda-project"
}
],
"OS": {
"id": "win32",
"version": "6.1.7601"
}
},
"solutionsRegistryEntries": {
"com.freedomscientific.jaws": {
"name": "JAWS",
"contexts": {
"OS": [
{
"id": "win32"
}
]
},
"capabilities": [
"http://registry\\.gpii\\.net/common/screenReaderTTS/enabled"
],
"settingsHandlers": {
"configuration1": {
"type": "gpii.settingsHandlers.INISettingsHandler",
"liveness": "manualRestart",
"options": {
"filename": "${{environment}.APPDATA}\\Freedom Scientific\\JAWS\\2020\\Settings\\enu\\DEFAULT.JCF"
},
"supportedSettings": {
"Braille.AllDotsBrailleCursor": {
"title": "All Dots Braille Cursor",
"description": "Whether to display the braille cursor as all dots raised instead of showing it using only dots seven and eight.",
"enum": [
0,
1
],
"enumLabels": [
"off",
"on"
],
"default": 0
},
"Braille.AttributeRotationDelay": {
"schema": {
"title": "Attribute Rotation Delay",
"description": "When in Attribute Mode and characters have multiple attributes, determines how long each attribute should be shown for. This value is in Milliseconds.",
"type": "integer",
"default": 1000
}
},
"Braille.AutoPanMode": {
"schema": {
"title": "Auto Pan Mode",
"description": "The \"Auto Pan\" algorithm to use.",
"enum": [
0,
1,
2,
3,
4,
5,
6,
255
],
"enumLabels": [
"off",
"move display minimally to include whole word containing cursor",
"match user pan",
"move display to show whole word at cursor nearest the middle of the display area",
"maximize text after cursor",
"maximize text before cursor",
"autopan to default structured segment",
"Smart Autopan, autopan using the best algorithm for the current situation"
],
"default": 255
}
},
"Braille.BrailleAutoRouteToCursor": {
"title": "Braille Auto Route To Cursor",
"description": "Whether to automatically route the Braille display to the active cursor whenever the active cursor moves or a key on the keyboard is pressed.",
"enum": [
0,
1
],
"enumLabels": [
"off",
"on"
],
"default": 1
},
"Braille.BrailleCursorBlinkRate": {
"title": "Braille Cursor Blink Rate",
"description": "Speed, in milliseconds, at which the cursor on the braille display should blink.",
"type": "integer",
"default": 500
},
"Braille.BrailleKeyInterruptSpeech": {
"title": "Braille Key Interrupt Speech",
"description": "Whether to Interrupt speech if a keystroke in the Braille display is pressed.",
"enum": [
0,
1
],
"enumLabels": [
"off",
"on"
],
"default": 1
},
"Braille.BrailleMessages": {
"schema": {
"title": "Enable Flash Messages",
"description": "Whether or not to show Flash Messages on a braille display.",
"enum": [
0,
1
],
"enumLabels": [
"off",
"on"
],
"default": 1
}
},
"Braille.BrailleMode": {
"schema": {
"title": "Braille Mode",
"description": "Use this option to control the format of the information sent to the braille display. When Line mode is selected, JAWS sends the line of text at the current cursor position to the braille display. When Structured mode is selected, JAWS sends information to the display that is relevant to the current cursor position. The information sent includes things such as control type, dialog name, or number of items in a list. When Speech Output mode is selected, JAWS sends the same text to the display that it sends to the synthesizer. The default setting for this option is Structured.",
"type": "number",
"default": 1,
"enum": [
0,
1,
2,
3
],
"enumLabels": [
"line",
"structured",
"speech output",
"attribute indicators"
]
}
},
"Braille.BrailleMoveActiveCursor": {
"title": "Braille Move Active Cursor",
"description": "Whether to move the active cursor when the Braille cursor moves.",
"enum": [
0,
1
],
"enumLabels": [
"off",
"on"
],
"default": 0
},
"Braille.BrailleSleepMode": {
"schema": {
"title": "Enable Braille Sleep Mode",
"description": "Whether to turn off the braille driver, typically used to disable braille for a specific application.",
"enum": [
0,
1
],
"enumLabels": [
"off",
"on"
],
"default": 0
}
},
"Braille.BrailleVerbosity": {
"schema": {
"title": "Braille Verbosity",
"description": "Sets braille verbosity for Flash messages.",
"enum": [
0,
1,
2
],
"enumLabels": [
"beginner",
"intermediate",
"advanced"
]
}
},
"Braille.ContractedBrailleInput": {
"title": "Contracted Braille Input",
"description": "Enable contracted braille to be entered on the braille display's keyboard.",
"enum": [
0,
1
],
"enumLabels": [
"off",
"on"
],
"default": 0
},
"Braille.EightDotBraille": {
"schema": {
"title": "Braille Dots",
"description": "The number of braille dots (six or eight) to use.",
"enum": [
0,
1
],
"enumLabels": [
"6 dot braille",
"8 dot braille"
],
"default": 1
}
},
"Braille.FilterControlCharacters": {
"title": "Filter Control Characters",
"description": "Whether or not to filter certain control characters (currently newlines, linefeeds and tabs)",
"enum": [
0,
1
],
"enumLabels": [
"off",
"on"
],
"default": 1
},
"Braille.GeneralizeBullets": {
"title": "Generalize Bullets",
"description": "Whether to treat all bullets the same.",
"enum": [
0,
1
],
"enumLabels": [
"off",
"on"
],
"default": 0
},
"Braille.Grade2SuppressCapitalSigns": {
"title": "Grade2 Suppress Capital Signs",
"description": "When Grade 2 is on, whether or not to show capital indicators",
"enum": [
0,
1
],
"enumLabels": [
"off",
"on"
],
"default": 0
},
"Braille.MessagePrefixes": {
"schema": {
"title": "Enable Flash Message Prefixes",
"description": "If a display has no Status Cells, whether or not to prepend the Message Prefix to the Flash Message",
"enum": [
0,
1
],
"enumLabels": [
"off",
"on"
],
"default": 1
}
},
"Braille.MessageStatusText": {
"title": "Message Status Text",
"description": "The text to show in the status area of the display when a Flash message is being shown if the display has no status cells, the text will be prepended to the Flash message.",
"type": "string",
"default": "msg"
},
"Braille.MessageTime": {
"schema": {
"title": "Flash Message Timeout",
"description": "When a Flash message is sent to the display via a script, how long in milliseconds should it be shown if not specified by the script.",
"type": "integer",
"default": 5000
}
},
"Braille.ReversePanningButtons": {
"schema": {
"title": "Reverse Panning Buttons",
"description": "Whether or not panning buttons are reversed.",
"enum": [
0,
1
],
"enumLabels": [
"off",
"on"
],
"default": 0
}
},
"Braille.StructuredModeReverseOrder": {
"schema": {
"title": "Reverse Order of Structured Data",
"description": "Whether to reverse the order of the structured data to show the focused control's info first, followed by its grouping information, and then the dialog box information. By default, items are read in the opposite order.",
"enum": [
0,
1
],
"enumLabels": [
"off",
"on"
],
"default": 1
}
},
"Braille.UseHowManyStatusCells": {
"title": "Use How Many Status Cells",
"description": "How many cells to use for status information if the display defines none of its own.",
"type": "integer",
"default": 4
},
"Braille.UseScreenModelForBrailleInRichEdits": {
"title": "Use Screen Model for Braille in Rich Edits",
"description": "Whether to use the screen model when providing field prompts and text in Braille with rich edits.",
"enum": [
0,
1
],
"enumLabels": [
"off",
"on"
],
"default": 1
},
"Braille.WordWrap": {
"schema": {
"title": "Enable Word Wrap",
"description": "Whether or not to allow words to be split in order to maximize the use of the braille display. Ignored if panning is set to fixed increment",
"enum": [
0,
1
],
"enumLabels": [
"off",
"on"
],
"default": 1
}
},
"FSCasts.EnableNotifications": {
"schema": {
"title": "FSCast Notifications",
"description": "Whether to have JAWS display a dialog when new podcasts from Freedom Scientific are available.",
"enum": [
0,
1
],
"enumLabels": [
"off",
"on"
],
"default": 1
}
},
"HTML.Abbreviations": {
"schema": {
"title": "Abbreviations",
"description": "Whether to expand abbreviations. If this is enabled, abbreviations with a title attribute will have their title read instead of the on screen text.",
"type": "number",
"default": 0,
"enum": [
0,
1
],
"enumLabels": [
"off",
"on"
]
}
},
"HTML.AccessKeys": {
"schema": {
"title": "Speak Access Keys Within Web Page",
"description": "Whether to announce HTML element access keys when reading a web page.",
"enum": [
0,
1
],
"enumLabels": [
"off",
"on"
],
"default": 1
}
},
"HTML.Acronyms": {
"schema": {
"title": "Acronyms",
"description": "If this is enabled, acronyms with a title attribute will have their title read instead of the on screen text.",
"type": "number",
"default": 0,
"enum": [
0,
1
],
"enumLabels": [
"off",
"on"
]
}
},
"HTML.BlockQuoteIndication": {
"title": "Block Quote Indication",
"description": "Whether to indicate HTML block quotations.",
"enum": [
0,
1
],
"enumLabels": [
"off",
"on"
],
"default": 1
},
"HTML.EmbeddedActiveXSupport": {
"title": "Embedded ActiveX Support",
"description": "Whether or not to support embedded ActiveX controls such as Macromedia Flash Movies. If enabled, only objects defined in JActiveX.ini are affected by this setting.",
"enum": [
0,
1
],
"enumLabels": [
"off",
"on"
],
"default": 1
},
"HTML.ExpandAbbreviations": {
"schema": {
"title": "Expand Abbreviations",
"description": "Whether or not to expand abbreviations (using the abbr tag).",
"enum": [
0,
1
],
"enumLabels": [
"off",
"on"
],
"default": 0
}
},
"HTML.ExpandAcronyms": {
"schema": {
"title": "Expand Acronyms",
"description": "Whether or not to expand acronyms (using the acronym tag).",
"enum": [
0,
1
],
"enumLabels": [
"off",
"on"
],
"default": 0
}
},
"HTML.FilterConsecutiveDuplicateLinks": {
"schema": {
"title": "Filter Consecutive Duplicate Links",
"description": "Whether to skip (not announce) consecutive duplicate links.",
"type": "number",
"default": 1,
"enum": [
0,
1
],
"enumLabels": [
"off",
"on"
]
}
},
"HTML.FormFieldPromptOptions": {
"schema": {
"title": "Form Field Prompt Options",
"description": "Which attributes to prefer when describing form fields.",
"enum": [
0,
1,
2,
3,
4,
5
],
"enumLabels": [
"favor label tag",
"favor title attribute",
"favor alt attribute",
"favor longest",
"use both label and title if different",
"use both label and alt if different"
],
"default": 0
}
},
"HTML.FormsModeAutoOff": {
"schema": {
"title": "Forms Mode Auto Off",
"description": "Whether or not Forms Mode should be automatically turned off when the current page is updated.",
"enum": [
0,
1
],
"enumLabels": [
"Leave Forms Mode on",
"Turn Forms Mode off automatically"
],
"default": 1
}
},
"HTML.GraphicalLinkLastResort": {
"title": "Graphical Link Last Resort",
"description": "What to announce when a graphical link contains no title or alt text for its enclosing image and the enclosing anchor has no title.",
"enum": [0,1],
"enumLabels": "Read the image's src, Read the image's enclosing anchor's href.",
"default": 0
},
"HTML.IdentifyLinkType": {
"title": "Identify Link Type",
"description": "Whether to distinguish the various types of links e.g. \"FTP link\", \"mailto link\" versus simply announcing \"link\" for all types of links.",
"enum": [
0,
1
],
"enumLabels": [
"off",
"on"
],
"default": 1
},
"HTML.IdentifySamePageLinks": {
"title": "Identify Same Page Links",
"description": "Whether to identify links that point to other places on the current page by saying \"same page link\".",
"enum": [
0,
1
],
"enumLabels": [
"off",
"on"
],
"default": 1
},
"HTML.IgnoreInlineFrames": {
"schema": {
"title": "Ignore Inline Frames",
"description": "Whether to ignore inline frames, such as those used for advertising.",
"enum": [
0,
1
],
"enumLabels": [
"off",
"on"
],
"default": 0
}
},
"HTML.IncludeGraphics": {
"schema": {
"title": "Include Graphics",
"description": "Whether/when to include graphics in web pages.",
"enum": [
0,
1,
2
],
"enumLabels": [
"never include graphics",
"include graphics that have labels, i.e. alt=attributes",
"include all graphics"
],
"default": 1
}
},
"HTML.IndicateColSpan": {
"schema": {
"title": "Indicate ColSpan for Braille",
"description": "Whether to announce column spans when reading table data in web pages.",
"enum": [
0,
1
],
"enumLabels": [
"off",
"on"
],
"default": 1
}
},
"HTML.IndicateElementAttributes": {
"title": "Indicate Element Attributes",
"description": "Whether to announce any HTML attributes defined in the \"HTML Attributes Behavior\" map of the current scheme.",
"enum": [
0,
1
],
"enumLabels": [
"off",
"on"
],
"default": 1
},
"HTML.ListIndication": {
"title": "List Indication",
"description": "Whether to announce lists with the item count and nesting level.",
"enum": [
0,
1
],
"enumLabels": [
"off",
"on"
],
"default": 1
},
"HTML.MaxLineLength": {
"title": "Max Line Length",
"description": "The maximum number of characters which can appear on a line of a paragraph.",
"type": "integer",
"default": 150
},
"HTML.PageRefreshFilter": {
"title": "Page Refresh Filter",
"description": "How often, in milliseconds, to allow all refreshes. Set to 0 to allow all refreshes without any delay.",
"type": "integer",
"default": 0
},
"HTML.SayAllOnDocumentLoad": {
"schema": {
"title": "Read Web Pages Automatically When Loaded",
"description": "Whether to automatically read web pages when they're first loaded.",
"enum": [
0,
1
],
"enumLabels": [
"off",
"on"
],
"default": 1
}
},
"HTML.ScreenFollowsVCursor": {
"title": "Screen Follows Virtual Cursor",
"description": "Whether the screen should automatically scroll to display the line on which the Virtual Cursor is positioned.",
"enum": [
0,
1
],
"enumLabels": [
"off",
"on"
],
"default": 1
},
"HTML.SkipPastRepeatedText": {
"title": "Skip Past Repeated Text",
"description": "Whether to position the Virtual Cursor on the first line which is different than the previous page whenever a new page is displayed.",
"enum": [
0,
1
],
"enumLabels": [
"off",
"on"
],
"default": 1
},
"HTML.SmartNavigation": {
"schema": {
"title": "Smart Navigation",
"description": "Whether to enable \"smart navigation\" when reading web pages.",
"enum": [
0,
1
],
"enumLabels": [
"off",
"on"
],
"default": 0
}
},
"HTML.TableDetection": {
"title": "Table Detection",
"description": "Whether to announce all tables, or only data tables.",
"enum": ["0","1"],
"enumLabels": "Indicate all tables, Only indicate data tables",
"default": "1"
},
"HTML.TblMaxCellTextLength": {
"title": "Table Maximum Cell Text Length",
"description": "A cell is considered a valid data cell if it contains upto this number of characters",
"type": "integer",
"default": 250
},
"HTML.TblMinCellTextLength": {
"title": "Table Minimum Cell Text Length",
"description": "A cell is considered a valid data cell if it contains at least this number of characters",
"type": "integer",
"default": 1
},
"HTML.TblMinTextColumns": {
"title": "Table Minimum Text Columns",
"description": "This option specifies the minimum number of columns which must contain text in order for the table to be considered a data table.",
"type": "integer",
"default": 2
},
"HTML.TblMinTextRows": {
"title": "Table Minimum Text Rows",
"description": "This option specifies the minimum number of rows which must contain text in order for the table to be considered a data table.",
"type": "integer",
"default": 2
},
"HTML.TblMinValidDataRows": {
"title": "Table Minimum Valid Data Rows",
"description": "Next options used for configuring how data tables are detected This option specifies the minimum number of valid data rows that a table must contain in order for it to be considered a data table.",
"type": "integer",
"default": 2
},
"HTML.TblValidRowThreshold": {
"title": "Table Valid Row Threshold",
"description": "This option specifies the minimum number of cells that a row must contain in order for it to be considered a valid data row.",
"type": "integer",
"default": 2
},
"HTML.TextBlockLength": {
"schema": {
"title": "Text Block Length",
"description": "The number of consecutive characters that must appear in a web page for JAWS to treat this as a block of text.",
"type": "integer",
"default": 25
}
},
"HTML.UseLegacyIESupport": {
"title": "Use Legacy IE Support",
"description": "Whether or not to use legacy IE support instead of the default FS Dom Server support.",
"enum": [
0,
1
],
"enumLabels": [
"off",
"on"
],
"default": 1
},
"HTML.WrapNavigation": {
"title": "Wrap Navigation",
"description": "Whether or not to allow navigation keystrokes such as tab and shift tab to wrap to the top or bottom of the document.",
"enum": [
0,
1
],
"enumLabels": [
"off",
"on"
],
"default": 1
},
"Options.AllCapsIndicator": {
"schema": {
"title": "AllCapsIndicator",
"description": "The text to read before text that appears in all capital letters.",
"type": "string",
"default": "all cap"
}
},
"Options.AllowMouseEchoWhenMuted": {
"schema": {
"title": "Allow Mouse Echo",
"description": "Whether to echo mouse movement when otherwise muted.",
"enum": [
0,
1
],
"enumLabels": [
"off",
"on"
],
"default": 0
}
},
"Options.AllowSpeechOnDemandWhenMuted": {
"schema": {
"title": "Allow Reading Commands",
"description": "Whether to allow speech on demand when otherwise muted.",
"enum": [
0,
1
],
"enumLabels": [
"off",
"on"
],
"default": 1
}
},
"Options.AllowTypingEchoWhenMuted": {
"schema": {
"title": "Allow Typing Echo",
"description": "Whether to echo typed keys when otherwise muted.",
"enum": [
0,
1
],
"enumLabels": [
"off",
"on"
],
"default": 0
}
},
"Options.CapIndicator": {
"schema": {
"title": "Cap Indicator",
"description": "The text to read before a capital letter.",
"type": "string",
"default": "cap"
}
},
"Options.CaretBlinkRate": {
"schema": {
"title": "Caret Blink Rate",
"description": "How fast the caret blinks, in milliseconds.",
"type": "integer",
"default": 53,
"minimum": 1
}
},
"Options.CaretDetect": {
"schema": {
"title": "Caret Detect",
"description": "How many cursor blinks are used to locate the caret.",
"type": "integer",
"default": 1,
"minimum": 1
}
},
"Options.CaretDetectTimeOut": {
"schema": {
"title": "Caret Detect Timeout",
"description": "The number of milliseconds before JAWS for Windows will give up looking for the caret",
"type": "integer",
"default": 250,
"minimum": 0
}
},
"OSM.CaretTimeOut": {
"title": "Caret Time Out",
"description": "The time in milliseconds to wait before redrawing the caret.",
"type": "integer",
"default": 1000
},
"Options.Case": {
"schema": {
"title": "Case",
"description": "Whether to indicate the case of spoken text with a change of inflection.",
"type": "number",
"default": 1,
"enum": [
0,
1
],
"enumLabels": [
"off",
"on"
]
}
},
"Options.CustomPageSummary": {
"schema": {
"title": "Custom Page Summary",
"description": "What to do when a virtual document loads for which a custom page summary has been defined.",
"type": "number",
"default": 0,
"enum": [
0,
1,
2
],
"enumLabels": [
"do nothing (\"Say All\" will be started as normal)",
"The summary will be spoken and focus left on the page at the place defined by the page",
"the summary will be presented in the virtual viewer for the user to immediately read"
]
}
},
"Options.DetectKeyboardInputLanguage": {
"schema": {
"title": "Detect Keyboard Languages",
"description": "Whether to detect the language used by the keyboard.",
"enum": [
0,
1
],
"enumLabels": [
"off",
"on"
],
"default": 1
}
},
"Options.Dictionary": {
"schema": {
"title": "Dictionary",
"description": "Whether words, phrases, abbreviations, or symbols should be processed through a global or application specific dictionary to determine proper pronunciation. This is enabled by default.",
"type": "number",
"default": 0,
"enum": [
0,
1
],
"enumLabels": [
"off",
"on"
]
}
},
"Options.Filter": {
"schema": {
"title": "Filter",
"description": "Determines how repeated characters are handled.",
"type": "number",
"default": 0,
"enum": [
0,
1,
2,
3,
4,
5
],
"enumLabels": [
"Say First 3 Repeated Characters",
"Say First 4 Repeated Characters",
"Say First 5 Repeated Characters",
"Say First 6 Repeated Characters",
"Say All Repeated Characters",
"Count Repeated Characters"
]
}
},
"Options.GeneralizeDialect": {
"schema": {
"title": "Generalize Dialect",
"description": "Whether to switch languages when encountering content with the same underlying base language.",
"enum": [
0,
1
],
"enumLabels": [
"off",
"on"
],
"default": 1
}
},
"Options.Indentation": {
"schema": {