V
V
Vadim Solovyov2021-06-06 11:40:08
Browser extensions
Vadim Solovyov, 2021-06-06 11:40:08

What extension can be used to extract all links from groups as a list in Google Chrome browser?

60bc8984c178b655248990.png

Answer the question

In order to leave comments, you need to log in

1 answer(s)
N
Nadim Zakirov, 2021-06-07
@zkrvndm

Open browser console and use:

links = document.querySelectorAll('a[href]');
for (var n = 0; n < links.length; n++) {
    console.log(links[n].href);
}

Will display all links from the current page.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question