diff options
author | Alex Yatskov <alex@foosoft.net> | 2016-11-14 21:02:04 -0800 |
---|---|---|
committer | Alex Yatskov <alex@foosoft.net> | 2016-11-14 21:02:04 -0800 |
commit | 09afc649283debabc7087ed4242b5c53ea2dfd9a (patch) | |
tree | b4f050075e021c13a603caa5b8fbd19761873c5a /ext/bg/js | |
parent | 4e89d27fda22c73c6dc7f334ad355ec7a56beba7 (diff) |
Open guide on install
Diffstat (limited to 'ext/bg/js')
-rw-r--r-- | ext/bg/js/yomichan.js | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/ext/bg/js/yomichan.js b/ext/bg/js/yomichan.js index 2b713c02..e8956057 100644 --- a/ext/bg/js/yomichan.js +++ b/ext/bg/js/yomichan.js @@ -29,6 +29,7 @@ class Yomichan { chrome.runtime.onMessage.addListener(this.onMessage.bind(this)); chrome.browserAction.onClicked.addListener(this.onBrowserAction.bind(this)); + chrome.runtime.onInstalled.addListener(this.onInstalled.bind(this)); loadOptions().then(opts => { this.setOptions(opts); @@ -38,6 +39,12 @@ class Yomichan { }); } + onInstalled(details) { + if (details.reason === 'install') { + chrome.tabs.create({url: chrome.extension.getURL('bg/guide.html')}); + } + } + onMessage(request, sender, callback) { const {action, params} = request, method = this['api_' + action]; |