Firefox add-ons

Bronze Contributor
Bronze Contributor

Please let me know how I can audit tealium UDO calls on Firefox. Like having google chrome extenssion of tealium.

6 REPLIES 6

Firefox add-ons

Tealium Expert
Tealium Expert

Hey @RahulChakole!

There are a few things you can do to test Tealium in FireFox. The good news is that IQ uses javascript and everything is available in the Developer tools, no matter what browser you use.

 

1) Audit the Data Layer - In the Console under Developer Tools, you can type 'utag.data' and instantly see what is being added to the data layer at any time. Keep in mind that if you are doing a lot of utag.link() calls, that data may not show up there. That data is in the 'b' object instead of the utag.data object. There is a ton of information about the b object in the documentation section of this site.

 

2) Audience Stream - Both utag.data[] and b[] object data gets set to AudienceStream. If you have AudienceStream as part of your contract AND have the Tealium Collect tag setup you can see what data is collected by looking under the Network tab of the Developer tools. Search for 'i.gif' and look at the Params tab to see all the data that is being collected.

 

3) If you don't have Audience Stream, I have personally setup a Custom Contaner tag in IQ to print out the b[] object into the browsers console. This works for any browser and simplifies everything a ton. Here is the code I use.

    USE AT YOUR OWN RISK!

 

    for (var k in b){if (typeof b[k] !== 'function') {console.log(k + " : " + b[k]);}}

 

Good Luck.

 

Let us know if this helps.

Firefox add-ons

Tealium Employee

@RahulChakole

 

We are looking at migrating the Tealium Tools to Firefox now that Firefox supports the same types of extensions.

 

In the meantime, you can use this browser tool to look at the data:

 

Tag Monitor

https://community.tealiumiq.com/t5/iQ-Tag-Management/Tealium-Tools-Universal-Tag-Debugger/ta-p/15179

Spoiler
javascript&colon;void(window.open("","utagmon","width=600,height=600,location=0,menubar=0,status=1,toolbar=0,resizable=1,scrollbars=1").document.write("<script language='JavaScript' id='utagmon' src='//tags.tiqcdn.com/utag/tealium-solutions/main/prod/utag.4.js?opt_show_enrich=0&opt_show_meta=0&opt_show_query=0&opt_show_tiq=0&opt_show_dom=0&opt_show_ecomm=0&opt_show_cookie=0&"+Math.random()+"'></"+"script>"));

 

Adrian

 

 

Ask me anything Tealium related or TypeScript/JavaScript, or NodeJS.
Please remember to mark solutions as accepted for future searchers.

Firefox add-ons

Employee Emeritus

Great news! The Tealium Tools extension is now available for both the Chrome and Firefox browsers. Learn More.

Firefox add-ons

Gold Contributor
Gold Contributor

Has the Tealium Tool Firefox Extension been removed? The Tealium page with link to the Firefox extension gives a 404 and I can't find it in a search on Firefox. Any plans to bring this back? @Tony_Taliaferro 

Firefox add-ons

Employee Emeritus

This appears to be a bug and I have filed a ticket for resolution. I will post the resolution as soon as it is available. Have you used the Tealium Tools extension on Firebox before, or is this the first time? Are you able to load from Chrome until resolved?

Firefox add-ons

Gold Contributor
Gold Contributor

@Tony_Taliaferro sorry for late response. Just saw this now. We cross-browser test quite a bit so we use both the Firefox and Chrome extensions to help us switch profiles.

Public