From 539574008604e7f1f9cb0c2a20436ed73730deeb Mon Sep 17 00:00:00 2001 From: varjolintu Date: Fri, 28 Apr 2017 11:07:41 +0300 Subject: [PATCH] Autofilling single entry no longer enabled as default (not safe) --- chromeKeePassXC/background/page.js | 2 +- chromeKeePassXC/options/options.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/chromeKeePassXC/background/page.js b/chromeKeePassXC/background/page.js index a4f6fa9..7006344 100644 --- a/chromeKeePassXC/background/page.js +++ b/chromeKeePassXC/background/page.js @@ -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; diff --git a/chromeKeePassXC/options/options.html b/chromeKeePassXC/options/options.html index ac690a2..c6ddfad 100644 --- a/chromeKeePassXC/options/options.html +++ b/chromeKeePassXC/options/options.html @@ -104,7 +104,7 @@

If chromeKeePassXC does only receive a single entry from KeePassXC it automatically fills this credentials into the found credential fields. Warning! Using auto-fill is not safe. Use at your own risk.