diff --git a/background.js b/background.js index 7b06b1f..20f276a 100644 --- a/background.js +++ b/background.js @@ -1,16 +1,16 @@ chrome.runtime.onInstalled.addListener(function(details) { chrome.tabs.query({}, function(tabs) { - for (var i = 0; i < tabs.length; i++) { - chrome.tabs.insertCSS( - tabs[i].id, - { file: 'basic.css' } - ); - chrome.tabs.executeScript( - tabs[i].id, - { file: 'contentscript.js' } - ); - } - }); + for (var i = 0; i < tabs.length; i++) { + chrome.tabs.insertCSS( + tabs[i].id, + { file: 'basic.css' } + ); + chrome.tabs.executeScript( + tabs[i].id, + { file: 'contentscript.js' } + ); + } + }); }); chrome.browserAction.onClicked.addListener(function() { diff --git a/manifest.json b/manifest.json index 4460262..c65433a 100644 --- a/manifest.json +++ b/manifest.json @@ -4,7 +4,7 @@ "description": "__MSG_appDesc__", "icons": { "48": "icon48.png", "128": "icon128.png" }, "default_locale": "en", - "version": "1.6.0", + "version": "1.7.0", "manifest_version": 2, "offline_enabled": true, "author": "Anton Gorbunov",