* {@code localStorage}
*/
chrome.browserAction.onClicked.addListener(function(tab) {
- //calls the method to provide the Google Analytics Data
- getAnalyticsData();
// Get the value from localStorage
var showPrompt = localStorage['prompt'] || CONSTANTS.YES;
clearCookies(clearHistory);
}
});
-
- var _gaq = _gaq || [];
-/**
- * provides the Google analytics data
- */
-function getAnalyticsData() {
- _gaq.push(['_setAccount', 'UA-28968723-1']);
- _gaq.push(['_trackPageview']);
-
- (function() {
- var ga = document.createElement('script'); ga.type = 'text/javascript';
- ga.async = true;
- ga.src = 'https://ssl.google-analytics.com/ga.js';
- var s = document.getElementsByTagName('script')[0];
- s.parentNode.insertBefore(ga, s);
- })();
-}