David
unread,Jul 3, 2023, 7:24:56 AM7/3/23Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Chromium Extensions, Oliver Dunk, Chromium Extensions, David
Almost, we create those mobileconfig files to force install the extension, and that's working well.
I'm referring to a custom extension policy that isn't part of the browser policy. In the example XML I posted there are three values. When this configuration is imported to the local directory service under mcx_application_data, the browser will load it under the extension policy and it will be available to be read from managed storage.
This configuration will differ between devices/hosts so it needs to be generated and configured by a shell script (usually run by an MDM tool). However, using the local directory service / MCX to configure the browser is not encouraged anymore. Is there support for this configuration in other configuration methods?
<key>com.google.Chrome.Browser.extensions.${EXTENSION_ID}</key>
<dict>
<key>hostname</key>
<dict>
<key>state</key>
<string>always</string>
<key>value</key>
<string>${HOSTNAME}</string>
</dict>
<key>device_id</key>
<dict>
<key>state</key>
<string>always</string>
<key>value</key>
<string>${DEVICE_ID}</string>
</dict>
<key>username</key>
<dict>
<key>state</key>
<string>always</string>
<key>value</key>
<string>${USERS}</string>
</dict>
</dict>
</dict>
</plist>