Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
sv3k committed Dec 18, 2016
1 parent 1bd2cb7 commit 4b54148
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
22 changes: 11 additions & 11 deletions background.js
Original file line number Diff line number Diff line change
@@ -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() {
Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 4b54148

Please sign in to comment.