Looking for a way to download entire folder from chrome’s developer tools sources tab?

JessePk

Newbie
Joined
May 11, 2025
Messages
2
Reaction score
0
Is there a way to download a folder with the multiple files and nested folders from this interface? You can write click individual files and save as this is annoying.
Existing solutions like resource saver ext don’t download typescript files.
This question is in stack overflow but none of the solutions work for downloading .tsx files
 
Yeah, Chrome DevTools doesn’t let you bulk download folders directly. Best workaround is using tools like Puppeteer or a scraper script to fetch the files. You can also try inspecting the network tab to grab direct URLs and automate the download, but for .tsx files, it really depends on how they’re served. Might need to access the repo directly if it's public.
 
Back
Top