How to deploy Corma extensions with Jamf

This documentation explains how to create a new Jamf policy to deploy the Corma browser extension on Mac computers. After you deploy, the Corma extension will be added to the Google Chrome or Mozilla Firefox browser on all managed Mac devices.

If you want to deploy the browser extension to Windows devices, use GPO or Intune.

Mass deploy to Google Chrome

  1. Log in to your admin account on Jamf Pro.

  2. Select Computers. In the Content Management section, select Configuration Profiles, and then New.

  3. In the search bar, enter "upload" and select Application & Custom Settings. Then select Upload.

  4. Select Add.

  5. For Preference Domain, enter “com.google.Chrome”.

  6. For Property List, enter:

<?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>iolppafpkhfdepflackhngphhjkocjoa</key> <!-- Corma -->
    <dict>
        <key>installation_mode</key>
        <string>force_installed</string>
        <key>update_url</key>
        <string>https://clients2.google.com/service/update2/crx</string>
    </dict>
</plist>
  1. In the Scope tab, select the Computers or Users you want to target.

  2. Select Save.

Mass deploy to Mozilla Firefox

  1. Log in to your admin account on Jamf Pro.

  2. Select Computers. In the Content Management section, select Configuration Profiles, and then New.

  3. In the search bar, enter "upload". Select Application & Custom Settings, and then select Upload.

  4. Select Add.

  5. For Preference Domain, enter “org.mozilla.firefox”.

  6. For Property List, enter:

<?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>{c57d789b-2b51-453b-9306-56691ebbd6d1}</key> <!-- Corma -->
        <dict>
            <key>installation_mode</key>
            <string>force_installed</string>
            <key>install_url</key>
            <string>https://firefox-selfhosted-extension.s3.eu-west-3.amazonaws.com/7fcabed5cd514b0c8aa7-2.0.91.xpi</string>
        </dict>
</plist>
  1. In the Scope tab, select the Computers or Users you want to target.

  2. Select Save.

Last updated