aboutsummaryrefslogtreecommitdiffstats
path: root/app
diff options
context:
space:
mode:
authorMark Stacey <markjstacey@gmail.com>2019-07-19 05:16:30 +0800
committerGitHub <noreply@github.com>2019-07-19 05:16:30 +0800
commit7357f011c3ff6580480bcc520ce4127667c412b7 (patch)
tree6292acbd693e2754fd2287495a4497ad8c216f1e /app
parent271e0ceb938168ee9a7020131ad7aa137d75568f (diff)
downloadtangerine-wallet-browser-7357f011c3ff6580480bcc520ce4127667c412b7.tar.gz
tangerine-wallet-browser-7357f011c3ff6580480bcc520ce4127667c412b7.tar.zst
tangerine-wallet-browser-7357f011c3ff6580480bcc520ce4127667c412b7.zip
Set minimum browser version in manifest (#6877)
Set the minimum browser version supported in the extension manifest. Currently we only ship the extension on Chrome and Firefox, so the minimum version has been set for those two browsers. Relates to #6805
Diffstat (limited to 'app')
-rw-r--r--app/manifest.json5
1 files changed, 3 insertions, 2 deletions
diff --git a/app/manifest.json b/app/manifest.json
index 8639577bb..a89962d5a 100644
--- a/app/manifest.json
+++ b/app/manifest.json
@@ -21,7 +21,8 @@
},
"applications": {
"gecko": {
- "id": "webextension@metamask.io"
+ "id": "webextension@metamask.io",
+ "strict_min_version": "53.0"
}
},
"default_locale": "en",
@@ -85,4 +86,4 @@
"*"
]
}
-} \ No newline at end of file
+}