Option 1 - End User Deployment-
Share the installation link with your end users ( ask us for the installation link)
Open the Chrome Web Store link in Edge
Edge will prompt to allow extensions from other stores
Click "Allow extensions from other stores" if prompted
Click "Get" or "Add to Chrome" button (it will install to Edge)
Option 2 - Registry-based deployment-
Open Registry Editor (regedit.exe) as Administrator
Navigate to: HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Edge
If ExtensionInstallForcelist doesn't exist, create it as a new Key
Inside that key, create a new String Value named "1"
Set the value data to: <extension ID>;https://clients2.google.com/service/update2/crx
ask us for extension IDClose Registry Editor
Restart Edge or reboot computers
Option 3 - GPO (Group Policy Object)-
Open Group Policy Management Console (gpmc.msc) as Administrator
Create or edit a Group Policy Object
Navigate to: Computer Configuration > Policies > Administrative Templates > Google Microsoft Edge > Extensions
Open “Control which extensions are installed silently”
Enable the policy
Click "Show" and add: <extension ID>;https://clients2.google.com/service/update2/crx
ask us for extension IDClick OK and close
Link the GPO to the desired Organizational Unit (OU)
Run gpupdate /force on client machines or wait for automatic sync
Result: Extension deploys to all computers in the OU when Edge launches.
Option 4 - ExtensionSettings Policy (Alternative GPO Method)
This method uses JSON configuration and provides more control over extension settings.
Open Group Policy Management Console (gpmc.msc) as Administrator
Create or edit a Group Policy Object
Navigate to: Computer Configuration > Policies > Administrative Templates > Microsoft Edge > Extensions
Open "Configure extension management settings"
Enable the policy
In the text box, enter the following JSON (replace extension ID with the actual Chrome extension ID):
{"<extension ID>": "installation_mode":"force_installed","update_url": "https://clients2.google.com/service/update2/crx"}}Click OK and close
Link the GPO to the desired Organizational Unit (OU)
Run gpupdate /force on client machines or wait for automatic sync
Option 5 - Microsoft Intune (MDM)-
Sign in to Microsoft Endpoint Manager admin center (http://endpoint.microsoft.com )
Go to Devices > Configuration profiles
Click Create profile
Select Platform: Windows 10 and later
Select Profile type: Templates > Administrative Templates
Click Create
Name the profile
Go to Configuration settings
Search for "Edge" or navigate to: Computer Configuration > Microsoft Edge > Extensions
Enable "Control which extensions are installed silently"
Add: <extension ID>;https://clients2.google.com/service/update2/crx
ask us for extension IDAssign to appropriate device groups
Review and create
Option 6 - JAMF Pro (macOS Management)-
Sign in to JAMF Pro
Go to Computers > Configuration Profiles
Click New
Name the profile
Select Application & Custom Settings
Click Configure
Add Custom Schema for Edge:
Source: External Applications
Preference Domain: com.microsoft.Edge
Upload or configure the property list:
xml
<key>ExtensionInstallForcelist</key> <array> <string><extension ID>;https://clients2.google.com/service/update2/crx</string> </array>
ask us for extension ID
Set Scope to target computers/groups
Save and deploy