Iman
Iman

Reputation: 483

How to force chrome to load a local Javascript file instead of a remote one?

I know how to do this with Fiddler (define rules and etc.) but my problem is that Fiddler crashes usually, is there any other stable method?

Upvotes: 0

Views: 544

Answers (1)

Marc
Marc

Reputation: 14277

I use Fiddler for this all the time quite successfully.

Chrome's F12 dev tools let you edit the JS source but it's not used when you refresh the page.

The issue you face is addressed here. Looks like you need a local webserver (like mongoose) and the Redirect plugin for Chrome.

Upvotes: 2

Related Questions