diff --git a/src/background.js b/src/background.js index b713672eb8..ab764c12f9 100644 --- a/src/background.js +++ b/src/background.js @@ -81,6 +81,10 @@ if (chrome.runtime.onInstalled) { hitType: 'event', eventAction: 'onInstalled ' + details.reason }); + + if (details.reason === 'install') { + chrome.tabs.create({ url: 'https://bitwarden.com/browser-start/' }, function (tab) { }); + } }); }