aboutsummaryrefslogtreecommitdiff
path: root/src/background/index.js
diff options
context:
space:
mode:
authorShin'ya Ueoka <ueokande@i-beam.org>2019-04-14 12:35:37 +0000
committerGitHub <noreply@github.com>2019-04-14 12:35:37 +0000
commit640ac38fb6d486159057d1bc8d78d1792f1d1784 (patch)
treef9b4f6da33a445856f8dc22487588ba6b69323cd /src/background/index.js
parent859d0372b5bb7297a0b8ed37a559d88a425f3799 (diff)
parent908973a0a246474342246c2bad09a6db809e9084 (diff)
Merge pull request #564 from ueokande/lanthan-integration-test
Use lanthan to do E2E testing
Diffstat (limited to 'src/background/index.js')
-rw-r--r--src/background/index.js11
1 files changed, 10 insertions, 1 deletions
diff --git a/src/background/index.js b/src/background/index.js
index 29aa92b..f9efd4d 100644
--- a/src/background/index.js
+++ b/src/background/index.js
@@ -2,7 +2,8 @@ import ContentMessageListener from './infrastructures/ContentMessageListener';
import SettingController from './controllers/SettingController';
import VersionController from './controllers/VersionController';
-new SettingController().reload();
+let settingController = new SettingController();
+settingController.reload();
browser.runtime.onInstalled.addListener((details) => {
if (details.reason !== 'install' && details.reason !== 'update') {
@@ -12,3 +13,11 @@ browser.runtime.onInstalled.addListener((details) => {
});
new ContentMessageListener().run();
+browser.storage.onChanged.addListener((changes, area) => {
+ if (area !== 'local') {
+ return;
+ }
+ if (changes.settings) {
+ settingController.reload();
+ }
+});