diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2020-09-26 19:24:21 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-26 19:24:21 -0400 |
commit | 73dd578821d1373d4504778318e2e2f26b79a80e (patch) | |
tree | 7b96fd5bfef81de55175fc5a97ddee11cbb2ed1b /ext/bg/data | |
parent | 9c7b9d666087add0f72900c045ee43ed05c5b467 (diff) |
Add middle mouse prevention option (#868)
* Add preventMiddleMouse option to TextScanner
* Add preventMiddleMouse options
* Add options
* Apply preventMiddleMouse options
Diffstat (limited to 'ext/bg/data')
-rw-r--r-- | ext/bg/data/options-schema.json | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/ext/bg/data/options-schema.json b/ext/bg/data/options-schema.json index 2e324984..80f8d782 100644 --- a/ext/bg/data/options-schema.json +++ b/ext/bg/data/options-schema.json @@ -320,6 +320,7 @@ "type": "object", "required": [ "inputs", + "preventMiddleMouse", "touchInputEnabled", "pointerEventsEnabled", "selectText", @@ -454,6 +455,33 @@ } } }, + "preventMiddleMouse": { + "type": "object", + "required": [ + "onWebPages", + "onPopupPages", + "onSearchPages", + "onSearchQuery" + ], + "properties": { + "onWebPages": { + "type": "boolean", + "default": false + }, + "onPopupPages": { + "type": "boolean", + "default": false + }, + "onSearchPages": { + "type": "boolean", + "default": false + }, + "onSearchQuery": { + "type": "boolean", + "default": false + } + } + }, "touchInputEnabled": { "type": "boolean", "default": true |