aboutsummaryrefslogtreecommitdiff
path: root/ext/data/schemas
diff options
context:
space:
mode:
authormarv <rotrobmin@gmail.com>2024-07-03 03:00:07 -0700
committerGitHub <noreply@github.com>2024-07-03 10:00:07 +0000
commit066ca66fc4033da39d0aecd73b0f5c200cb3f3ed (patch)
tree64d00048c4dd0b422141a72b9c6b1310f59fc496 /ext/data/schemas
parentc1f0343feeb8b8a8feaa942022150f971e118659 (diff)
Add Option for Scanning Alt Text (#1169)
* Add Option for Scanning Alt Text * Don't scan alt text if option disabled * Add scanAltText to Options Schema * Add `scanning.scanAltText` Update Function * Bump Options Test Version * Remove Param Annotation
Diffstat (limited to 'ext/data/schemas')
-rw-r--r--ext/data/schemas/options-schema.json5
1 files changed, 5 insertions, 0 deletions
diff --git a/ext/data/schemas/options-schema.json b/ext/data/schemas/options-schema.json
index 2fb1c9c3..85e02c02 100644
--- a/ext/data/schemas/options-schema.json
+++ b/ext/data/schemas/options-schema.json
@@ -437,6 +437,7 @@
"hideDelay",
"length",
"deepDomScan",
+ "scanAltText",
"popupNestingMaxDepth",
"enablePopupSearch",
"enableOnPopupExpressions",
@@ -688,6 +689,10 @@
"type": "boolean",
"default": false
},
+ "scanAltText": {
+ "type": "boolean",
+ "default": true
+ },
"popupNestingMaxDepth": {
"type": "integer",
"minimum": 0,