I am developing the web app which uses some external scripts and stylesheets and using Google Chrome for debugging the app.
Certain web pages in the app contains too many external files(Such as script.js and style.css), And while debugging I only need to load the files I have changed from server instead of local browser cache and rest of the files from the cache.
I know about the hot reloading (Ctrl + F5) in chrome but it reloads ALL the scripts from the server/cdn which takes few extra seconds to load the page and makes debugging annoying.
So how can I force load/disable browser cache for only specific file in Chrome?