browser-extension-manager 1.2.2 → 1.2.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/content.js +2 -1
- package/package.json +1 -1
package/dist/content.js
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
// Libraries
|
|
2
2
|
import extension from './lib/extension.js';
|
|
3
3
|
import LoggerLite from './lib/logger-lite.js';
|
|
4
|
+
import Affiliatizer from './lib/affiliatizer.js';
|
|
4
5
|
|
|
5
6
|
// Class
|
|
6
7
|
class Manager {
|
|
@@ -17,7 +18,7 @@ class Manager {
|
|
|
17
18
|
this.extension = extension;
|
|
18
19
|
this.messenger = null;
|
|
19
20
|
this.logger = new LoggerLite('content');
|
|
20
|
-
this.affiliatizer =
|
|
21
|
+
this.affiliatizer = Affiliatizer.initialize(this);
|
|
21
22
|
|
|
22
23
|
// Log
|
|
23
24
|
this.logger.log('Initialized!', this);
|