diff --git a/background.js b/background.js index f4dab34..4fb4e09 100644 --- a/background.js +++ b/background.js @@ -1,16 +1,11 @@ - - // Called when the user clicks on the browser action. chrome.browserAction.onClicked.addListener(function(tab) { // No tabs or host permissions needed! - chrome.tabs.executeScript({ file: 'jquery.js', }); chrome.tabs.executeScript({ file: 'myscript.js', - }); - - + }); });