Notification

Planning your return to office strategy? See how ChromeOS can help.

Chrome Browser quick start (Mac)

3. Install apps

You can automatically install Chrome apps and extensions on your users' Mac computers. You can also control which apps or extensions they can install themselves. Set a default policy (ExtensionSettings) for all apps and extensions. Then, if you want to customize a specific app or extension, override the default settings. To install apps in the cloud, you can use Chrome Browser Cloud Management.

Step 1: Update configuration file

Using your preferred XML file editor:

  1. Open the Chrome Browser configuration profile.
  2. Add or update the ExtensionSettings key.
  3. Set your desired app and extension policies (details below). 

Step 2: Set policies

To control how Chrome Browser installs apps and extensions, you can set 2 types of policies:

  • Default policies apply for all apps and extensions. Use the * value.
  • (Optional) Custom policies apply for individual apps or extensions. Use the app or extension ID.

You can control whether an app or extension is blocked, allowed, or automatically installed on devices. This overrides the ExtensionInstallForcelist policy.

In the ExtensionSettings key in the configuration profile, set the installation mode to:

  • allowed—Users can install apps and extensions from the Chrome Web Store. If no installation mode is defined, this is the default.
  • blocked—Users can’t install apps or extensions from the Chrome Web Store. You can define a custom error message that lets users know it’s blocked (details below).
  • force_installed—Automatically install extensions that you specify without user interaction. Users can’t disable or remove them. You also need to define the extension download location (details below).
  • normal_installed—Automatically install extensions that you specify without user interaction. Users can disable them. You also need to define the extension download location (details below).

Example installation code

The example shows how to:

  • Automatically install Google Docs Offline (ghbmnnjooekpmoecnnnilnnbdlolhkhi) and Google Keep (lpcaedmchfhocbbapmcbpinfpgnhiddi) on user devices.
  • Allow users to disable Keep but not Docs Offline.
  • Allow users to install Google Calendar (gmbgaklkmjakoegficnlkhebmhkjfich) from the Chrome Web Store.
  • Prevent users from installing any other apps or extensions.

<key>ExtensionSettings</key>
<dict>
 <key>*</key>
 <dict>
   <key>installation_mode</key>
   <string>blocked</string>
 </dict>
 <key>nckgahadagoaajjgafhacjanaoiihapd</key>
 <dict>
   <key>installation_mode</key>
   <string>force_installed</string>
   <key>update_url</key>
   <string>https://clients2.google.com/service/update2/crx</string>
 </dict>
 <key>lpcaedmchfhocbbapmcbpinfpgnhiddi</key>
 <dict>
   <key>installation_mode</key>
   <string>normal_installed</string>
   <key>update_url</key>
   <string>https://clients2.google.com/service/update2/crx</string>
 </dict>
 <key>gmbgaklkmjakoegficnlkhebmhkjfich</key>
 <dict>
   <key>installation_mode</key>
   <string>allowed</string>
 </dict>
</dict>

Was this helpful?

How can we improve it?
Search
Clear search
Close search
Main menu
1434909141736753520
true
Search Help Center
true
true
true
true
true
410864
false
false