Skip to content

Instantly share code, notes, and snippets.

@palaniraja
Created September 21, 2011 09:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save palaniraja/1231650 to your computer and use it in GitHub Desktop.
Save palaniraja/1231650 to your computer and use it in GitHub Desktop.
Google Chrome history link scrapping
/*
Filter Google Chrome history by search and scrap the links :)
*/
var aTags = document.getElementsByTagName("a");
var n = aTags.length;
for(i=0; i<n; i++){
console.log(aTags[i].href);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment