Deploy the firefox Extension
How to Deploy:
To ensure a seamless deployment of Sonar's Firefox extension you will have to use a policies.json file or a registry entry.
Mac
Open the Applications folder, right-click Firefox and choose Show Package Contents.
In the Contents > Resources folder, create a new folder called
distribution
.Save the following in a file called
policies.json
:
{ "policies": { "ExtensionSettings": { "*": { "blocked_install_message": "Custom error message.", "install_sources": [ "about:addons", "https://addons.mozilla.org/" ], "installation_mode": "allowed", "allowed_types": [ "extension" ] }, "{ YOUR UUID }": { "installation_mode": "force_installed", "install_url": "https://static.sonarclarity.ai/YOUR UUID.xpi" } } } }
To verify that the Sonar browser extension is installed, close and re-open Firefox, click the Firefox menu item in the toolbar, and choose Add-ons.
Windows:
To install the Sonar Firefox extension on devices running Windows:
Add the following key to the Windows registry (it should be under HKEY_LOCAL_MACHINE\Software\Policies\Mozilla\Firefox):
Name:
ExtensionSettings
Data:
{"*": { "blocked_install_message": "Custom error message.", "install_sources": [ "about:addons", "https://addons.mozilla.org/" ], "installation_mode": "allowed", "allowed_types": [ "extension" ] }, "{YOUR UUID}":{ "installation_mode": "force_installed", "install_url": "https://static.sonarclarity.ai/YOUR UUID.xpi" }}

Last updated