downloadLinks
Download all links present on a webpage in a txt file by writing below code in console of the browser
document.head.appendChild(Object.assign(document.createElement('script'), { src: 'https://cdn.jsdelivr.net/npm/downloadlinks@0.0.6/index.js' }));
OR
Download all links present on a webpage in a html file by writing below code in console of the browser
document.head.appendChild(Object.assign(document.createElement('script'), { src: 'https://cdn.jsdelivr.net/npm/downloadlinks@0.0.6/linksInHtml.js' }));
and then call this setupDownloadButton(); function
it will generate a download links button, click on the button to download all the links present on that webpage.
https://www.npmjs.com/package/downloadlinks
https://cdn.jsdelivr.net/npm/downloadlinks
https://cdn.jsdelivr.net/npm/downloadlinks@0.0.6/index.js
https://cdn.jsdelivr.net/npm/downloadlinks@0.0.6/linksInHtml.js
Thank You