How to add a tracker in your XWiki using JavaSriptExtension object?
Version 4.1 by Camelia Andrei on 2020/05/05
Example with the Albacross tool
To start tracking your wiki visitors you need to install manually a tracking code to your wiki, using a JavaScript Extension Object.
Edit the main page of your wiki in object mode and add a Objects of type XWiki.JavaScriptExtension . Add the code below within this object and pick "Use this extension: On this wiki" in order to apply the code on the entire wiki.
document.observe('xwiki:dom:loaded', function() {
var script = document.createElement('script');
script.type = 'text/javascript';
script.innerHTML = "(function(a,l,b,c,r,s){_nQc=c,r=a.createElement(l),s=a.getElementsByTagName(l)[0];r.async=1;r.src=l.src=('https:'==a.location.protocol?'https://':'http://')+b;s.parentNode.insertBefore(r,s);}) (document,'script','serve.albacross.com/track.js','Replace-this-with-client-ID')";
document.body.appendChild(script);
});
var script = document.createElement('script');
script.type = 'text/javascript';
script.innerHTML = "(function(a,l,b,c,r,s){_nQc=c,r=a.createElement(l),s=a.getElementsByTagName(l)[0];r.async=1;r.src=l.src=('https:'==a.location.protocol?'https://':'http://')+b;s.parentNode.insertBefore(r,s);}) (document,'script','serve.albacross.com/track.js','Replace-this-with-client-ID')";
document.body.appendChild(script);
});
For more details about how to add a JavaScriptExtension Object, check out the official documentation.