Move `externally_connectable` from base to Chrome manifest (#9824)

The `externally_connectable` property of the extension manifest is not
recognized by Firefox. It has been moved from the base manifest to the
Chrome manifest, so that we no longer get a warning about this property
on Firefox.

We would like to eventually remove it from the Chrome manifest as well,
but we'll wait until we can batch it with other permission changes so
that it doesn't unnecessarily re-prompt the user (see #9804)
feature/default_network_editable
Mark Stacey 4 years ago committed by GitHub
parent 4ef908aeb2
commit 248f171b65
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      app/manifest/_base.json
  2. 4
      app/manifest/chrome.json

@ -41,10 +41,6 @@
],
"default_locale": "en",
"description": "__MSG_appDescription__",
"externally_connectable": {
"matches": ["https://metamask.io/*"],
"ids": ["*"]
},
"icons": {
"16": "images/icon-16.png",
"19": "images/icon-19.png",

@ -1,3 +1,7 @@
{
"externally_connectable": {
"matches": ["https://metamask.io/*"],
"ids": ["*"]
},
"minimum_chrome_version": "58"
}

Loading…
Cancel
Save