diff --git a/src/eventPage.js b/src/eventPage.js index 6e40f37..e313bcd 100644 --- a/src/eventPage.js +++ b/src/eventPage.js @@ -12,10 +12,10 @@ chrome.browserAction.onClicked.addListener(function(){ // Listen for tabs getting created. chrome.tabs.onCreated.addListener(function (tab) { // If a new tab is opened (without any URL), check user's - // replace Tab setting and act accordingly. + // replace Tab setting and act accordingly. Default is false. if (tab.url === 'chrome://newtab/') { chrome.storage.sync.get({ - replaceNewTab: true + replaceNewTab: false }, function(items) { if (items.replaceNewTab) { chrome.tabs.update(tab.id, { diff --git a/src/index.html b/src/index.html index f34d482..e6a0481 100644 --- a/src/index.html +++ b/src/index.html @@ -233,13 +233,8 @@
- By default, Web Maker shows up in every new tab you open. But you can change that below:
+ By default, Web Maker can be started by clicking the
- You can change this later from Settings (
@@ -394,8 +391,18 @@ - +
+ diff --git a/src/style.css b/src/style.css index a37f193..79d7e57 100644 --- a/src/style.css +++ b/src/style.css @@ -684,6 +684,7 @@ li.CodeMirror-hint-active { } .onboard-selection-wrap { justify-content: center; + align-items: center; } .onboard-selection { padding: 10px;