Hey all — can someone help with a Chrome configuration profile issue?
Ive created a very very simple preferences plist file that basically sets the homepage to a particular page, shows the home button, allows incognito browsing and sets the new tab behavior to open chrome://new-tab-page. ….. after creating the config profile in jamf pro, including the plist, and scoping out to a couple test machines — it applies!
The problem — it crashes Chrome if you try to open a window in Incognito mode.
Any thoughts?
my plist xml file
<?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>HomepageLocation</key>
  <string>https://company.atlassian.net/wiki/</string>
  <key>HomepageIsNewTabPage</key>
  <false/>
  <key>RestoreOnStartup</key>
  <integer>1</integer>
  <key>IncognitoModeAvailability</key>
  <integer>0</integer>
  <key>ShowHomeButton</key>
  <true/>
  <key>NewTabPageLocation</key>
  <string>chrome://new-tab-page</string>
</dict>
</plist>
