Posted on 11-29-2023 05:47 AM
Has anyone had any luck getting these to work?
or am i just doing something stupid?
Solved! Go to Solution.
Posted on 11-29-2023 06:46 AM
You have the full URL as your extension ID, you just need the code at the end of the URL as the Extension ID.
Posted on 11-29-2023 06:06 AM
work for me
{
"title": "Google Chrome Extensions (com.google.Chrome)",
"description": "Install extensions in Google Chrome",
"properties": {
"ExtensionInstallForcelist": {
"title": "Extension Install Forcelist",
"description": "Add extension IDs. Paste the extension ID in front of the default text.",
"property_order": 5,
"type": "array",
"items": {
"title": "Extension ID",
"default": "<paste extension ID here>;https://clients2.google.com/service/update2/crx",
"type": "string"
}
}
}
}
Posted on 11-29-2023 06:46 AM
You have the full URL as your extension ID, you just need the code at the end of the URL as the Extension ID.
Posted on 11-29-2023 07:55 AM
that was it! thanks!
Posted on 12-06-2023 10:00 PM
Thank you @Tribruin you solved my problem also, I was thinking about starting a thread but then I found my solution here, thanks again.
Posted on 03-04-2024 04:18 AM
<?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>ExtensionAllowedTypes</key> <array> <string>extension</string> </array> <key>ExtensionInstallAllowlist</key> <array> <string>hdokiejnpimakedhajhdlcegeplioahd</string> <string>oiekdmlabennjdpgimlcpmphdjphlcha</string> <string>jfbnmfgkohlfclfnplnlenbalpppohkm</string> <string>difoiogjjojoaoomphldepapgpbgkhkb</string> </array> <key>ExtensionInstallBlacklist</key> <array> <string>*</string> </array> <key>ExtensionInstallBlocklist</key> <array> <string>*</string> </array> <key>ExtensionInstallSources</key> <array> <string>https://jamf.com</string> </array> <key>ExtensionInstallWhitelist</key> <array> <string>oiekdmlabennjdpgimlcpmphdjphlcha</string> <string>hdokiejnpimakedhajhdlcegeplioahd</string> <string>jfbnmfgkohlfclfnplnlenbalpppohkm</string> </array> </dict> </plist>