diff --git a/apps/desktop/resources/entitlements.mas.plist b/apps/desktop/resources/entitlements.mas.plist
index bb06ae10431..f3bc20011ff 100644
--- a/apps/desktop/resources/entitlements.mas.plist
+++ b/apps/desktop/resources/entitlements.mas.plist
@@ -35,6 +35,7 @@
/Library/Application Support/Microsoft Edge Dev/NativeMessagingHosts/
/Library/Application Support/Microsoft Edge Canary/NativeMessagingHosts/
/Library/Application Support/Vivaldi/NativeMessagingHosts/
+ /Library/Application Support/Zen/NativeMessagingHosts/
com.apple.security.cs.allow-jit
diff --git a/apps/desktop/src/main/native-messaging.main.ts b/apps/desktop/src/main/native-messaging.main.ts
index 107d546811c..93525164ff5 100644
--- a/apps/desktop/src/main/native-messaging.main.ts
+++ b/apps/desktop/src/main/native-messaging.main.ts
@@ -172,7 +172,7 @@ export class NativeMessagingMain {
const p = path.join(value, "NativeMessagingHosts", "com.8bit.bitwarden.json");
let manifest: any = chromeJson;
- if (key === "Firefox") {
+ if (key === "Firefox" || key === "Zen") {
manifest = firefoxJson;
}
@@ -313,6 +313,7 @@ export class NativeMessagingMain {
"Microsoft Edge Dev": `${this.homedir()}/Library/Application\ Support/Microsoft\ Edge\ Dev/`,
"Microsoft Edge Canary": `${this.homedir()}/Library/Application\ Support/Microsoft\ Edge\ Canary/`,
Vivaldi: `${this.homedir()}/Library/Application\ Support/Vivaldi/`,
+ Zen: `${this.homedir()}/Library/Application\ Support/Zen/`,
};
/* eslint-enable no-useless-escape */
}