From fc1e632a5ff43228226f59eec0ef68c4add31a38 Mon Sep 17 00:00:00 2001 From: Bauke Date: Wed, 2 Nov 2022 13:10:12 +0100 Subject: [PATCH] Add the AMO UUID. --- source/manifest.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/source/manifest.ts b/source/manifest.ts index dbd01ef..42a14b1 100644 --- a/source/manifest.ts +++ b/source/manifest.ts @@ -39,6 +39,11 @@ export default function createManifest( manifest.background = { scripts: [backgroundScript], }; + manifest.applications = { + gecko: { + id: '{2dd6149a-403e-4e67-9cf8-5fe64e16c909}', + }, + }; } return manifest;