Created
September 2, 2011 14:36
-
-
Save mahemoff/1188756 to your computer and use it in GitHub Desktop.
Total page views on Google Analytics (across all domains)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function calc() { | |
var sum = 0; | |
$('.profile_list_table > tbody > tr > td:nth-child(2) div div').each(function() { | |
console.log(this, this.innerHTML); | |
sum+=parseInt(this.innerHTML.replace(',','')) | |
}); | |
$('.account_table_header_text').append(' [Total: '+sum+']'); | |
} | |
setTimeout(calc,3000); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Made with ControlFreak extension for the page: https://www.google.com/analytics/settings/home