mirror of
https://github.com/keepassxreboot/keepassxc-browser.git
synced 2026-03-11 08:54:43 +00:00
Autofilling single entry no longer enabled as default (not safe)
This commit is contained in:
parent
05c95f1b3e
commit
5395740086
2 changed files with 2 additions and 2 deletions
|
|
@ -22,7 +22,7 @@ page.initSettings = function() {
|
|||
page.settings.usePasswordGenerator = 1;
|
||||
}
|
||||
if(!("autoFillSingleEntry" in page.settings)) {
|
||||
page.settings.autoFillSingleEntry = 1;
|
||||
page.settings.autoFillSingleEntry = 0;
|
||||
}
|
||||
if(!("autoRetrieveCredentials" in page.settings)) {
|
||||
page.settings.autoRetrieveCredentials = 1;
|
||||
|
|
|
|||
|
|
@ -104,7 +104,7 @@
|
|||
<p>
|
||||
<div class="checkbox">
|
||||
<label class="checkbox">
|
||||
<input type="checkbox" name="autoFillSingleEntry" value="1" /> Automatically fill-in single credentials entry.
|
||||
<input type="checkbox" name="autoFillSingleEntry" value="0" /> Automatically fill-in single credentials entry.
|
||||
</label>
|
||||
<span class="help-block">If chromeKeePassXC does only receive a single entry from KeePassXC it automatically fills this credentials into the found credential fields.</span>
|
||||
<span class="bg-danger">Warning! Using auto-fill is not safe. Use at your own risk.</span>
|
||||
|
|
|
|||
Loading…
Reference in a new issue