Skip to content

Instantly share code, notes, and snippets.

@WardsParadox
Created April 9, 2018 17:07
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save WardsParadox/9ba7cec7b40783d14e2b39dc3661c9d6 to your computer and use it in GitHub Desktop.
Save WardsParadox/9ba7cec7b40783d14e2b39dc3661c9d6 to your computer and use it in GitHub Desktop.
Newer style chromeconfig example for multi domain pattern sign-in whitelist
<?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>PayloadIdentifier</key>
<string>org.example.profile.chrome</string>
<key>PayloadRemovalDisallowed</key>
<true/>
<key>PayloadScope</key>
<string>System</string>
<key>PayloadType</key>
<string>Configuration</string>
<key>PayloadUUID</key>
<string>D3E27DA6-AC75-4342-800E-EA64DBA681E3</string>
<key>PayloadOrganization</key>
<string>ORG NAME</string>
<key>PayloadVersion</key>
<integer>1</integer>
<key>PayloadDisplayName</key>
<string>Chrome Configuration</string>
<key>PayloadContent</key>
<array>
<dict>
<key>PayloadType</key>
<string>com.google.Chrome</string>
<key>PayloadVersion</key>
<integer>1</integer>
<key>PayloadIdentifier</key>
<string>org.example.chromeconfig</string>
<key>PayloadUUID</key>
<string>13373056-FC4A-4BF3-894A-B6DB3D90FA58</string>
<key>PayloadEnabled</key>
<true/>
<key>PayloadDisplayName</key>
<string>Custom: (com.google.Chrome)</string>
<!--Extension Controls-->
<key>ExtensionInstallSources</key>
<array>
<string>https://clients2.googleusercontent.com/crx/*</string>
<string>https://chrome.google.com/webstore/*</string>
</array>
<!--Startup Settings-->
<key>RestrictSigninToPattern</key>
<string>.*@(domain1\.org|domain2\.org)</string>
</dict>
</array>
</dict>
</plist>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment