Posted on 04-21-2022 07:00 AM
I need to force install a Chrome Extension.
I have looked in Jamf Nation for solution but latest ones were in 2017 and they currently do not work (from my testing).
Has anyone got them to work with Monterey?
Solved! Go to Solution.
Posted on 04-21-2022 07:09 AM
@sgiesbrecht You need a Configuration Profile with an Application & Custom Settings payload for the com.google.Chrome preference domain and a PLIST in the form:
<?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>ExtensionInstallForcelist</key>
<array>
<string>EXTENSION IDENTIFIER GOES HERE</string>
</array>
</dict>
</plist>
Posted on 04-28-2022 05:13 PM
Here is the link to JAMF JSON files
Posted on 04-21-2022 07:09 AM
@sgiesbrecht You need a Configuration Profile with an Application & Custom Settings payload for the com.google.Chrome preference domain and a PLIST in the form:
<?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>ExtensionInstallForcelist</key>
<array>
<string>EXTENSION IDENTIFIER GOES HERE</string>
</array>
</dict>
</plist>
Posted on 04-21-2022 08:02 AM
I found my problem, I was naming the Preference Domain com.google.Chrome.<Extension name> not com.google.Chrome.
Now working,
Thx @sdagley
Posted on 04-22-2022 09:49 AM
As this is something I have to do monthly I highly recommenced using the Chrome JSON file to save time
Posted on 04-26-2022 11:28 AM
Or... if you're a Google Workspace shop, enroll your Chrome browser and manage all its settings there.
Caveat being that I can more easily mass edit the XML or JSON of a group of extensions to be installed / allowed / denied in the Jamf Pro config profile editor than in Google Workspace... but that's usually a set once, occasionally modify one or two items type thing so you're still probably better off generally doing it through Workspace Admin.
04-26-2022 01:35 PM - edited 04-26-2022 01:47 PM
Posted on 04-28-2022 05:13 PM
Here is the link to JAMF JSON files