From 5cafc6a1ca68e832eea5209c2e654aa400c0ab26 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Th=C3=A9o=20Poizat?= Date: Mon, 9 Dec 2024 17:15:47 +0100 Subject: [PATCH] fix: Autologin in Cozy Pass Web in Chrome We forgot to add the appInfo script that perform the autologin in Cozy Pass Web in the manifest.v3 so it was not working on Chrome. --- apps/browser/src/manifest.v3.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/apps/browser/src/manifest.v3.json b/apps/browser/src/manifest.v3.json index d0d0412f8fd..08cf5356c13 100644 --- a/apps/browser/src/manifest.v3.json +++ b/apps/browser/src/manifest.v3.json @@ -36,6 +36,12 @@ "js": ["content/lp-fileless-importer.js"], "matches": ["https://lastpass.com/export.php"], "run_at": "document_start" + }, + { + "all_frames": true, + "js": ["content/appInfo.js"], + "matches": ["http://*/*", "https://*/*", "file:///*"], + "run_at": "document_start" } ], "background": {