In Google Chrome's Developer Tools' Sources tabs there is a left side panel which has three tabs with the first one being Sources. Is there a way to download a folder with multiple files and nested folders from this interface? You can right click individual files and 'Save as...' but this is cumbersome.
Currently not possible.
"Saving whole folders is not currently supported."
https://github.com/GoogleChrome/devtools-docs/issues/30#issuecomment-76999063
Here is the corresponding issue in the Chromium Bug Tracker: https://bugs.chromium.org/p/chromium/issues/detail?id=675894
It's not possible to do this directly with Chrome, so I made a batching extension to automatically fetch resources to the Downloads folder. You can have a try.
chrome://extensions/
and using Load unpacked
to load the unpacked
folder from the GitHub repo. –
Scoot Currently not possible.
"Saving whole folders is not currently supported."
https://github.com/GoogleChrome/devtools-docs/issues/30#issuecomment-76999063
Here is the corresponding issue in the Chromium Bug Tracker: https://bugs.chromium.org/p/chromium/issues/detail?id=675894
You can look at my CLI tool, webdumper: https://github.com/EllyMandliel/WebDumper
Installation and usage:
npm i -g @yokra/webdumper
webdumper -u https://website.com/ -o /path/to/output/folder
I found a very useful tool for this, mostly because I couldn't exactly use the answers I found online. I did a bit of digging and this Chrome extension stands out. It grabbed everything I needed, as long as it was available in the sources tab.
Save All Resources: https://chromewebstore.google.com/detail/save-all-resources/abpdnfjocnmdomablahdcfnoggeeiedb
After successfully installing the extension, restart your browser and navigate to Devtools >> ResourcesSaver to access the extension. Don't try to go through the extensions tab like me. Waste of time * winks *
© 2022 - 2024 — McMap. All rights reserved.