From fe958625dfd21571e4292f45e4939859becfd47d Mon Sep 17 00:00:00 2001 From: Raymond Hill Date: Mon, 17 Nov 2025 12:40:04 -0500 Subject: [PATCH] [firefox] Signal that no data collection is required Related information: https://extensionworkshop.com/documentation/develop/firefox-builtin-data-consent/ --- platform/firefox/manifest.json | 5 ++++- platform/mv3/firefox/manifest.json | 5 ++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/platform/firefox/manifest.json b/platform/firefox/manifest.json index 888dced28..956cf759f 100644 --- a/platform/firefox/manifest.json +++ b/platform/firefox/manifest.json @@ -17,7 +17,10 @@ "browser_specific_settings": { "gecko": { "id": "uBlock0@raymondhill.net", - "strict_min_version": "92.0" + "strict_min_version": "92.0", + "data_collection_permissions": { + "required": [ "none" ] + } }, "gecko_android": { "strict_min_version": "92.0" diff --git a/platform/mv3/firefox/manifest.json b/platform/mv3/firefox/manifest.json index 444b3f520..e2ca46cdb 100644 --- a/platform/mv3/firefox/manifest.json +++ b/platform/mv3/firefox/manifest.json @@ -16,7 +16,10 @@ "browser_specific_settings": { "gecko": { "id": "uBOLiteRedux@raymondhill.net", - "strict_min_version": "128.0" + "strict_min_version": "128.0", + "data_collection_permissions": { + "required": [ "none" ] + } }, "gecko_android": { "strict_min_version": "128.0"