About Me

My photo
"Negativity is the enemy of creativity."- David Lynch Be positive! Spread the positivity!

Friday, August 21, 2020

Extract links/URL from any website with Chrome (without download)

                                                       

 Extract Links from Website


Only 3 following steps you can follow to extract all links/URL from any website. 

1. Use Google Chrome to open a website

2. Use Command

 

                  Alt+command+i

                               or 

click Right button and select Untersuchen / Examine, there will be a box at right side of this page. Go to Console and use this code to get links of this website.

 

 

 

 

3. Use the code to have the all links:

 

                                   urls = $$('a'); for (url in urls) console.log (urls[url].href);

 

Afterward you can get all possible links of this website andnd you can just copy the all links if you want.



No comments:

Post a Comment

What is SERP?

SERP is the abbreviation of "search engine result page",  Which means the result pages of Search Engines base o the search quer...