MacOS – Chrome AutoSelectCertificateForUrls OSX

google-chromemacossettingsssl

I have a client SSL certificate for authentication. I'm trying to map it to a URL in Chrome on OSX, however the Chromium documentation is of no use.

I have no idea what file to put the AutoSelectCertificateForUrls preference in. My guess is it will be some file in ~/Library/Application Support/Google/Chrome/Default, based on this.

Best I can do is find some random files with .json extensions via find. They're all extensions and have bizarre paths, e.g.

Default/Extensions/pjkljhegncpnkpknbcohdijeoejaedia/7_1/_locales/nl/messages.json

Can someone tell me what file to put the AutoSelectCertificateForUrls setting in?

Best Answer

The preference goes in the com.google.Chrome.manifest file.

  1. Open the manifest folder with the following Terminal command.

    open /Applications/Google\ Chrome.app/Contents/Resources/com.google.Chrome.manifest/Contents/Resources/
    

    This presumes Google Chrome is in /Applications; adjust if necessary. Make sure to copy the entire line.

  2. Open com.google.Chrome.manifest. I will use TextMate.

  3. The AutoSelectCertificateForUrls preference goes on line 174.

    Alternatively, use ⌘F to search for AutoSelectCertificateForUrls then select the pfm_targets array.

  4. Replace user-managed with your preference string, per the example in the link you gave.

    {\"pattern\":\"https://www.example.com\",\"filter\":{\"ISSUER\":{\"CN\":\"certificate issuer name\"}}}
    

Alternatively, you can use Workgroup Manager to set the preference.

  1. Download and open Workgroup Manager.

  2. Connect to localhost with an admin account.

  3. Choose the User tab, and enter your username, then select your account.

  4. Select Preferences in the toolbar, and choose the Details tab.

  5. Add Google Chrome or Chromium to the list by clicking the + button and selecting the application bundle.

  6. Double-click the application that you want to add the preference to, or click it and click the pencil button.

  7. Click Always, then choose New Key.

  8. Click New Item, and select Automatically select client certificates for these sites.

  9. Click New Key.

  10. Double-click the Value for 0.

  11. Enter your desired preference string into the box and press enter.

  12. Click Apply Now, then Done.

  13. A managed icon should appear next to the app that you added the preference to.