I would like to use FiddlerScript redirect to my local files while testing, without having to change the script tags in my HTML.
I'm fine with redirecting specific files using the AutoResponder, but how can I redirect any resource in a particular folder, including for HTTPS tunnel request?
I tried this and other permutations but I don't really understand what I'm doing...
if (oSession.HTTPMethodIs("CONNECT") && (oSession.PathAndQuery == "rawgit.com:443")) {
oSession.PathAndQuery = "localhost:63342";
oSession.url = oSession.url.Replace("repo/cool-Blue/d3-lib/master/inputs", "inputs");
oSession["ui-color"] = "red";
}