mirror of
https://github.com/bitwarden/browser
synced 2025-12-13 14:53:33 +00:00
Write native messaging manifests for Chrome/edge beta/dev/canary (#804)
This commit is contained in:
@@ -12,7 +12,13 @@
|
|||||||
<array>
|
<array>
|
||||||
<string>/Library/Application Support/Mozilla/NativeMessagingHosts/</string>
|
<string>/Library/Application Support/Mozilla/NativeMessagingHosts/</string>
|
||||||
<string>/Library/Application Support/Google/Chrome/NativeMessagingHosts/</string>
|
<string>/Library/Application Support/Google/Chrome/NativeMessagingHosts/</string>
|
||||||
|
<string>/Library/Application Support/Google/Chrome Beta/NativeMessagingHosts/</string>
|
||||||
|
<string>/Library/Application Support/Google/Chrome Dev/NativeMessagingHosts/</string>
|
||||||
|
<string>/Library/Application Support/Google/Chrome Canary/NativeMessagingHosts/</string>
|
||||||
<string>/Library/Application Support/Microsoft Edge/NativeMessagingHosts/</string>
|
<string>/Library/Application Support/Microsoft Edge/NativeMessagingHosts/</string>
|
||||||
|
<string>/Library/Application Support/Microsoft Edge Beta/NativeMessagingHosts/</string>
|
||||||
|
<string>/Library/Application Support/Microsoft Edge Dev/NativeMessagingHosts/</string>
|
||||||
|
<string>/Library/Application Support/Microsoft Edge Canary/NativeMessagingHosts/</string>
|
||||||
<string>/Library/Application Support/Vivaldi/NativeMessagingHosts/</string>
|
<string>/Library/Application Support/Vivaldi/NativeMessagingHosts/</string>
|
||||||
</array>
|
</array>
|
||||||
</dict>
|
</dict>
|
||||||
|
|||||||
@@ -161,7 +161,13 @@ export class NativeMessagingMain {
|
|||||||
return {
|
return {
|
||||||
'Firefox': `${this.homedir()}/Library/Application\ Support/Mozilla/NativeMessagingHosts/`,
|
'Firefox': `${this.homedir()}/Library/Application\ Support/Mozilla/NativeMessagingHosts/`,
|
||||||
'Chrome': `${this.homedir()}/Library/Application\ Support/Google/Chrome/NativeMessagingHosts/`,
|
'Chrome': `${this.homedir()}/Library/Application\ Support/Google/Chrome/NativeMessagingHosts/`,
|
||||||
|
'Chrome Beta': `${this.homedir()}/Library/Application\ Support/Google/Chrome\ Beta/NativeMessagingHosts/`,
|
||||||
|
'Chrome Dev': `${this.homedir()}/Library/Application\ Support/Google/Chrome\ Dev/NativeMessagingHosts/`,
|
||||||
|
'Chrome Canary': `${this.homedir()}/Library/Application\ Support/Google/Chrome\ Canary/NativeMessagingHosts/`,
|
||||||
'Microsoft Edge': `${this.homedir()}/Library/Application\ Support/Microsoft\ Edge/NativeMessagingHosts/`,
|
'Microsoft Edge': `${this.homedir()}/Library/Application\ Support/Microsoft\ Edge/NativeMessagingHosts/`,
|
||||||
|
'Microsoft Edge Beta': `${this.homedir()}/Library/Application\ Support/Microsoft\ Edge\ Beta/NativeMessagingHosts/`,
|
||||||
|
'Microsoft Edge Dev': `${this.homedir()}/Library/Application\ Support/Microsoft\ Edge\ Dev/NativeMessagingHosts/`,
|
||||||
|
'Microsoft Edge Canary': `${this.homedir()}/Library/Application\ Support/Microsoft\ Edge\ Canary/NativeMessagingHosts/`,
|
||||||
'Vivaldi': `${this.homedir()}/Library/Application\ Support/Vivaldi/NativeMessagingHosts/`,
|
'Vivaldi': `${this.homedir()}/Library/Application\ Support/Vivaldi/NativeMessagingHosts/`,
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user