Copy link to clipboard
Copied
I've build a CEP extension for After Effects and it works great so far.
I was hoping to implement Google Analytics so we can see which features are used the most etc.
When we test the frontend in a browser Google Analytics works. When we use it in the extension it doesn't show any results / hits. Even when I use .debug and look at the localhost:8088... no hits are recordered by Google.
I'm not sure who is to "blame" for this Google or Adobe?
Any suggestions would be much appreciated thanks.
This is the code that is used in the index.html of the extension:
<!-- Global site tag (gtag.js) - Google Analytics --> <script async src="https://www.googletagmanager.com/gtag/js?id=G-#########"></script> <script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'G-#######'); </script>
Copy link to clipboard
Copied
On the face of it, I wouldn't think this would work.
However, a few people from the CEP team did respond with these links:
Copy link to clipboard
Copied
@marco69957701 did you find a solution to this?