Add the `com.apple.developer.web-browser` entitlement to enable native password autofill from iCloud Passwords and third-party Credential Provider Extensions (e.g. 1Password) in the browser panel's WKWebView. This entitlement tells macOS that cmux functions as a web browser, allowing the system to provide credential autofill suggestions on password fields for any domain — the same mechanism Safari uses. Note: this is a restricted entitlement that requires Apple's approval via a provisioning profile. Until approved, the entitlement will be present in the binary but inactive at runtime.
20 lines
617 B
XML
20 lines
617 B
XML
<?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>com.apple.security.cs.disable-library-validation</key>
|
|
<true/>
|
|
<key>com.apple.security.cs.allow-unsigned-executable-memory</key>
|
|
<true/>
|
|
<key>com.apple.security.cs.allow-jit</key>
|
|
<true/>
|
|
<key>com.apple.security.device.camera</key>
|
|
<true/>
|
|
<key>com.apple.security.device.audio-input</key>
|
|
<true/>
|
|
<key>com.apple.security.automation.apple-events</key>
|
|
<true/>
|
|
<key>com.apple.developer.web-browser</key>
|
|
<true/>
|
|
</dict>
|
|
</plist>
|