Answer the question
In order to leave comments, you need to log in
Software for building links from sites?
You need software that can carry out the following task:
You need to copy-paste all links from the site into a separate file.
wget, teleportPro - a little bit different, I only need links.
There are options?
Answer the question
In order to leave comments, you need to log in
The browser is... Umm... No? O_o Hmm, degradation, however. There is no longer such a feature in modern browsers. Opera 12 has a "links" button in the sidebar that shows all the links from the page. You can also simply execute the code in the console to get links:
var allLinks = document.links, res = '', link;
for (var i=0; i<allLinks.length; i++) {
link = allLinks[i].href;
if (link != 'javascript:void(0)') { res += link +"\n";}
}
console.log(res);
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question