@@ -14,17 +14,30 @@ export enum Browser {
1414 * @see https://developer.mozilla.org/en-US/docs/Mozilla/Add-ons/WebExtensions/manifest.json/browser_specific_settings#data_collection_permissions
1515 */
1616export enum DataCollectionPermission {
17- AuthenticationInfo = "authenticationInfo" ,
18- BookmarksInfo = "bookmarksInfo" ,
19- BrowsingActivity = "browsingActivity" ,
20- FinancialAndPaymentInfo = "financialAndPaymentInfo" ,
17+ /** Contact and identifying information such as name, address, email, etc. */
18+ PersonallyIdentifyingInfo = "personallyIdentifyingInfo" ,
19+ /** Medical information, including medical history, diagnoses and treatments */
2120 HealthInfo = "healthInfo" ,
22- LocationInfo = "locationInfo" ,
21+ /** Financial and payment data (cards, transactions, credit scores) */
22+ FinancialAndPaymentInfo = "financialAndPaymentInfo" ,
23+ /** Authentication data (usernames, passwords, PIN codes) */
24+ AuthenticationInfo = "authenticationInfo" ,
25+ /** Personal communications (emails, chats, social‑media messages) */
2326 PersonalCommunications = "personalCommunications" ,
24- PersonallyIdentifyingInfo = "personallyIdentifyingInfo" ,
27+ /** Location data (region, GPS coordinates and similar) */
28+ LocationInfo = "locationInfo" ,
29+ /** Information about websites visited and pages viewed */
30+ BrowsingActivity = "browsingActivity" ,
31+ /** Content of web pages (text, images, video, links and embedded elements) */
32+ WebsiteContent = "websiteContent" ,
33+ /** User activity on websites (scrolling, clicks, typing, downloads) */
34+ WebsiteActivity = "websiteActivity" ,
35+ /** Search terms entered in search engines or the address bar */
2536 SearchTerms = "searchTerms" ,
37+ /** Firefox bookmark data: URLs, titles, folder names */
38+ BookmarksInfo = "bookmarksInfo" ,
39+ /** Technical and usage data (device/browser info, extension settings, crash reports) */
2640 TechnicalAndInteraction = "technicalAndInteraction" ,
27- WebsiteActivity = "websiteActivity" ,
2841}
2942
3043export interface DataCollectionPermissions {
0 commit comments