infobars.md (2376B)
Infobars
Infobars are shown at the top of the browser content area, these can be per tab (switching tabs hides it) or global (persistent across tabs).
Example of a Infobar

Testing Infobars
Via the dev tools:
- View the current number of impressions for individual mes
- View the current number of impressions for individual mes
- View the current number of impressions for individual mes
- View the current number of impressions for individual mes
- View the current number of impressions for individual mes
- View the current number of impressions for individual mes
- View the current number of impressions for individual mes
- Note: Overlapping infobars will not be shown when testing multiple infobar messages
- Note: Modifying the
labelproperty will change the text within the buttons, eg:"label": "Disable"
Via Experiments:
You can test Infobar messaging surface by creating an experiment or landing message in tree. Messaging Journey captures creating and testing experiments via Nimbus.
Example JSON for Infobar
{
"content": {
"text": "Your privacy matters. Nightly now securely routes your DNS requests whenever possible to a partner service to protect you while you browse.",
"buttons": [
{
"label": "Okay",
"action": {
"type": "ACCEPT_DOH"
},
"primary": true
},
{
"label": "Disable",
"action": {
"type": "DISABLE_DOH"
}
}
],
"priority": 1,
"bucket_id": "TEST_DOH_BUCKET"
},
"trigger": {
"id": "openURL",
"patterns": [
"*://*/*"
]
},
"template": "infobar",
"frequency": {
"lifetime": 3
},
"targeting": "firefoxVersion >= 89",
"id": "Test_Infobar"
}