aboutsummaryrefslogtreecommitdiff
path: root/ext/bg/data/options-schema.json
blob: da1f1ce09b659875e88df3ac4014b409e5e2ada7 (plain)
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
{
    "$schema": "http://json-schema.org/draft-07/schema#",
    "type": "object",
    "required": [
        "version",
        "profiles",
        "profileCurrent",
        "global"
    ],
    "properties": {
        "version": {
            "type": "integer",
            "minimum": 0,
            "default": 0
        },
        "profiles": {
            "type": "array",
            "items": {
                "type": "object",
                "required": [
                    "name",
                    "conditionGroups",
                    "options"
                ],
                "properties": {
                    "name": {
                        "type": "string",
                        "default": "Default"
                    },
                    "conditionGroups": {
                        "type": "array",
                        "items": {
                            "type": "object",
                            "required": [
                                "conditions"
                            ],
                            "properties": {
                                "conditions": {
                                    "type": "array",
                                    "items": {
                                        "type": "object",
                                        "required": [
                                            "type",
                                            "operator",
                                            "value"
                                        ],
                                        "properties": {
                                            "type": {
                                                "type": "string"
                                            },
                                            "operator": {
                                                "type": "string"
                                            },
                                            "value": {}
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "options": {
                        "type": "object",
                        "required": [
                            "version",
                            "general",
                            "audio",
                            "scanning",
                            "translation",
                            "dictionaries",
                            "parsing",
                            "anki"
                        ],
                        "properties": {
                            "version": {
                                "type": "integer",
                                "minimum": 0
                            },
                            "general": {
                                "type": "object",
                                "required": [
                                    "enable",
                                    "enableClipboardPopups",
                                    "resultOutputMode",
                                    "debugInfo",
                                    "maxResults",
                                    "showAdvanced",
                                    "popupDisplayMode",
                                    "popupWidth",
                                    "popupHeight",
                                    "popupHorizontalOffset",
                                    "popupVerticalOffset",
                                    "popupHorizontalOffset2",
                                    "popupVerticalOffset2",
                                    "popupHorizontalTextPosition",
                                    "popupVerticalTextPosition",
                                    "popupScalingFactor",
                                    "popupScaleRelativeToPageZoom",
                                    "popupScaleRelativeToVisualViewport",
                                    "showGuide",
                                    "compactTags",
                                    "compactGlossaries",
                                    "mainDictionary",
                                    "popupTheme",
                                    "popupOuterTheme",
                                    "customPopupCss",
                                    "customPopupOuterCss",
                                    "enableWanakana",
                                    "enableClipboardMonitor",
                                    "showPitchAccentDownstepNotation",
                                    "showPitchAccentPositionNotation",
                                    "showPitchAccentGraph",
                                    "showIframePopupsInRootFrame"
                                ],
                                "properties": {
                                    "enable": {
                                        "type": "boolean",
                                        "default": true
                                    },
                                    "enableClipboardPopups": {
                                        "type": "boolean",
                                        "default": false
                                    },
                                    "resultOutputMode": {
                                        "type": "string",
                                        "enum": ["group", "merge", "split"],
                                        "default": "group"
                                    },
                                    "debugInfo": {
                                        "type": "boolean",
                                        "default": false
                                    },
                                    "maxResults": {
                                        "type": "integer",
                                        "minimum": 1,
                                        "default": 32
                                    },
                                    "showAdvanced": {
                                        "type": "boolean",
                                        "default": false
                                    },
                                    "popupDisplayMode": {
                                        "type": "string",
                                        "enum": ["default", "full-width"],
                                        "default": "default"
                                    },
                                    "popupWidth": {
                                        "type": "number",
                                        "minimum": 0,
                                        "default": 400
                                    },
                                    "popupHeight": {
                                        "type": "number",
                                        "minimum": 0,
                                        "default": 250
                                    },
                                    "popupHorizontalOffset": {
                                        "type": "number",
                                        "default": 0
                                    },
                                    "popupVerticalOffset": {
                                        "type": "number",
                                        "default": 10
                                    },
                                    "popupHorizontalOffset2": {
                                        "type": "number",
                                        "default": 10
                                    },
                                    "popupVerticalOffset2": {
                                        "type": "number",
                                        "default": 0
                                    },
                                    "popupHorizontalTextPosition": {
                                        "type": "string",
                                        "enum": ["below", "above"],
                                        "default": "below"
                                    },
                                    "popupVerticalTextPosition": {
                                        "type": "string",
                                        "enum": ["default", "before", "after", "left", "right"],
                                        "default": "before"
                                    },
                                    "popupScalingFactor": {
                                        "type": "number",
                                        "default": 1
                                    },
                                    "popupScaleRelativeToPageZoom": {
                                        "type": "boolean",
                                        "default": false
                                    },
                                    "popupScaleRelativeToVisualViewport": {
                                        "type": "boolean",
                                        "default": true
                                    },
                                    "showGuide": {
                                        "type": "boolean",
                                        "default": true
                                    },
                                    "compactTags": {
                                        "type": "boolean",
                                        "default": false
                                    },
                                    "compactGlossaries": {
                                        "type": "boolean",
                                        "default": false
                                    },
                                    "mainDictionary": {
                                        "type": "string"
                                    },
                                    "popupTheme": {
                                        "type": "string",
                                        "enum": ["default", "dark"],
                                        "default": "default"
                                    },
                                    "popupOuterTheme": {
                                        "type": "string",
                                        "enum": ["default", "dark", "auto"],
                                        "default": "default"
                                    },
                                    "customPopupCss": {
                                        "type": "string",
                                        "default": ""
                                    },
                                    "customPopupOuterCss": {
                                        "type": "string",
                                        "default": ""
                                    },
                                    "enableWanakana": {
                                        "type": "boolean",
                                        "default": true
                                    },
                                    "enableClipboardMonitor": {
                                        "type": "boolean",
                                        "default": false
                                    },
                                    "showPitchAccentDownstepNotation": {
                                        "type": "boolean",
                                        "default": true
                                    },
                                    "showPitchAccentPositionNotation": {
                                        "type": "boolean",
                                        "default": true
                                    },
                                    "showPitchAccentGraph": {
                                        "type": "boolean",
                                        "default": false
                                    },
                                    "showIframePopupsInRootFrame": {
                                        "type": "boolean",
                                        "default": false
                                    }
                                }
                            },
                            "audio": {
                                "type": "object",
                                "required": [
                                    "enabled",
                                    "sources",
                                    "volume",
                                    "autoPlay",
                                    "customSourceUrl",
                                    "textToSpeechVoice"
                                ],
                                "properties": {
                                    "enabled": {
                                        "type": "boolean",
                                        "default": true
                                    },
                                    "sources": {
                                        "type": "array",
                                        "items": {
                                            "type": "string",
                                            "enum": [
                                                "jpod101",
                                                "jpod101-alternate",
                                                "jisho",
                                                "text-to-speech",
                                                "text-to-speech-reading",
                                                "custom"
                                            ],
                                            "default": "jpod101"
                                        }
                                    },
                                    "volume": {
                                        "type": "number",
                                        "minimum": 0,
                                        "maximum": 100,
                                        "default": 100
                                    },
                                    "autoPlay": {
                                        "type": "boolean",
                                        "default": false
                                    },
                                    "customSourceUrl": {
                                        "type": "string",
                                        "default": ""
                                    },
                                    "textToSpeechVoice": {
                                        "type": "string",
                                        "default": ""
                                    }
                                }
                            },
                            "scanning": {
                                "type": "object",
                                "required": [
                                    "middleMouse",
                                    "touchInputEnabled",
                                    "selectText",
                                    "alphanumeric",
                                    "autoHideResults",
                                    "delay",
                                    "length",
                                    "modifier",
                                    "deepDomScan",
                                    "popupNestingMaxDepth",
                                    "enablePopupSearch",
                                    "enableOnPopupExpressions",
                                    "enableOnSearchPage",
                                    "enableSearchTags"
                                ],
                                "properties": {
                                    "middleMouse": {
                                        "type": "boolean",
                                        "default": true
                                    },
                                    "touchInputEnabled": {
                                        "type": "boolean",
                                        "default": true
                                    },
                                    "selectText": {
                                        "type": "boolean",
                                        "default": true
                                    },
                                    "alphanumeric": {
                                        "type": "boolean",
                                        "default": true
                                    },
                                    "autoHideResults": {
                                        "type": "boolean",
                                        "default": false
                                    },
                                    "delay": {
                                        "type": "number",
                                        "minimum": 0,
                                        "default": 20
                                    },
                                    "length": {
                                        "type": "integer",
                                        "minimum": 1,
                                        "default": 10
                                    },
                                    "modifier": {
                                        "type": "string",
                                        "enum": ["none", "alt", "ctrl", "shift"],
                                        "default": "shift"
                                    },
                                    "deepDomScan": {
                                        "type": "boolean",
                                        "default": false
                                    },
                                    "popupNestingMaxDepth": {
                                        "type": "integer",
                                        "minimum": 0,
                                        "default": 0
                                    },
                                    "enablePopupSearch": {
                                        "type": "boolean",
                                        "default": false
                                    },
                                    "enableOnPopupExpressions": {
                                        "type": "boolean",
                                        "default": false
                                    },
                                    "enableOnSearchPage": {
                                        "type": "boolean",
                                        "default": true
                                    },
                                    "enableSearchTags": {
                                        "type": "boolean",
                                        "default": false
                                    }
                                }
                            },
                            "translation": {
                                "type": "object",
                                "required": [
                                    "convertHalfWidthCharacters",
                                    "convertNumericCharacters",
                                    "convertAlphabeticCharacters",
                                    "convertHiraganaToKatakana",
                                    "convertKatakanaToHiragana"
                                ],
                                "properties": {
                                    "convertHalfWidthCharacters": {
                                        "type": "string",
                                        "enum": ["false", "true", "variant"],
                                        "default": "false"
                                    },
                                    "convertNumericCharacters": {
                                        "type": "string",
                                        "enum": ["false", "true", "variant"],
                                        "default": "false"
                                    },
                                    "convertAlphabeticCharacters": {
                                        "type": "string",
                                        "enum": ["false", "true", "variant"],
                                        "default": "false"
                                    },
                                    "convertHiraganaToKatakana": {
                                        "type": "string",
                                        "enum": ["false", "true", "variant"],
                                        "default": "false"
                                    },
                                    "convertKatakanaToHiragana": {
                                        "type": "string",
                                        "enum": ["false", "true", "variant"],
                                        "default": "variant"
                                    }
                                }
                            },
                            "dictionaries": {
                                "type": "object",
                                "additionalProperties": {
                                    "type": "object",
                                    "required": [
                                        "priority",
                                        "enabled",
                                        "allowSecondarySearches"
                                    ],
                                    "properties": {
                                        "priority": {
                                            "type": "number",
                                            "default": 0
                                        },
                                        "enabled": {
                                            "type": "boolean",
                                            "default": true
                                        },
                                        "allowSecondarySearches": {
                                            "type": "boolean",
                                            "default": false
                                        }
                                    }
                                }
                            },
                            "parsing": {
                                "type": "object",
                                "required": [
                                    "enableScanningParser",
                                    "enableMecabParser",
                                    "selectedParser",
                                    "termSpacing",
                                    "readingMode"
                                ],
                                "properties": {
                                    "enableScanningParser": {
                                        "type": "boolean",
                                        "default": true
                                    },
                                    "enableMecabParser": {
                                        "type": "boolean",
                                        "default": false
                                    },
                                    "selectedParser": {
                                        "type": ["string", "null"],
                                        "default": null
                                    },
                                    "termSpacing": {
                                        "type": "boolean",
                                        "default": true
                                    },
                                    "readingMode": {
                                        "type": "string",
                                        "enum": ["hiragana", "katakana", "romaji", "none"],
                                        "default": "hiragana"
                                    }
                                }
                            },
                            "anki": {
                                "type": "object",
                                "required": [
                                    "enable",
                                    "server",
                                    "tags",
                                    "sentenceExt",
                                    "screenshot",
                                    "terms",
                                    "kanji",
                                    "fieldTemplates"
                                ],
                                "properties": {
                                    "enable": {
                                        "type": "boolean",
                                        "default": false
                                    },
                                    "server": {
                                        "type": "string",
                                        "default": "http://127.0.0.1:8765"
                                    },
                                    "tags": {
                                        "type": "array",
                                        "items": {
                                            "type": "string"
                                        },
                                        "default": [
                                            "yomichan"
                                        ]
                                    },
                                    "sentenceExt": {
                                        "type": "integer",
                                        "minimum": 0,
                                        "default": 200
                                    },
                                    "screenshot": {
                                        "type": "object",
                                        "required": [
                                            "format",
                                            "quality"
                                        ],
                                        "properties": {
                                            "format": {
                                                "type": "string",
                                                "enum": ["png", "jpeg"],
                                                "default": "png"
                                            },
                                            "quality": {
                                                "type": "integer",
                                                "minimum": 0,
                                                "maximum": 100,
                                                "default": 92
                                            }
                                        }
                                    },
                                    "terms": {
                                        "type": "object",
                                        "required": [
                                            "deck",
                                            "model",
                                            "fields"
                                        ],
                                        "properties": {
                                            "deck": {
                                                "type": "string",
                                                "default": ""
                                            },
                                            "model": {
                                                "type": "string",
                                                "default": ""
                                            },
                                            "fields": {
                                                "type": "object",
                                                "additionalProperties": {
                                                    "type": "string",
                                                    "default": ""
                                                }
                                            }
                                        }
                                    },
                                    "kanji": {
                                        "type": "object",
                                        "required": [
                                            "deck",
                                            "model",
                                            "fields"
                                        ],
                                        "properties": {
                                            "deck": {
                                                "type": "string",
                                                "default": ""
                                            },
                                            "model": {
                                                "type": "string",
                                                "default": ""
                                            },
                                            "fields": {
                                                "type": "object",
                                                "additionalProperties": {
                                                    "type": "string",
                                                    "default": ""
                                                }
                                            }
                                        }
                                    },
                                    "fieldTemplates": {
                                        "type": ["string", "null"],
                                        "default": null
                                    }
                                }
                            }
                        }
                    }
                }
            }
        },
        "profileCurrent": {
            "type": "integer",
            "minimum": 0,
            "default": 0
        },
        "global": {
            "type": "object",
            "required": [
                "database"
            ],
            "properties": {
                "database": {
                    "type": "object",
                    "required": [
                        "prefixWildcardsSupported"
                    ],
                    "properties": {
                        "prefixWildcardsSupported": {
                            "type": "boolean",
                            "default": false
                        }
                    }
                }
            }
        }
    }
}