From 342b684ec7729bc452a37c3406532ffb094cf39c Mon Sep 17 00:00:00 2001 From: Gregory Eremin Date: Sun, 21 Sep 2014 22:15:32 +0400 Subject: [PATCH] Fix condition --- background.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/background.js b/background.js index f44e7dc..ad5a3a4 100644 --- a/background.js +++ b/background.js @@ -17,7 +17,7 @@ function updateTab(info) { info.status !== "complete" || // Ignore chrome and file urls - !info.url.indexOf('http') === 0 || + info.url.indexOf('http') !== 0 || // Ignore Chrome Web Store info.url.indexOf('https://chrome.google.com/webstore/') === 0