Posted on 11-05-2024 12:21 PM
I have been testing this Configuration Profile for PrinterLogic Chrome Extension. It does install and grays out the toggle so the end user cannot remove. The issue I am having is if I remove the device from the Configuration Profile it will remove from the profiles section but the extension still shows in the Google Chrome Extensions. It is also still grayed out. I have restarted Chrome and the device. Removed Chrome and reinstalled. Anyone have any ideas?
<?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>bfgjjammlemhdcocpejaompfoojnjjfn;https://clients2.google.com/service/update2/crx</string> </array> </dict> </plist>
Posted on 11-05-2024 12:59 PM
My toggle button went back to normal after I remove the profile. If you want to remove the extension, there are scripts posted already.
<key>ExtensionInstallForcelist</key>
<array>
<string>bfgjjammlemhdcocpejaompfoojnjjfn</string> <!-- PrinterLogic -->
</array>
Posted on 11-05-2024 01:54 PM
If you set the ExtensionInstallBlocklist to *, this blocks all extensions that are not in the ExtensionInstallForcelist or the ExtensionInstallAllowlist. Chrome will automatically remove the extensions once you remove the extensionID from the ExtensionInstallForcelist. Easier than using scripts if you really want to control extensions with an iron fist.
https://chromeenterprise.google/policies/?policy=ExtensionInstallBlocklist
3 weeks ago
Thank you so much for helping me.