1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-06 11:43:51 +00:00

setup google analytics with pageview tracking

This commit is contained in:
Kyle Spearrin
2016-09-27 22:44:42 -04:00
parent d49f0fcac3
commit a727e107fe
8 changed files with 51 additions and 2 deletions

26
src/scripts/analytics.js Normal file
View File

@@ -0,0 +1,26 @@
var gaUtils = chrome.extension.getBackgroundPage().utilsService,
gaTrackingId = null;
if (gaUtils.isChrome()) {
gaTrackingId = 'UA-81915606-6';
}
else if (gaUtils.isFirefox()) {
gaTrackingId = 'UA-81915606-7';
}
else if (gaUtils.isEdge()) {
gaTrackingId = 'UA-81915606-9';
}
else if (gaUtils.isOpera()) {
gaTrackingId = 'UA-81915606-8';
}
if (gaTrackingId) {
ga('create', gaTrackingId, 'auto');
}
// Removes failing protocol check. ref: http://stackoverflow.com/a/22152353/1958200
ga('set', 'checkProtocolTask', function () { });
if (typeof isBackground !== 'undefined') {
ga('send', 'pageview', '/background.html');
}

View File

@@ -0,0 +1,5 @@
(function (i, s, o, g, r, a, m) {
i['GoogleAnalyticsObject'] = r; i[r] = i[r] || function () {
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');