mirror of
https://github.com/bitwarden/browser
synced 2025-12-23 19:53:43 +00:00
* Implemented a SendNativeStatus command This allows reporting status or asking the electron app to do something. * fmt * Update apps/desktop/src/autofill/services/desktop-autofill.service.ts Co-authored-by: Daniel García <dani-garcia@users.noreply.github.com> * clean up * Don't add empty callbacks * Removed comment --------- Co-authored-by: Daniel García <dani-garcia@users.noreply.github.com>
23 lines
683 B
Plaintext
23 lines
683 B
Plaintext
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
<plist version="1.0">
|
|
<dict>
|
|
<key>NSExtension</key>
|
|
<dict>
|
|
<key>NSExtensionAttributes</key>
|
|
<dict>
|
|
<key>ASCredentialProviderExtensionCapabilities</key>
|
|
<dict>
|
|
<key>ProvidesPasskeys</key>
|
|
<true />
|
|
<key>ShowsConfigurationUI</key>
|
|
<true />
|
|
</dict>
|
|
</dict>
|
|
<key>NSExtensionPointIdentifier</key>
|
|
<string>com.apple.authentication-services-credential-provider-ui</string>
|
|
<key>NSExtensionPrincipalClass</key>
|
|
<string>$(PRODUCT_MODULE_NAME).CredentialProviderViewController</string>
|
|
</dict>
|
|
</dict>
|
|
</plist> |