From 809aae0ac390ddf46e9cedc96c8c0e9d7da3ad26 Mon Sep 17 00:00:00 2001 From: Mark Stacey Date: Wed, 22 Dec 2021 16:25:27 -0330 Subject: [PATCH] Add Chrome store policy compliant names/descriptions (#13142) The Chrome Web Store has spam policies that prevent uploading extensions that are too similar to each other. There are exceptions for test and development versions of extensions, but these exceptions are required to be clearly identified in the name and description of the extension. The name and description of both the Flask and beta distributions have been updated to include explicit all-caps declarations that identify them as development and beta distributions respectively, in-line with the examples shown in the Chrome Web Store spam FAQ. For more information, see: https://developer.chrome.com/docs/webstore/spam-faq/#test-version --- app/build-types/beta/manifest/chrome.json | 4 ++++ app/build-types/flask/manifest/chrome.json | 4 ++++ 2 files changed, 8 insertions(+) create mode 100644 app/build-types/beta/manifest/chrome.json create mode 100644 app/build-types/flask/manifest/chrome.json diff --git a/app/build-types/beta/manifest/chrome.json b/app/build-types/beta/manifest/chrome.json new file mode 100644 index 000000000..2892a4785 --- /dev/null +++ b/app/build-types/beta/manifest/chrome.json @@ -0,0 +1,4 @@ +{ + "description": "THIS IS THE METAMASK EXTENSION BETA, INTENDED FOR BETA TESTING", + "name": "MetaMask BETA" +} diff --git a/app/build-types/flask/manifest/chrome.json b/app/build-types/flask/manifest/chrome.json new file mode 100644 index 000000000..9693451fd --- /dev/null +++ b/app/build-types/flask/manifest/chrome.json @@ -0,0 +1,4 @@ +{ + "description": "THIS IS THE CANARY DISTRIBUTION OF THE METAMASK EXTENSION, INTENDED FOR DEVELOPERS.", + "name": "MetaMask Flask DEVELOPMENT BUILD" +}