-
-
Save xorrior/8ee611d4f91b91f03ec16bed1324be56 to your computer and use it in GitHub Desktop.
Example configuration profile for managing Chrome Extensions
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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