Add all icons to manifest (#7431)

Of the 7 different icon sizes we have, only four were referenced in
the manifest. All 7 are now listed, which leaves the browser more to
choose from when deciding which to use.
feature/default_network_editable
Mark Stacey 5 years ago committed by GitHub
parent fb83b2937e
commit 5e84c5055c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 14
      app/manifest.json

@ -17,7 +17,12 @@
},
"icons": {
"16": "images/icon-16.png",
"128": "images/icon-128.png"
"19": "images/icon-19.png",
"32": "images/icon-32.png",
"38": "images/icon-38.png",
"64": "images/icon-64.png",
"128": "images/icon-128.png",
"512": "images/icon-512.png"
},
"applications": {
"gecko": {
@ -36,8 +41,13 @@
},
"browser_action": {
"default_icon": {
"16": "images/icon-16.png",
"19": "images/icon-19.png",
"38": "images/icon-38.png"
"32": "images/icon-32.png",
"38": "images/icon-38.png",
"64": "images/icon-64.png",
"128": "images/icon-128.png",
"512": "images/icon-512.png"
},
"default_title": "MetaMask",
"default_popup": "popup.html"

Loading…
Cancel
Save