aboutsummaryrefslogtreecommitdiffstats
path: root/app
diff options
context:
space:
mode:
Diffstat (limited to 'app')
-rw-r--r--app/manifest.json5
-rw-r--r--app/scripts/lib/remote-store.js2
2 files changed, 6 insertions, 1 deletions
diff --git a/app/manifest.json b/app/manifest.json
index 2c5629f7a..7039caeb8 100644
--- a/app/manifest.json
+++ b/app/manifest.json
@@ -8,6 +8,11 @@
"16": "images/icon-16.png",
"128": "images/icon-128.png"
},
+ "applications": {
+ "gecko": {
+ "id": "webextension@metamask.io"
+ }
+ },
"default_locale": "en",
"background": {
"scripts": [
diff --git a/app/scripts/lib/remote-store.js b/app/scripts/lib/remote-store.js
index fbfab7bad..c81d5151c 100644
--- a/app/scripts/lib/remote-store.js
+++ b/app/scripts/lib/remote-store.js
@@ -52,7 +52,7 @@ HostStore.prototype.set = function (key, value) {
HostStore.prototype.createStream = function () {
var dnode = Dnode({
- // update: this._didUpdate.bind(this),
+ update: this._didUpdate.bind(this),
})
dnode.on('remote', this._didConnect.bind(this))
return dnode