diff --git a/src/background.js b/src/background.js index e344f11e41..5d45e0023d 100644 --- a/src/background.js +++ b/src/background.js @@ -352,11 +352,10 @@ function autofillPage() { return; } - var fillScript = null; if (siteToAutoFill && pageDetailsToAutoFill && pageDetailsToAutoFill.length) { for (var i = 0; i < pageDetailsToAutoFill.length; i++) { // make sure we're still on correct tab - if (pageDetailsToAutoFill[i].tabId != tabId) { + if (pageDetailsToAutoFill[i].tabId !== tabId) { continue; } diff --git a/src/manifest.json b/src/manifest.json index 3cdc904757..b2cf58ea91 100644 --- a/src/manifest.json +++ b/src/manifest.json @@ -5,6 +5,7 @@ "version": "1.5.0", "description": "__MSG_extDesc__", "default_locale": "en", + "author": "8bit Solutions LLC", "homepage_url": "https://bitwarden.com", "icons": { "16": "images/icon16.png",