diff options
Diffstat (limited to 'ext/bg')
-rw-r--r-- | ext/bg/js/options.js | 2 | ||||
-rw-r--r-- | ext/bg/js/util.js | 1 | ||||
-rw-r--r-- | ext/bg/options.html | 4 |
3 files changed, 7 insertions, 0 deletions
diff --git a/ext/bg/js/options.js b/ext/bg/js/options.js index 3eadb779..4a7b88c1 100644 --- a/ext/bg/js/options.js +++ b/ext/bg/js/options.js @@ -32,6 +32,7 @@ function formRead() { optionsNew.general.maxResults = parseInt($('#max-displayed-results').val(), 10); optionsNew.scanning.requireShift = $('#hold-shift-to-scan').prop('checked'); + optionsNew.scanning.middleMouse = $('#middle-mouse-button-scan').prop('checked'); optionsNew.scanning.selectText = $('#select-matched-text').prop('checked'); optionsNew.scanning.imposter = $('#search-form-text-fields').prop('checked'); optionsNew.scanning.delay = parseInt($('#scan-delay').val(), 10); @@ -113,6 +114,7 @@ $(document).ready(() => { $('#max-displayed-results').val(options.general.maxResults); $('#hold-shift-to-scan').prop('checked', options.scanning.requireShift); + $('#middle-mouse-button-scan').prop('checked', options.scanning.middleMouse); $('#select-matched-text').prop('checked', options.scanning.selectText); $('#search-form-text-fields').prop('checked', options.scanning.imposter); $('#scan-delay').val(options.scanning.delay); diff --git a/ext/bg/js/util.js b/ext/bg/js/util.js index 2fd77130..e847090f 100644 --- a/ext/bg/js/util.js +++ b/ext/bg/js/util.js @@ -84,6 +84,7 @@ function optionsSetDefaults(options) { scanning: { requireShift: true, + middleMouse: true, selectText: true, imposter: true, delay: 15, diff --git a/ext/bg/options.html b/ext/bg/options.html index 2a6928cf..298a10f9 100644 --- a/ext/bg/options.html +++ b/ext/bg/options.html @@ -55,6 +55,10 @@ </div> <div class="checkbox"> + <label><input type="checkbox" id="middle-mouse-button-scan"> Middle mouse button scanning</label> + </div> + + <div class="checkbox"> <label><input type="checkbox" id="select-matched-text"> Select matched text</label> </div> |