1
0
Fork 0
This repository has been archived on 2024-04-25. You can view files and clone it, but cannot push or open issues or pull requests.
nexus-archive-browser-exten.../src/background.js

14 lines
404 B
JavaScript

/* global NexusDataQueue, NexusDataSender, Preferences, WebRequestMonitor */
'use strict'
const preferences = new Preferences()
preferences.load()
preferences.listenForStorageChanges()
const nexusDataQueue = new NexusDataQueue()
const nexusDataSender = new NexusDataSender(preferences)
const webRequestMonitor = new WebRequestMonitor(nexusDataQueue, nexusDataSender)
webRequestMonitor.addListeners()