Use this multiple url opener tool to open all links at once or to convert them to clickable links : http://goo.gl/fPOCOK
Read this article on our site where we discuss other methods to extract links from websites – http://codegena.com/?p=1454
##### Code for URL Extraction
urls = $$(‘a’); for (url in urls) console.log ( urls[url].href );
##### Code for URL Extraction with Anchor Text (COLOURED)(works for chrome/firefox)
var urls=$$(‘a’);for(url in urls){console.log(“%c#”+url+” – %c”+urls[url].innerHTML +” — %c”+urls[url].href,”color:red;”,”color:green;”,”color:blue;”);}
##### Code for URL Extraction with Anchor Text (IE/Edge)
var urls=$$(‘a’);for(url in urls){console.log(“#”+url+” – “+urls[url].innerHTML +” — “+urls[url].href)}
Please like and share this video.
Subscribe to this channel for more videos like this!