From 51affa978c09a9163b391591daa9b2f1e2ae6dfd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EB=85=B8=20=EA=B8=B0=20=ED=9B=88?= Date: Sat, 4 Jul 2026 20:25:16 +0900 Subject: [PATCH] feat: add data collection permission declarations for Firefox compatibility in wxt.config.ts --- apps/extension/wxt.config.ts | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/apps/extension/wxt.config.ts b/apps/extension/wxt.config.ts index 3231d4c..8dd6896 100644 --- a/apps/extension/wxt.config.ts +++ b/apps/extension/wxt.config.ts @@ -25,6 +25,15 @@ export default defineConfig({ default_icon: icons, default_title: 'dookmark', }, + // Firefox 140+ 필수: 수집하는 사용자 데이터 유형 선언 + // (Google 계정 정보 / 로그인 토큰 / 북마크) + browser_specific_settings: { + gecko: { + data_collection_permissions: { + required: ['personallyIdentifyingInfo', 'authenticationInfo', 'bookmarksInfo'], + }, + }, + }, }), }; },