Skip to content

Instantly share code, notes, and snippets.

@acoyfellow
Created February 21, 2017 23:25
Show Gist options
  • Save acoyfellow/d9d086f753b3167da71efc2d25b829ee to your computer and use it in GitHub Desktop.
Save acoyfellow/d9d086f753b3167da71efc2d25b829ee to your computer and use it in GitHub Desktop.
var urls= [
'https://www.linkedin.com/in/coeyman/',
'https://www.linkedin.com/in/coeyman/',
'https://www.linkedin.com/in/coeyman/',
'https://www.linkedin.com/in/coeyman/',
'https://www.linkedin.com/in/coeyman/',
'https://www.linkedin.com/in/coeyman/',
'https://www.linkedin.com/in/coeyman/',
];
var myWindow=null;
var crawl= e=>{
if(myWindow!==null){ myWindow.close() };
myWindow= window.open(urls[0]);
myWindow.addEventListener('load', next, false);
urls.splice(0,1);
};
crawl();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment