Hi Professionals, I'm creating some demos for the client, and Right now I'm not placing the Utag code into the Client website but I'm using the TamperMonkey Tool to walk through the websites and capture the page views/behavior in the trace. I've done the setup to the website by placing the function code from the Code Center in the Tampermonkey dashboard. Based on that we are going to build the use-cases for the client as per the site functionality. The Tampermonkey script looks to be checking for a specific URL // ==UserScript== // @name New Userscript // @namespace http://tampermonkey.net/ // @version 0.1 // @description try to take over the world! // @author You // @match https://www.demo.com/ // @grant none // ==/UserScript== (function(a,b,c,d){ a='https://tags.tiqcdn.com/utag/account/profile/prod/utag.js'; b=document;c='script';d=b.createElement(c);d.src=a;d.type='text/java'+c;d.async=true; a=b.getElementsByTagName(c)[0];a.parentNode.insertBefore(d,a); })(); (see @match part), so as soon as the URL changes, the condition for the @match no longer matches and therefore does not load again for other pages and not showing any page views. for some website the trace ID gets wiped out as soon as the URL changes, is it possible this cookie( trace_id) is not being set correctly or being removed, due to security policies on the site? So, please provide some suggestion so that I can proceed further. Kind Regards, Md Aaqib Uddin
... View more