Skip to content

Instantly share code, notes, and snippets.

@curiouslychase
Created October 19, 2014 23:56
Show Gist options
  • Select an option

  • Save curiouslychase/59fb653a46b1f3f19afd to your computer and use it in GitHub Desktop.

Select an option

Save curiouslychase/59fb653a46b1f3f19afd to your computer and use it in GitHub Desktop.
Quick snippet for getting google analytics urls from Behavior : Site Content : All Pages
Array.prototype.forEach.call(document.querySelectorAll("._GARL"),
function(i) {
console.log(i.innerHTML);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment