Skip to content

Instantly share code, notes, and snippets.

@xorrior
Last active November 16, 2020 16:53
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save xorrior/8ee611d4f91b91f03ec16bed1324be56 to your computer and use it in GitHub Desktop.
Save xorrior/8ee611d4f91b91f03ec16bed1324be56 to your computer and use it in GitHub Desktop.
Example configuration profile for managing Chrome Extensions
<?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>com.example.profile.chrome</string>
<key>PayloadRemovalDisallowed</key>
<true/>
<key>PayloadScope</key>
<string>System</string>
<key>PayloadType</key>
<string>Configuration</string>
<key>PayloadUUID</key>
<string>UUID</string>
<key>PayloadOrganization</key>
<string>Example</string>
<key>PayloadVersion</key>
<integer>1</integer>
<key>PayloadDisplayName</key>
<string>Chrome Default 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>com.example.chromeconfig</string>
<key>PayloadUUID</key>
<string>UUID</string>
<key>PayloadEnabled</key>
<true/>
<key>PayloadDisplayName</key>
<string>Policy: (com.google.Chrome)</string>
<!--Extension Controls-->
<key>ExtensionInstallSources</key>
<array>
<!--Install from any source-->
<string>*://*/*</string>
</array>
<key>ExtensionInstallForcelist</key>
<array>
<!--Application ID and update URL-->
<string>EXTENSION_APPID;https://yourwebserver/version.xml</string>
</array>
<key>ExtensionInstallWhitelist</key> <!--Probably don't need this key since there isn't a black list-->
<array>
<string>APPID</string>
</array>
</dict>
</array>
</dict>
</plist>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment