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:
26
src/scripts/analytics.js
Normal file
26
src/scripts/analytics.js
Normal 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');
|
||||
}
|
||||
Reference in New Issue
Block a user