Enabling Policies on Chrome for Mac

Just type this into a Terminal

defaults write com.google.Chrome EnableCommonNameFallbackForLocalAnchors -bool true

I think we figured it out.

We needed to create a file called "com.google.Chrome.plist" in /Library/Managed Preferences

That file contains:

<?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>EnableCommonNameFallbackForLocalAnchors</key>
    <true/>
</dict>
</plist>

This worked and we pushed it out using Jamf. That said, if someone has a better way to do this please let me know.

Hope this helps someone.