From 449256534b9b2753b207193f8e62664ba5d9d808 Mon Sep 17 00:00:00 2001 From: Zhihao Cui Date: Wed, 27 Sep 2023 14:15:24 +0100 Subject: [PATCH] Adds networkAccess to manifest (#19) --- packages/copy-manager/manifest.json | 8 +++++++- packages/export-styles/manifest.json | 8 +++++++- packages/table-generator/manifest.json | 8 +++++++- 3 files changed, 21 insertions(+), 3 deletions(-) diff --git a/packages/copy-manager/manifest.json b/packages/copy-manager/manifest.json index d2b8670..b0efd55 100644 --- a/packages/copy-manager/manifest.json +++ b/packages/copy-manager/manifest.json @@ -12,5 +12,11 @@ "name": "Review copy revisions", "multipleSelection": true } - ] + ], + "networkAccess": { + "allowedDomains": [ + "https://fonts.gstatic.com", + "https://fonts.googleapis.com" + ] + } } diff --git a/packages/export-styles/manifest.json b/packages/export-styles/manifest.json index c7be50c..1decdb4 100644 --- a/packages/export-styles/manifest.json +++ b/packages/export-styles/manifest.json @@ -9,5 +9,11 @@ "menu": [ { "name": "Export CSS Variable", "command": "export-css-var" }, { "name": "Export JSON", "command": "export-json" } - ] + ], + "networkAccess": { + "allowedDomains": [ + "https://fonts.gstatic.com", + "https://fonts.googleapis.com" + ] + } } diff --git a/packages/table-generator/manifest.json b/packages/table-generator/manifest.json index 284f39b..d6c1383 100644 --- a/packages/table-generator/manifest.json +++ b/packages/table-generator/manifest.json @@ -11,5 +11,11 @@ "command": "edit-table", "name": "Edit table" } - ] + ], + "networkAccess": { + "allowedDomains": [ + "https://fonts.gstatic.com", + "https://fonts.googleapis.com" + ] + } }