browser-extension-manager 1.0.4 → 1.0.6
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/defaults/src/assets/js/background.js +5 -1
- package/dist/defaults/src/assets/js/content.js +5 -1
- package/dist/defaults/src/assets/js/options.js +5 -1
- package/dist/defaults/src/assets/js/popup.js +5 -1
- package/dist/defaults/src/pages/options.html +2 -2
- package/dist/defaults/src/pages/popup.html +2 -2
- package/package.json +1 -1
|
@@ -7,5 +7,9 @@ const Manager = new (require('browser-extension-manager/background'));
|
|
|
7
7
|
// Initialize
|
|
8
8
|
Manager.initialize()
|
|
9
9
|
.then(() => {
|
|
10
|
-
|
|
10
|
+
// Do other initialization tasks here
|
|
11
|
+
// ...
|
|
12
|
+
|
|
13
|
+
// Log the initialization
|
|
14
|
+
Manager.log('Initialized!');
|
|
11
15
|
});
|
|
@@ -4,5 +4,9 @@ const Manager = new (require('browser-extension-manager/content'));
|
|
|
4
4
|
// Initialize
|
|
5
5
|
Manager.initialize()
|
|
6
6
|
.then(() => {
|
|
7
|
-
|
|
7
|
+
// Do other initialization tasks here
|
|
8
|
+
// ...
|
|
9
|
+
|
|
10
|
+
// Log the initialization
|
|
11
|
+
Manager.log('Initialized!');
|
|
8
12
|
});
|
|
@@ -6,5 +6,9 @@ const bootstrap = require('/node_modules/browser-extension-manager/dist/assets/t
|
|
|
6
6
|
|
|
7
7
|
// Initialize
|
|
8
8
|
Manager.initialize(() => {
|
|
9
|
-
|
|
9
|
+
// Do other initialization tasks here
|
|
10
|
+
// ...
|
|
11
|
+
|
|
12
|
+
// Log the initialization
|
|
13
|
+
Manager.log('Initialized!');
|
|
10
14
|
})
|
|
@@ -6,5 +6,9 @@ const bootstrap = require('/node_modules/browser-extension-manager/dist/assets/t
|
|
|
6
6
|
|
|
7
7
|
// Initialize
|
|
8
8
|
Manager.initialize(() => {
|
|
9
|
-
|
|
9
|
+
// Do other initialization tasks here
|
|
10
|
+
// ...
|
|
11
|
+
|
|
12
|
+
// Log the initialization
|
|
13
|
+
Manager.log('Initialized!');
|
|
10
14
|
})
|
|
@@ -14,13 +14,13 @@
|
|
|
14
14
|
<div class="grid">
|
|
15
15
|
<div class="unit whole center-on-mobiles">
|
|
16
16
|
<p class="text-center text-muted">
|
|
17
|
-
© <a href="">ITW Creative Works</a> <span class="wm-year"></span>.
|
|
17
|
+
© <a href="https://itwcreativeworks.com" target="_blank">ITW Creative Works</a> <span class="wm-year"></span>.
|
|
18
18
|
</p>
|
|
19
19
|
</div>
|
|
20
20
|
</div>
|
|
21
21
|
</footer>
|
|
22
22
|
|
|
23
23
|
<!-- JS -->
|
|
24
|
-
<script src="/assets/
|
|
24
|
+
<script src="/assets/js/options.bundle.js"></script>
|
|
25
25
|
</body>
|
|
26
26
|
</html>
|
|
@@ -14,13 +14,13 @@
|
|
|
14
14
|
<div class="grid">
|
|
15
15
|
<div class="unit whole center-on-mobiles">
|
|
16
16
|
<p class="text-center text-muted">
|
|
17
|
-
© <a href="">ITW Creative Works</a> <span class="wm-year"></span>.
|
|
17
|
+
© <a href="https://itwcreativeworks.com" target="_blank">ITW Creative Works</a> <span class="wm-year"></span>.
|
|
18
18
|
</p>
|
|
19
19
|
</div>
|
|
20
20
|
</div>
|
|
21
21
|
</footer>
|
|
22
22
|
|
|
23
23
|
<!-- JS -->
|
|
24
|
-
<script src="/assets/
|
|
24
|
+
<script src="/assets/js/popup.bundle.js"></script>
|
|
25
25
|
</body>
|
|
26
26
|
</html>
|