From f13564bdd2ba58e92f710f254f2fa5ae797206f8 Mon Sep 17 00:00:00 2001 From: Turbotomate <64365398+Turbotomate@users.noreply.github.com> Date: Wed, 10 Jan 2024 15:38:40 +0100 Subject: [PATCH] Add /eid-client to default no-skip-url-list in background.js Added /eid-client to the default no-skip-url-list in background.js to skip redirects to the "AusweisApp" (https://github.com/Governikus/AusweisApp) which is the official eID-Client of the German government. Like mentioned in https://www.ausweisapp.bund.de/fuer-diensteanbieter/leitfaden/technische-hinweise, the redirects used are "http://127.0.0.1:24727/eID-Client" on computers or "eid://127.0.0.1:24727/eID-Client" on mobile phones. So the added parameter should work for both. Only tested with Firefox on a computer, because the addon is not available for Firefox mobile. --- background.js | 1 + 1 file changed, 1 insertion(+) diff --git a/background.js b/background.js index 61a7acc..339508f 100644 --- a/background.js +++ b/background.js @@ -52,6 +52,7 @@ const DEFAULT_NO_SKIP_URLS_LIST = [ "/auth", "/cookie", "/download", + "/eid-client" "/login", "/logoff", "/logon",