Use Google Tag Manager
The Accylin script can be installed even with Google Tag Manager.
Normally, you would install the Accylin tracker by using the following code:
<script
defer
src="https://app.accylin.com/script.js"
data-website-id="52819203-e43e-49aa-b4cb-d1d2bb73b22"
></script>
However, Google Tag Manager will strip the attributes from the tracker.
So you need to using the following code instead:
<script>
(function () {
var el = document.createElement('script');
el.setAttribute('src', 'https://app.accylin.com/script.js');
el.setAttribute('data-website-id', '52819203-e43e-49aa-b4cb-d1d2bb73b22');
document.body.appendChild(el);
})();
</script>