- Navigate to page from where you want to extract links
- Open your browser's console and paste the following ;
document.querySelectorAll('script[src]').forEach((i)=>document.write(i.src+'<br/>'))
- Copy all links and write it into a file (ex: jslinks.txt)
- Open your terminal and cd to directory where you've downloaded LinkFinder
- Run the following command
while IFS= read link; do python linkfinder.py -i "$link" -o cli; done < jslinks.txt | tee -a output.html
You have it- all unique paths only :)