From affc1743f5e96b515d1515b0a2a4428e2bfe14c5 Mon Sep 17 00:00:00 2001 From: mrjvs Date: Wed, 24 Jan 2024 17:32:57 +0100 Subject: [PATCH] Add opera --- src/utils/detectFeatures.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/utils/detectFeatures.ts b/src/utils/detectFeatures.ts index 13645e0a..5e59bf1e 100644 --- a/src/utils/detectFeatures.ts +++ b/src/utils/detectFeatures.ts @@ -70,7 +70,8 @@ export function detectExtensionInstall(): ExtensionDetectionResult { if ( res.name === "chrome" || res.name === "chromium-webview" || - res.name === "edge-chromium" + res.name === "edge-chromium" || + res.name === "opera" ) return "chrome"; if (res.name === "firefox") return "firefox";