wikijs-fork/server/modules/analytics/google/definition.yml

24 lines
824 B
YAML

key: google
title: Google Analytics
description: Google specializes in Internet-related services and products, which include online advertising technologies, search engine, cloud computing, software, and hardware.
author: requarks.io
logo: https://static.requarks.io/logo/google-analytics.svg
website: https://analytics.google.com/
isAvailable: true
props:
propertyTrackingId:
type: String
title: Property Tracking ID
hint: UA-XXXXXXX-X
order: 1
codeHead: |
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id={{propertyTrackingId}}"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', '{{propertyTrackingId}}');
</script>