1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-11-22 11:45:59 +01:00

open getting started page after installing the extension

This commit is contained in:
Kyle Spearrin 2016-11-17 00:42:20 -05:00
parent dfba31121c
commit d9fa8103b2

View File

@ -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) { });
}
});
}