Remove new tab opened after installing
This commit is contained in:
Victor Baranov 2018-07-19 23:31:08 +03:00 committed by GitHub
commit 1412dd5b1d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 7 deletions

View File

@ -434,10 +434,3 @@ function triggerUi () {
}
})
}
// On first install, open a window to MetaMask website to how-it-works.
extension.runtime.onInstalled.addListener(function (details) {
if ((details.reason === 'install') && (!METAMASK_DEBUG)) {
extension.tabs.create({url: 'https://metamask.io/#how-it-works'})
}
})