1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-15 15:53:27 +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');
}