Answer the question
In order to leave comments, you need to log in
What extension can be used to extract all links from groups as a list in Google Chrome browser?
Answer the question
In order to leave comments, you need to log in
Open browser console and use:
links = document.querySelectorAll('a[href]');
for (var n = 0; n < links.length; n++) {
console.log(links[n].href);
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question