Fix js lint issues with background.js
This commit is contained in:
parent
2e9d880259
commit
2e1fbcf003
|
@ -352,11 +352,10 @@ function autofillPage() {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
var fillScript = null;
|
|
||||||
if (siteToAutoFill && pageDetailsToAutoFill && pageDetailsToAutoFill.length) {
|
if (siteToAutoFill && pageDetailsToAutoFill && pageDetailsToAutoFill.length) {
|
||||||
for (var i = 0; i < pageDetailsToAutoFill.length; i++) {
|
for (var i = 0; i < pageDetailsToAutoFill.length; i++) {
|
||||||
// make sure we're still on correct tab
|
// make sure we're still on correct tab
|
||||||
if (pageDetailsToAutoFill[i].tabId != tabId) {
|
if (pageDetailsToAutoFill[i].tabId !== tabId) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -5,6 +5,7 @@
|
||||||
"version": "1.5.0",
|
"version": "1.5.0",
|
||||||
"description": "__MSG_extDesc__",
|
"description": "__MSG_extDesc__",
|
||||||
"default_locale": "en",
|
"default_locale": "en",
|
||||||
|
"author": "8bit Solutions LLC",
|
||||||
"homepage_url": "https://bitwarden.com",
|
"homepage_url": "https://bitwarden.com",
|
||||||
"icons": {
|
"icons": {
|
||||||
"16": "images/icon16.png",
|
"16": "images/icon16.png",
|
||||||
|
|
Loading…
Reference in New Issue