Titanium is a Chromium-based browser that provides a locked and secure experience for Android 8+ devices. Managed configurations are used to customize the browsing experience.
Reach out to your Esper representative for Titanium access.
In this article:
Default Behavior
Out of the box, Titanium displays an about:blank page without a URL bar.
Most behavior can be customized with managed configurations.
Some behaviors are available by default and not configurable.
Non-persistable tabs on restart
Requires Titanium v105.0.5195.126+
Memory is cleared upon each new browser session.
Do not track and network isolation
Requires Titanium v90.0.4430.83+
Features such as Do Not Track (which opts out of tracking by websites) and Network Isolations are available by default.
Blank new tab and page
Requires Titanium v90.0.4430.83+
The browser launches with a blank new tab and page which reduces Google branding.
Customizing Titanium’s Managed Configurations
You can customize the Titanium browser through the config file in a blueprint. In a blueprint’s Apps & Configuration section, add Titanium to the app list, and click on the Actions ellipsis (...).
Select Managed Configurations, and edit the config file.
Press Apply Changes. Then, save and publish the blueprint and converge the device. You can update the configs at any time by updating the blueprint.
Managed Configurations
Customize the browser experience with the following managed configurations. In addition, Titanium supports all Chrome managed configurations.
Allow and block list
Requires: Titanium v108.0.5359.130+
Out of the box, the browser does not allow access to any websites unless specified in the managed configuration file.
Both the allowlist and blocklist are configurable, enabling admins to specify the sites available for browsing.
Example to allow all sites and block example website:
{
"URLAllowlist":[
"*"
],
"URLBlocklist":[
"example.com"
]
}
Homepage
Requires: Titanium v108.0.5359.130+
The browser’s homepage defaults to a blank page (about:blank), which reduces Google branding. Any site may be set as the homepage with HomepageLocation.
Example to set the homepage:
{
“HomepageLocation”: "https://esper.io"
}
URL bar
Requires Titanium v108.0.5359.130+
The URL bar is hidden by default.
Example to show the URL bar:
{
"URLBarVisible": true
}
Main menu
Requires Titanium v90.0.4430.83+
The main menu is hidden by default and its keyboard shortcuts are disabled by default.
Example to show the main menu and enable the keyboard shortcut:
{
"HideMainMenu":false
}
Long press menu
Requires Titanium v90.0.4430.83+
The menu that pops up when the user presses and holds on a website can be disabled through a config file.
Example to disable long press menu:
{
"DisableLongPressMenu": true
}
Silent permissions for audio and video capture
Requires Titanium v105.0.5195.127+
Automatic audio and video capture permissions are enabled by default for sites added to AudioCaptureAllowedUrls and VideoCaptureAllowedUrls.
Example auto-enable audio and video:
{
"AudioCaptureAllowedUrls":[
"https://example.com"
],
"VideoCaptureAllowedUrls":[
"https://example.com"
]
}
Text select menu
Version 117.0.5938.155+
The text select menu is restricted by default. Options such as “Web Search” and “Open” are disabled by default. “Copy” and “Select All” are available. To customize, use values with the configuration “EnableFullTextSelectMenu”. The default value is false.
Example to enable the full-text select menu:
{
"EnableFullTextSelectMenu": true
}
Access to tab management
Version 124.0.6367.85+
Access to the tab management page is disabled by default. This disables the tab stack button and gestures that launch the tab management page.
Example to enable tab management:
{
“DisableTabManagement”: false
}
Managed Configuration Copy/Paste File
Copy the file. Note that all keys are set to their default values.
{
"URLAllowlist": [
"*"
],
"URLBlocklist": [
"example.com"
],
"HomePageLocation": "https://esper.io",
"URLBarVisible": false,
"HideMainMenu": false,
"DisableLongPressMenu": true,
"AudioCaptureAllowedUrls": [
"https://example.com"
],
"VideoCaptureAllowedUrls": [
"https://example.com"
],
"EnableFullTextSelectMenu": false,
"DisableTabManagement": true
}