From 99761b59dc7e265b36eab0d4621605b3243c9513 Mon Sep 17 00:00:00 2001 From: Ariella Vu <20778143+digiwand@users.noreply.github.com> Date: Tue, 13 Sep 2022 09:36:42 -0700 Subject: [PATCH] MV3: Migrate permissions (#15777) * MV3: migrate host_permissions * MV3: alphabetize permissions * rm superfluous permissions --- app/manifest/v3/_base.json | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/app/manifest/v3/_base.json b/app/manifest/v3/_base.json index 7b28cd2ed..696a4d62e 100644 --- a/app/manifest/v3/_base.json +++ b/app/manifest/v3/_base.json @@ -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__" }