add new autofill on page load features

This commit is contained in:
Tom Rittson 2020-10-27 08:13:09 +10:00 committed by Thomas Rittson
parent 384b352a97
commit 396870e507
2 changed files with 8 additions and 8 deletions

View File

@ -3,12 +3,8 @@ document.addEventListener('DOMContentLoaded', event => {
let filledThisHref = false;
let delayFillTimeout: number;
const enabledKey = 'enableAutoFillOnPageLoad';
chrome.storage.local.get(enabledKey, (obj: any) => {
if (obj != null && obj[enabledKey] === true) {
setInterval(() => doFillIfNeeded(), 500);
}
});
setInterval(() => doFillIfNeeded(), 500);
chrome.runtime.onMessage.addListener((msg: any, sender: any, sendResponse: Function) => {
if (msg.command === 'fillForm' && pageHref === msg.url) {
filledThisHref = true;

View File

@ -245,12 +245,16 @@ export default class AutofillService implements AutofillServiceInterface {
if (fromCommand) {
cipher = await this.cipherService.getNextCipherForUrl(tab.url);
} else {
const lastLaunchedCipher = await this.cipherService.getLastLaunchedForUrl(tab.url);
const lastLaunchedCipher = await this.cipherService.getLastLaunchedForUrl(tab.url, true);
if (lastLaunchedCipher && Date.now().valueOf() - lastLaunchedCipher.localData?.lastLaunched?.valueOf() < 30000) {
cipher = lastLaunchedCipher;
}
else {
cipher = await this.cipherService.getLastUsedForUrl(tab.url);
cipher = await this.cipherService.getLastUsedForUrl(tab.url, true);
}
if (cipher === null) {
return null;
}
}