1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-22 01:47:00 +01:00

MV3: Migrate permissions (#15777)

* MV3: migrate host_permissions

* MV3: alphabetize permissions

* rm superfluous permissions
This commit is contained in:
Ariella Vu 2022-09-13 09:36:42 -07:00 committed by GitHub
parent 93c609b117
commit 99761b59dc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -47,7 +47,12 @@
],
"default_locale": "en",
"description": "__MSG_appDescription__",
"host_permissions": ["file://*/*", "http://*/*", "https://*/*"],
"host_permissions": [
"http://localhost:8545/",
"file://*/*",
"http://*/*",
"https://*/*"
],
"icons": {
"16": "images/icon-16.png",
"19": "images/icon-19.png",
@ -61,18 +66,13 @@
"manifest_version": 3,
"name": "__MSG_appName__",
"permissions": [
"storage",
"scripting",
"unlimitedStorage",
"clipboardWrite",
"http://localhost:8545/",
"https://*.infura.io/",
"https://chainid.network/chains.json",
"https://lattice.gridplus.io/*",
"activeTab",
"webRequest",
"*://*.eth/",
"notifications"
"clipboardWrite",
"notifications",
"scripting",
"storage",
"unlimitedStorage",
"webRequest"
],
"short_name": "__MSG_appName__"
}