Customized Chromium browser policy can be created and applied to the embedded local Chromium browser on LEAFOS and RX420(RDP) devices (firmware version 3.7.3 or higher).
Please refer to the procedures below:
Customized Chromium browser policy can be uploaded and applied to supported endpoints locally or remotely via PMC Endpoint Manager.
~~
Example customized Chromium browser policy file:
Note: This file needs to be in JSON format and must contain a JSON object with two properties: "merge" and "replace". Both properties need to be JSON objects containing Chromium policies, which will be merged or will replace corresponding settings from the default Chromium policy.
sample.chromium.policy.json
{
"merge":
{
"URLAllowlist":
[
"yourcompany.com",
"yourcompany.local"
],
"ManagedBookmarks":
[
{ "name":"Mail", "url":"https://mail.yourcompany.com" },
{ "name":"Intranet", "url":"https://intranet.yourcompany.local" }
]
},
"replace":
{ "URLBlocklist": [ "http://*", "https://*" ] }
}