mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 18:00:18 +01:00
524ab66a16
The minimum browser versions have been updated to Chromium v80 and Firefox v78. Chromium v80 is >3 years old, and very few users use older versions than that. Firefox v78 is two extended support releases ago (v91 and v102 ar the previous and current ESR releases).
27 lines
590 B
JSON
27 lines
590 B
JSON
{
|
|
"applications": {
|
|
"gecko": {
|
|
"id": "webextension@metamask.io",
|
|
"strict_min_version": "78.0"
|
|
}
|
|
},
|
|
"background": {
|
|
"page": "background.html",
|
|
"persistent": true
|
|
},
|
|
"browser_action": {
|
|
"default_icon": {
|
|
"16": "images/icon-16.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"
|
|
},
|
|
"default_title": "MetaMask",
|
|
"default_popup": "popup.html"
|
|
},
|
|
"manifest_version": 2
|
|
}
|