Skip to content

Commit f1ee2e7

Browse files
committed
fix: add data_collection_permissions for Firefox Add-ons compliance
Firefox Add-ons now requires all new extensions submitted after November 3, 2025 to declare data collection practices in manifest.json. This extension does not collect or transmit any user data, so we explicitly set data_collection_permissions to "none" in the browser_specific_settings.gecko section to comply with the new policy.
1 parent ae611fc commit f1ee2e7

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

app/manifest.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,10 @@
6161
"__firefox__browser_specific_settings": {
6262
"gecko": {
6363
"id": "{8c3f4a7d-9e2b-4f1c-a5d6-7b8e9f0a1c2d}",
64-
"strict_min_version": "102.0"
64+
"strict_min_version": "102.0",
65+
"data_collection_permissions": {
66+
"required": ["none"]
67+
}
6568
}
6669
}
6770
}

0 commit comments

Comments
 (0)