From b68b883965b233084db1bc6bb6946be830cea072 Mon Sep 17 00:00:00 2001 From: Sin-Kang Date: Sat, 8 Aug 2026 00:03:13 +0900 Subject: [PATCH] fix: declare gecko data_collection_permissions (AMO hard requirement) AMO validation rejects new submissions without a data-collection declaration. We collect nothing, so required: [none]. Chrome ignores the browser_specific_settings block entirely. Verified locally with addons-linter: 0 errors. --- extension/manifest.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/extension/manifest.json b/extension/manifest.json index 6da45ce..664b35f 100644 --- a/extension/manifest.json +++ b/extension/manifest.json @@ -28,6 +28,11 @@ "128": "icons/icon128.png" }, "browser_specific_settings": { - "gecko": { "id": "kokey@devslab.kr" } + "gecko": { + "id": "kokey@devslab.kr", + "data_collection_permissions": { + "required": ["none"] + } + } } }