forcing google chrome extensions

danlaw777
Contributor III

Has anyone had any luck getting these to work? 

danlaw777_0-1701265619896.png

 

danlaw777_1-1701265645277.png

or am i just doing something stupid?

1 ACCEPTED SOLUTION

Tribruin
Valued Contributor II

You have the full URL as your extension ID, you just need the code at the end of the URL as the Extension ID. 

View solution in original post

5 REPLIES 5

YanW
Contributor III

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"
      }
    }
  }
}

 

Screenshot 2023-11-29 at 9.03.56 AM.png

Tribruin
Valued Contributor II

You have the full URL as your extension ID, you just need the code at the end of the URL as the Extension ID. 

that was it! thanks!

LarryBlanks
New Contributor

Thank you @Tribruin you solved my problem also, I was thinking about starting a thread but then I found my solution here, thanks again.

Mrudul
New Contributor

<?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>