1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-15 07:43:35 +00:00

separating background apis to their own classes

This commit is contained in:
Kyle Spearrin
2017-12-07 15:06:37 -05:00
parent 142e33eb05
commit 8f1757401e
6 changed files with 199 additions and 75 deletions

View File

@@ -0,0 +1,26 @@
import MainBackground from './main.background';
export default class RuntimeBackground {
private runtime: any;
constructor(private main: MainBackground) {
this.runtime = chrome.runtime;
}
async init() {
if (!this.runtime || this.runtime.onInstalled) {
return;
}
this.runtime.onInstalled.addListener((details: any) => {
(window as any).ga('send', {
hitType: 'event',
eventAction: 'onInstalled ' + details.reason,
});
if (details.reason === 'install') {
chrome.tabs.create({ url: 'https://bitwarden.com/browser-start/' });
}
});
}
}