From 7bbfc3be0f4b1d7a6c91e071cf8e3abbdd900d10 Mon Sep 17 00:00:00 2001 From: Will Norris Date: Tue, 16 Jan 2024 10:22:46 -0800 Subject: [PATCH] manifest.json: add gecko id This is a requirement for Firefox add-ons using manifest v3. The ID can take the form of an email-like identifier or a UUID. A quick survey of my installed add-ons shows that most developers seem to use the UUID, so I just generated one locally. --- browser-extension/manifest.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/browser-extension/manifest.json b/browser-extension/manifest.json index 4da425d..ae4bc65 100644 --- a/browser-extension/manifest.json +++ b/browser-extension/manifest.json @@ -32,6 +32,11 @@ ], "run_at": "document_idle" } - ] + ], + "browser_specific_settings": { + "gecko": { + "id": "{48fc7cf2-9903-4618-9bb9-27ffcaa64814}" + } + } }