diff --git a/src/Core/Constants.cs b/src/Core/Constants.cs index 36ddecf8ff12..550cfd014c43 100644 --- a/src/Core/Constants.cs +++ b/src/Core/Constants.cs @@ -111,6 +111,7 @@ public static class CountryAbbreviations public static class BrowserExtensions { public const string ChromeId = "chrome-extension://nngceckbapebfimnlniiiahkandclblb/"; + public const string ChromeBetaId = "chrome-extension://hccnnhgbibccigepcmlgppchkpfdophk/"; public const string EdgeId = "chrome-extension://jbkfoedolllekgbhcbcoahefnbanhhlh/"; public const string OperaId = "chrome-extension://ccnckbpmaceehanjmeomladnmlffdjgn/"; } diff --git a/src/SharedWeb/Utilities/ServiceCollectionExtensions.cs b/src/SharedWeb/Utilities/ServiceCollectionExtensions.cs index 551a7c946cf3..976d49334dce 100644 --- a/src/SharedWeb/Utilities/ServiceCollectionExtensions.cs +++ b/src/SharedWeb/Utilities/ServiceCollectionExtensions.cs @@ -640,6 +640,7 @@ public static void AddWebAuthn(this IServiceCollection services, GlobalSettings options.Origins = new HashSet { globalSettings.BaseServiceUri.Vault, Constants.BrowserExtensions.ChromeId, + Constants.BrowserExtensions.ChromeBetaId, Constants.BrowserExtensions.EdgeId, Constants.BrowserExtensions.OperaId };