diff --git a/src/background/main.background.ts b/src/background/main.background.ts index 185ae6170e..a8a25afd4e 100644 --- a/src/background/main.background.ts +++ b/src/background/main.background.ts @@ -145,13 +145,14 @@ export default class MainBackground { opr.sidebarAction : (window as any).chrome.sidebarAction; // Background + this.runtimeBackground = new RuntimeBackground(this, this.autofillService, this.cipherService, + this.platformUtilsService); + if (!this.isSafari) { this.commandsBackground = new CommandsBackground(this, this.passwordGenerationService); this.contextMenusBackground = new ContextMenusBackground(this, this.cipherService, this.passwordGenerationService); this.idleBackground = new IdleBackground(this, this.lockService, this.storageService); - this.runtimeBackground = new RuntimeBackground(this, this.autofillService, this.cipherService, - this.platformUtilsService); this.tabsBackground = new TabsBackground(this); this.webRequestBackground = new WebRequestBackground(this.platformUtilsService, this.cipherService); this.windowsBackground = new WindowsBackground(this);